Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Sep 2017 02:10:36 +0000 (UTC)
From:      Matt Joras <mjoras@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r323633 - stable/11/sys/net
Message-ID:  <201709160210.v8G2Aagv094061@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709160210.v8G2Aagv094061>