svn commit: r254097 - stable/9/sys/dev/ixgbe
Jack F Vogel
jfv at FreeBSD.org
Thu Aug 8 17:22:00 UTC 2013
Author: jfv
Date: Thu Aug 8 17:21:59 2013
New Revision: 254097
URL: http://svnweb.freebsd.org/changeset/base/254097
Log:
Clearing the rxbuf flags got lost along the way... adding it back.
Modified:
stable/9/sys/dev/ixgbe/ixgbe.c
Modified: stable/9/sys/dev/ixgbe/ixgbe.c
==============================================================================
--- stable/9/sys/dev/ixgbe/ixgbe.c Thu Aug 8 17:20:09 2013 (r254096)
+++ stable/9/sys/dev/ixgbe/ixgbe.c Thu Aug 8 17:21:59 2013 (r254097)
@@ -3929,6 +3929,7 @@ ixgbe_free_receive_ring(struct rx_ring *
rxbuf->buf->m_flags |= M_PKTHDR;
m_freem(rxbuf->buf);
rxbuf->buf = NULL;
+ rxbuf->flags = 0;
}
}
}
More information about the svn-src-stable-9
mailing list