Date: Wed, 27 Mar 2002 12:56:49 -0800 (PST) From: Brian Feldman <green@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 8516 for review Message-ID: <200203272056.g2RKunk33000@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=8516 Change 8516 by green@green_laptop_2 on 2002/03/27 12:55:52 Fix an inconsistency Adam Migus found between #ifdef MAC and #else code which resulted in panics due to M_PKTHDR not being set on mbufs it should have been. Affected files ... ... //depot/projects/trustedbsd/mac/sys/kern/subr_mbuf.c#9 edit Differences ... ==== //depot/projects/trustedbsd/mac/sys/kern/subr_mbuf.c#9 (text+ko) ==== @@ -926,6 +926,8 @@ mb_free(mb_list, m, type); return (NULL); #else + if (m != NULL) + m->m_flags = M_PKTHDR; return (m); #endif } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200203272056.g2RKunk33000>