From 300a95bf76e162113e6631c5538072e8a1aec2bb Mon Sep 17 00:00:00 2001 From: bz Date: Sun, 3 Jul 2011 16:08:38 +0000 Subject: 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 --- sys/net/if_spppsubr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/net/if_spppsubr.c') diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c index 3f0faaf..363d9aa 100644 --- a/sys/net/if_spppsubr.c +++ b/sys/net/if_spppsubr.c @@ -737,6 +737,7 @@ sppp_input(struct ifnet *ifp, struct mbuf *m) goto drop; SPPP_UNLOCK(sp); + M_SETFIB(m, ifp->if_fib); /* Check queue. */ if (netisr_queue(isr, m)) { /* (0) on success. */ if (debug) -- cgit v1.1