aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/isa
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1995-08-19 23:24:14 +0000
committerDavid Greenman <dg@FreeBSD.org>1995-08-19 23:24:14 +0000
commit780c671d2ff98119439b52e35906c4c752b3205c (patch)
treeb246be2d98a3856172cf15b78321c23a531d62b0 /sys/i386/isa
parent12ebeaad7723722fcbc0365b4f07b07b93f1e16c (diff)
downloadsrc-780c671d2ff98119439b52e35906c4c752b3205c.tar.gz
src-780c671d2ff98119439b52e35906c4c752b3205c.zip
Notes
Diffstat (limited to 'sys/i386/isa')
-rw-r--r--sys/i386/isa/if_le.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/i386/isa/if_le.c b/sys/i386/isa/if_le.c
index 0f93c75f75f2..743923cba368 100644
--- a/sys/i386/isa/if_le.c
+++ b/sys/i386/isa/if_le.c
@@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_le.c,v 1.16 1995/05/09 12:25:55 rgrimes Exp $
+ * $Id: if_le.c,v 1.17 1995/05/30 08:02:22 rgrimes Exp $
*/
/*
@@ -1193,6 +1193,12 @@ lemac_start(
m_copydata(m, 0, m->m_pkthdr.len, sc->le_membase + txoff);
LE_OUTB(sc, LEMAC_REG_TQ, tx_pg); /* tell chip to transmit this packet */
+
+#if NBPFILTER > 0
+ if (sc->le_bpf)
+ bpf_mtap(sc->le_bpf, m);
+#endif
+
m_freem(m); /* free the mbuf */
}
LEMAC_INTR_ENABLE(sc);