From 8b6f6e9487a28169a664f628114a3cf9a1de1819 Mon Sep 17 00:00:00 2001 From: brooks Date: Mon, 3 Dec 2001 17:28:27 +0000 Subject: Don't pass an interface pointer to VLAN_INPUT{,_TAG}. Get it from the mbuf instead. Suggested by: fenner --- sys/dev/gx/if_gx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/gx/if_gx.c') diff --git a/sys/dev/gx/if_gx.c b/sys/dev/gx/if_gx.c index a8fd776..0e44a73 100644 --- a/sys/dev/gx/if_gx.c +++ b/sys/dev/gx/if_gx.c @@ -1318,7 +1318,7 @@ gx_rxeof(struct gx_softc *gx) * to vlan_input() instead of ether_input(). */ if (staterr & GX_RXSTAT_VLAN_PKT) { - VLAN_INPUT_TAG(ifp, eh, m, rx->rx_special); + VLAN_INPUT_TAG(eh, m, rx->rx_special); continue; } ether_input(ifp, eh, m); -- cgit v1.1