diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-13 11:36:01 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-13 11:36:01 +0000 |
commit | c5b4512b534b6cf6f0dd6de99dfb502336b20d00 (patch) | |
tree | 1c6ac0a5b1d1ca4e0e8797d07d7b0935c64e85df /sys/dev | |
parent | f48c06a9a744a2cb3330a99a4faa8fc175379d9c (diff) |
G/C IFQ_SET_READY().
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_myx.c | 3 | ||||
-rw-r--r-- | sys/dev/pv/if_xnf.c | 3 | ||||
-rw-r--r-- | sys/dev/sbus/be.c | 3 | ||||
-rw-r--r-- | sys/dev/sbus/qe.c | 3 |
4 files changed, 4 insertions, 8 deletions
diff --git a/sys/dev/pci/if_myx.c b/sys/dev/pci/if_myx.c index ce3f17c2777..6e98c1ab64f 100644 --- a/sys/dev/pci/if_myx.c +++ b/sys/dev/pci/if_myx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_myx.c,v 1.93 2016/04/13 10:34:32 mpi Exp $ */ +/* $OpenBSD: if_myx.c,v 1.94 2016/04/13 11:36:00 mpi Exp $ */ /* * Copyright (c) 2007 Reyk Floeter <reyk@openbsd.org> @@ -1035,7 +1035,6 @@ myx_up(struct myx_softc *sc) sc->sc_tx_nsegs = min(16, sc->sc_tx_ring_count / 4); /* magic */ sc->sc_tx_count = 0; IFQ_SET_MAXLEN(&ifp->if_snd, sc->sc_tx_ring_count - 1); - IFQ_SET_READY(&ifp->if_snd); /* Allocate Interrupt Queue */ diff --git a/sys/dev/pv/if_xnf.c b/sys/dev/pv/if_xnf.c index 64188624573..d17166b55de 100644 --- a/sys/dev/pv/if_xnf.c +++ b/sys/dev/pv/if_xnf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_xnf.c,v 1.17 2016/02/05 10:34:52 mikeb Exp $ */ +/* $OpenBSD: if_xnf.c,v 1.18 2016/04/13 11:36:00 mpi Exp $ */ /* * Copyright (c) 2015, 2016 Mike Belopuhov @@ -298,7 +298,6 @@ xnf_attach(struct device *parent, struct device *self, void *aux) ifp->if_capabilities |= IFCAP_CSUM_TCPv6 | IFCAP_CSUM_UDPv6; IFQ_SET_MAXLEN(&ifp->if_snd, XNF_TX_DESC - 1); - IFQ_SET_READY(&ifp->if_snd); ifmedia_init(&sc->sc_media, IFM_IMASK, xnf_media_change, xnf_media_status); diff --git a/sys/dev/sbus/be.c b/sys/dev/sbus/be.c index d123f48efad..06071c2103f 100644 --- a/sys/dev/sbus/be.c +++ b/sys/dev/sbus/be.c @@ -1,4 +1,4 @@ -/* $OpenBSD: be.c,v 1.40 2015/12/08 13:34:22 tedu Exp $ */ +/* $OpenBSD: be.c,v 1.41 2016/04/13 11:36:00 mpi Exp $ */ /* $NetBSD: be.c,v 1.26 2001/03/20 15:39:20 pk Exp $ */ /*- @@ -431,7 +431,6 @@ beattach(struct device *parent, struct device *self, void *aux) ifp->if_watchdog = bewatchdog; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; - IFQ_SET_READY(&ifp->if_snd); /* Attach the interface. */ if_attach(ifp); diff --git a/sys/dev/sbus/qe.c b/sys/dev/sbus/qe.c index c74c3066fbd..3d9aacfbcac 100644 --- a/sys/dev/sbus/qe.c +++ b/sys/dev/sbus/qe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qe.c,v 1.38 2015/12/08 13:34:22 tedu Exp $ */ +/* $OpenBSD: qe.c,v 1.39 2016/04/13 11:36:00 mpi Exp $ */ /* $NetBSD: qe.c,v 1.16 2001/03/30 17:30:18 christos Exp $ */ /*- @@ -295,7 +295,6 @@ qeattach(parent, self, aux) ifp->if_watchdog = qewatchdog; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; - IFQ_SET_READY(&ifp->if_snd); /* Attach the interface. */ if_attach(ifp); |