diff options
| author | Christian S.J. Peron <csjp@FreeBSD.org> | 2007-02-22 14:50:31 +0000 |
|---|---|---|
| committer | Christian S.J. Peron <csjp@FreeBSD.org> | 2007-02-22 14:50:31 +0000 |
| commit | d05d46160ad21631133b9b3623dd9d7bd29c5b44 (patch) | |
| tree | 243e998a84c5ffddca2d2aeb78b7a273232b34cf | |
| parent | 2cbcccc7747bd3d1c3d3229c9d8a4c790af938e0 (diff) | |
Notes
| -rw-r--r-- | sys/net/if_ethersubr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 4ac6bab67ab4..b9d165ba31aa 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -558,9 +558,10 @@ ether_input(struct ifnet *ifp, struct mbuf *m) #endif /* - * Give bpf a chance at the packet. + * Give bpf a chance at the packet. Process any 802.1Q tags + * that may have been attached to the mbuf. */ - BPF_MTAP(ifp, m); + ETHER_BPF_MTAP(ifp, m); /* If the CRC is still on the packet, trim it off. */ if (m->m_flags & M_HASFCS) { |
