svn commit: r323633 - stable/11/sys/net

Matt Joras mjoras at FreeBSD.org
Sat Sep 16 02:10:38 UTC 2017


Author: mjoras
Date: Sat Sep 16 02:10:36 2017
New Revision: 323633
URL: https://svnweb.freebsd.org/changeset/base/323633

Log:
  MFC r323513:
  Allow vlan interfaces to rx through netmap(4).

Modified:
  stable/11/sys/net/if_vlan.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/net/if_vlan.c
==============================================================================
--- stable/11/sys/net/if_vlan.c	Fri Sep 15 22:56:39 2017	(r323632)
+++ stable/11/sys/net/if_vlan.c	Sat Sep 16 02:10:36 2017	(r323633)
@@ -1376,7 +1376,7 @@ vlan_input(struct ifnet *ifp, struct mbuf *m)
 	VLAN_RUNLOCK();
 
 	/* Pass it back through the parent's input routine. */
-	(*ifp->if_input)(ifv->ifv_ifp, m);
+	(*ifv->ifv_ifp->if_input)(ifv->ifv_ifp, m);
 }
 
 static void


More information about the svn-src-all mailing list