From a2cf30b916912451d1336716a15352de2892f3cf Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Tue, 13 Jan 2015 14:15:00 +0000 Subject: [PATCH] Move the vsi variable outside of the #ifdef block to unbreak NOIP kernels after r277084. MFC after: 6 days X-MFC with: r277084 --- sys/dev/ixl/ixl_txrx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ixl/ixl_txrx.c b/sys/dev/ixl/ixl_txrx.c index a684eaa33ba..f397b2d2fef 100755 --- a/sys/dev/ixl/ixl_txrx.c +++ b/sys/dev/ixl/ixl_txrx.c @@ -1108,8 +1108,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