aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ixgbe
diff options
context:
space:
mode:
authorJack F Vogel <jfv@FreeBSD.org>2013-07-11 03:44:06 +0000
committerJack F Vogel <jfv@FreeBSD.org>2013-07-11 03:44:06 +0000
commit3f80cc03fd52b527de2a18760582c680ea619c40 (patch)
treece9274226fbc4fc239e5e48efc43d8afb5a8c9a1 /sys/dev/ixgbe
parent4c045ea41abd4a5dda4c3df540f81d0c5dc52c54 (diff)
downloadsrc-3f80cc03fd52b527de2a18760582c680ea619c40.tar.gz
src-3f80cc03fd52b527de2a18760582c680ea619c40.zip
Fix my last commit, flags rather than flag... duh.
MFC after: 2 days
Notes
Notes: svn path=/head/; revision=253179
Diffstat (limited to 'sys/dev/ixgbe')
-rw-r--r--sys/dev/ixgbe/ixgbe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ixgbe/ixgbe.c b/sys/dev/ixgbe/ixgbe.c
index 3b645e860270..21159ebde59a 100644
--- a/sys/dev/ixgbe/ixgbe.c
+++ b/sys/dev/ixgbe/ixgbe.c
@@ -3943,7 +3943,7 @@ ixgbe_free_receive_ring(struct rx_ring *rxr)
rxbuf->buf->m_flags |= M_PKTHDR;
m_freem(rxbuf->buf);
rxbuf->buf = NULL;
- rxbuf->flag = 0;
+ rxbuf->flags = 0;
}
}
}