Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6-1]: src/sys/dev/ic Pull up following revision(s) (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/b51d872f05dd
branches:  netbsd-6-1
changeset: 776239:b51d872f05dd
user:      snj <snj%NetBSD.org@localhost>
date:      Sat Aug 19 03:15:55 2017 +0000

description:
Pull up following revision(s) (requested by mrg in ticket #1478):
        sys/dev/ic/bwi.c: revision 1.32
Check for M_EXT in m->m_flags, whether m is NULL, after MCLGET.
>From Ilja Van Sprundel.

diffstat:

 sys/dev/ic/bwi.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r a383d0bb93d7 -r b51d872f05dd sys/dev/ic/bwi.c
--- a/sys/dev/ic/bwi.c  Fri Aug 18 15:10:01 2017 +0000
+++ b/sys/dev/ic/bwi.c  Sat Aug 19 03:15:55 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bwi.c,v 1.18 2011/10/10 11:15:24 njoly Exp $   */
+/*     $NetBSD: bwi.c,v 1.18.14.1 2017/08/19 03:15:55 snj Exp $        */
 /*     $OpenBSD: bwi.c,v 1.74 2008/02/25 21:13:30 mglocker Exp $       */
 
 /*
@@ -48,7 +48,7 @@
 
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bwi.c,v 1.18 2011/10/10 11:15:24 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bwi.c,v 1.18.14.1 2017/08/19 03:15:55 snj Exp $");
 
 #include <sys/param.h>
 #include <sys/callout.h>
@@ -8315,7 +8315,7 @@
        if (m == NULL)
                return (ENOBUFS);
        MCLGET(m, init ? M_WAITOK : M_DONTWAIT);
-       if (m == NULL) {
+       if ((m->m_flags & M_EXT) == 0) {
                error = ENOBUFS;
 
                /*



Home | Main Index | Thread Index | Old Index