svn commit: r253179 - head/sys/dev/ixgbe
Jack F Vogel
jfv at FreeBSD.org
Thu Jul 11 03:44:07 UTC 2013
Author: jfv
Date: Thu Jul 11 03:44:06 2013
New Revision: 253179
URL: http://svnweb.freebsd.org/changeset/base/253179
Log:
Fix my last commit, flags rather than flag... duh.
MFC after: 2 days
Modified:
head/sys/dev/ixgbe/ixgbe.c
Modified: head/sys/dev/ixgbe/ixgbe.c
==============================================================================
--- head/sys/dev/ixgbe/ixgbe.c Thu Jul 11 02:10:23 2013 (r253178)
+++ head/sys/dev/ixgbe/ixgbe.c Thu Jul 11 03:44:06 2013 (r253179)
@@ -3943,7 +3943,7 @@ ixgbe_free_receive_ring(struct rx_ring *
rxbuf->buf->m_flags |= M_PKTHDR;
m_freem(rxbuf->buf);
rxbuf->buf = NULL;
- rxbuf->flag = 0;
+ rxbuf->flags = 0;
}
}
}
More information about the svn-src-all
mailing list