diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2008-11-09 15:08:27 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2008-11-09 15:08:27 +0000 |
commit | 19e72e3b9f3138440f80b79260f2adaee85eae40 (patch) | |
tree | 291a75bc288930e303d106f2c4b3e8fb865415a0 /sys/dev/ic | |
parent | be7cd0fdfd40b4f306a204fdbb31aa7cdd7efec5 (diff) |
Introduce bpf_mtap_ether(), which for the benefit of bpf listeners
creates the VLAN encapsulation from the tag stored in the mbuf
header. Idea from FreeBSD, input from claudio@ and canacar@.
Switch all hardware VLAN enabled drivers to the new function.
ok claudio@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/re.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/re.c b/sys/dev/ic/re.c index b6210caea42..32fcda48fb2 100644 --- a/sys/dev/ic/re.c +++ b/sys/dev/ic/re.c @@ -1,4 +1,4 @@ -/* $OpenBSD: re.c,v 1.98 2008/11/08 06:52:49 brad Exp $ */ +/* $OpenBSD: re.c,v 1.99 2008/11/09 15:08:25 naddy Exp $ */ /* $FreeBSD: if_re.c,v 1.31 2004/09/04 07:54:05 ru Exp $ */ /* * Copyright (c) 1997, 1998-2003 @@ -1468,7 +1468,7 @@ re_rxeof(struct rl_softc *sc) #if NBPFILTER > 0 if (ifp->if_bpf) - bpf_mtap(ifp->if_bpf, m, BPF_DIRECTION_IN); + bpf_mtap_ether(ifp->if_bpf, m, BPF_DIRECTION_IN); #endif ether_input_mbuf(ifp, m); } @@ -1890,7 +1890,7 @@ re_start(struct ifnet *ifp) * to him. */ if (ifp->if_bpf) - bpf_mtap(ifp->if_bpf, m, BPF_DIRECTION_OUT); + bpf_mtap_ether(ifp->if_bpf, m, BPF_DIRECTION_OUT); #endif } |