aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/snc
diff options
context:
space:
mode:
authorMax Laier <mlaier@FreeBSD.org>2005-02-21 17:30:10 +0000
committerMax Laier <mlaier@FreeBSD.org>2005-02-21 17:30:10 +0000
commit473156220d87f97a37beb1a9641a173629a8a51e (patch)
treeb411da5743b60d64a6053193e14d93c40fcda07f /sys/dev/snc
parent93d6cddf05aba88bedab5e7da360b6fac25cdd1c (diff)
downloadsrc-473156220d87f97a37beb1a9641a173629a8a51e.tar.gz
src-473156220d87f97a37beb1a9641a173629a8a51e.zip
Only send packet to bpf if we are committed to send it. Previously it was
possible that the same packet would show up multiple times. This poses some constraints on the TBD locking for snc(4) (see comment). Obtained from: DragonFlyBSD Submitted by: Joerg Sonnenberger Reviewed by: rwatson
Notes
Notes: svn path=/head/; revision=142180
Diffstat (limited to 'sys/dev/snc')
-rw-r--r--sys/dev/snc/dp83932.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/sys/dev/snc/dp83932.c b/sys/dev/snc/dp83932.c
index 1ffd4f15cd9c..90806990ac8a 100644
--- a/sys/dev/snc/dp83932.c
+++ b/sys/dev/snc/dp83932.c
@@ -346,12 +346,6 @@ outloop:
M_ASSERTPKTHDR(m);
/*
- * If bpf is listening on this interface, let it
- * see the packet before we commit it to the wire.
- */
- BPF_MTAP(ifp, m);
-
- /*
* If there is nothing in the o/p queue, and there is room in
* the Tx ring, then send the packet directly. Otherwise append
* it to the o/p queue.
@@ -361,6 +355,16 @@ outloop:
return;
}
+ /*
+ * If bpf is listening on this interface, let it see the packet
+ * before we commit it to the wire, but only if we are really
+ * committed to send it.
+ *
+ * XXX: Locking must protect m against premature m_freem() in
+ * sonictxint().
+ */
+ BPF_MTAP(ifp, m);
+
sc->mtd_prev = sc->mtd_free;
sc->mtd_free = mtd_next;