diff options
author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2014-11-07 11:34:06 +0000 |
---|---|---|
committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2014-11-07 11:34:06 +0000 |
commit | 20dc9e174049c755584e964d88a81b97694b26fb (patch) | |
tree | 7b8038cffdd24401d484a6586277f0e3c78ec50c /sys | |
parent | e470cd2382b766b7feeed8a371169a0e6174faca (diff) | |
download | src-20dc9e174049c755584e964d88a81b97694b26fb.tar.gz src-20dc9e174049c755584e964d88a81b97694b26fb.zip |
After r274205 unbreak NOIP kernels. vsi is now also used outside
address family specific blocks so move it out from under the condition.
MFC after: 6 days
X-MFC with: r274205
Notes
Notes:
svn path=/head/; revision=274228
Diffstat (limited to 'sys')
-rwxr-xr-x | sys/dev/ixl/ixl_txrx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ixl/ixl_txrx.c b/sys/dev/ixl/ixl_txrx.c index ea43af85ae59..6322f2c9fd0e 100755 --- a/sys/dev/ixl/ixl_txrx.c +++ b/sys/dev/ixl/ixl_txrx.c @@ -1089,8 +1089,8 @@ int ixl_init_rx_ring(struct ixl_queue *que) { struct rx_ring *rxr = &que->rxr; -#if defined(INET6) || defined(INET) struct ixl_vsi *vsi = que->vsi; +#if defined(INET6) || defined(INET) struct ifnet *ifp = vsi->ifp; struct lro_ctrl *lro = &rxr->lro; #endif |