aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/em
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2005-09-20 14:52:57 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2005-09-20 14:52:57 +0000
commitc33f26f32b53162dec3ec5edbc4c390dfe586465 (patch)
treec6aa7a9d31c23d7869d232d53cbf1a195ae1f35d /sys/dev/em
parentaecb98c94d19db859b293374cb1fc98dc202bc64 (diff)
Notes
Diffstat (limited to 'sys/dev/em')
-rw-r--r--sys/dev/em/if_em.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/em/if_em.c b/sys/dev/em/if_em.c
index 9d1a7452666f..1fd5467a2149 100644
--- a/sys/dev/em/if_em.c
+++ b/sys/dev/em/if_em.c
@@ -644,8 +644,7 @@ em_start(struct ifnet *ifp)
struct adapter *adapter = ifp->if_softc;
EM_LOCK(adapter);
- if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
- !IFQ_DRV_IS_EMPTY(&ifp->if_snd))
+ if (ifp->if_drv_flags & IFF_DRV_RUNNING)
em_start_locked(ifp);
EM_UNLOCK(adapter);
return;