svn commit: r193711 - user/kmacy/releng_7_2_fcs/sys/dev/cxgb/sys

Kip Macy kmacy at FreeBSD.org
Mon Jun 8 12:10:43 UTC 2009


Author: kmacy
Date: Mon Jun  8 12:10:42 2009
New Revision: 193711
URL: http://svn.freebsd.org/changeset/base/193711

Log:
  don't null out nextptr forcing mbuf from shared to exclusive

Modified:
  user/kmacy/releng_7_2_fcs/sys/dev/cxgb/sys/mvec.h

Modified: user/kmacy/releng_7_2_fcs/sys/dev/cxgb/sys/mvec.h
==============================================================================
--- user/kmacy/releng_7_2_fcs/sys/dev/cxgb/sys/mvec.h	Mon Jun  8 12:02:15 2009	(r193710)
+++ user/kmacy/releng_7_2_fcs/sys/dev/cxgb/sys/mvec.h	Mon Jun  8 12:10:42 2009	(r193711)
@@ -72,7 +72,6 @@ m_freem_list(struct mbuf *m)
 		n = m->m_nextpkt;
 		if (n != NULL)
 			prefetch(n);
-		m->m_nextpkt = NULL;
 		m_freem(m);
 		m = n;
 	}	


More information about the svn-src-user mailing list