diff options
author | 2011-07-07 19:13:29 +0000 | |
---|---|---|
committer | 2011-07-07 19:13:29 +0000 | |
commit | 467fa03b3308ff83920259ef7e2fcb28ec828e38 (patch) | |
tree | f59aed098ccae3fe45b5f222e00a46d17cf97ee3 /sys | |
parent | i NEVER NEVER NEVER want to see ifqueue->ifq_len = anything. sorry, that is (diff) | |
download | wireguard-openbsd-467fa03b3308ff83920259ef7e2fcb28ec828e38.tar.xz wireguard-openbsd-467fa03b3308ff83920259ef7e2fcb28ec828e38.zip |
get rid of a debug printf that keeps giving me flase psotives because
it is the only place in the tree (minus if.{c,h} which are allowed to) that
reads ifq_maxlen without setting it, ryan ok
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pcmcia/if_ray.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/pcmcia/if_ray.c b/sys/dev/pcmcia/if_ray.c index 5489aeef29a..4371e38ea7e 100644 --- a/sys/dev/pcmcia/if_ray.c +++ b/sys/dev/pcmcia/if_ray.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ray.c,v 1.47 2011/07/03 15:47:17 matthew Exp $ */ +/* $OpenBSD: if_ray.c,v 1.48 2011/07/07 19:13:29 henning Exp $ */ /* $NetBSD: if_ray.c,v 1.21 2000/07/05 02:35:54 onoe Exp $ */ /* @@ -1104,10 +1104,6 @@ ray_intr_start(struct ray_softc *sc) ifp = &sc->sc_if; - RAY_DPRINTF(("%s: start free %d qlen %d qmax %d\n", - ifp->if_xname, sc->sc_txfree, ifp->if_snd.ifq_len, - ifp->if_snd.ifq_maxlen)); - ray_cmd_cancel(sc, SCP_IFSTART); if ((ifp->if_flags & IFF_RUNNING) == 0 || !sc->sc_havenet) { |