diff options
author | bz <bz@FreeBSD.org> | 2011-07-03 16:08:38 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2011-07-03 16:08:38 +0000 |
commit | 300a95bf76e162113e6631c5538072e8a1aec2bb (patch) | |
tree | 5b26fb6f45285f3368af628d56f5ce11128abe81 /sys/dev/lmc/if_lmc.c | |
parent | cf260e73d64c6f9645f9836a1a5e0f93061ae882 (diff) | |
download | FreeBSD-src-300a95bf76e162113e6631c5538072e8a1aec2bb.zip FreeBSD-src-300a95bf76e162113e6631c5538072e8a1aec2bb.tar.gz |
Tag mbufs of all incoming frames or packets with the interface's FIB
setting (either default or if supported as set by SIOCSIFFIB, e.g.
from ifconfig).
Submitted by: Alexander V. Chernikov (melifaro ipfw.ru)
Reviewed by: julian
MFC after: 2 weeks
Diffstat (limited to 'sys/dev/lmc/if_lmc.c')
-rw-r--r-- | sys/dev/lmc/if_lmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/lmc/if_lmc.c b/sys/dev/lmc/if_lmc.c index 604e8df..d5fb9ba 100644 --- a/sys/dev/lmc/if_lmc.c +++ b/sys/dev/lmc/if_lmc.c @@ -2527,6 +2527,7 @@ lmc_raw_input(struct ifnet *ifp, struct mbuf *mbuf) { softc_t *sc = IFP2SC(ifp); + M_SETFIB(mbuf, ifp->if_fib); # if INET if (mbuf->m_data[0]>>4 == 4) netisr_dispatch(NETISR_IP, mbuf); |