From 6ff8a07467dc5732d43402777d9f253c353563ed Mon Sep 17 00:00:00 2001 From: Tony Ackerman Date: Thu, 1 Jul 2004 22:37:47 +0000 Subject: [PATCH] PR kern/68474: Changed if_ipending to if_flags --- sys/dev/ixgb/if_ixgb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/ixgb/if_ixgb.c b/sys/dev/ixgb/if_ixgb.c index e93c385b799..ff525f46696 100644 --- a/sys/dev/ixgb/if_ixgb.c +++ b/sys/dev/ixgb/if_ixgb.c @@ -699,7 +699,7 @@ ixgb_init(void *arg) * Only disable interrupts if we are polling, make sure they are on * otherwise. */ - if (ifp->if_ipending & IFF_POLLING) + if (ifp->if_flags & IFF_POLLING) ixgb_disable_intr(adapter); else #endif /* DEVICE_POLLING */ @@ -759,7 +759,7 @@ ixgb_intr(void *arg) ifp = &adapter->interface_data.ac_if; #ifdef DEVICE_POLLING - if (ifp->if_ipending & IFF_POLLING) + if (ifp->if_flags & IFF_POLLING) return; if (ether_poll_register(ixgb_poll, ifp)) {