aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2001-12-03 17:28:27 +0000
committerBrooks Davis <brooks@FreeBSD.org>2001-12-03 17:28:27 +0000
commit437e48e9310f288d03ec87721977a0467d809f96 (patch)
tree3ec2b2e029e880f02c5d9088938736698a408ac5 /sys/dev
parent011376308f954457a26cc632ad96816a76d25b00 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/bge/if_bge.c2
-rw-r--r--sys/dev/gx/if_gx.c2
-rw-r--r--sys/dev/nge/if_nge.c2
-rw-r--r--sys/dev/ti/if_ti.c2
-rw-r--r--sys/dev/txp/if_txp.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c
index 0d05f64710b8..d9c87f2a4365 100644
--- a/sys/dev/bge/if_bge.c
+++ b/sys/dev/bge/if_bge.c
@@ -1906,7 +1906,7 @@ bge_rxeof(sc)
* to vlan_input() instead of ether_input().
*/
if (have_tag) {
- VLAN_INPUT_TAG(ifp, eh, m, vlan_tag);
+ VLAN_INPUT_TAG(eh, m, vlan_tag);
have_tag = vlan_tag = 0;
continue;
}
diff --git a/sys/dev/gx/if_gx.c b/sys/dev/gx/if_gx.c
index a8fd7765b7a2..0e44a73db4da 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);
diff --git a/sys/dev/nge/if_nge.c b/sys/dev/nge/if_nge.c
index 658df7fc8944..429bc328263d 100644
--- a/sys/dev/nge/if_nge.c
+++ b/sys/dev/nge/if_nge.c
@@ -1337,7 +1337,7 @@ static void nge_rxeof(sc)
* to vlan_input() instead of ether_input().
*/
if (extsts & NGE_RXEXTSTS_VLANPKT) {
- VLAN_INPUT_TAG(ifp, eh, m, extsts & NGE_RXEXTSTS_VTCI);
+ VLAN_INPUT_TAG(eh, m, extsts & NGE_RXEXTSTS_VTCI);
continue;
}
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c
index eda9eece4243..98b9b6462e93 100644
--- a/sys/dev/ti/if_ti.c
+++ b/sys/dev/ti/if_ti.c
@@ -1808,7 +1808,7 @@ static void ti_rxeof(sc)
* to vlan_input() instead of ether_input().
*/
if (have_tag) {
- VLAN_INPUT_TAG(ifp, eh, m, vlan_tag);
+ VLAN_INPUT_TAG(eh, m, vlan_tag);
have_tag = vlan_tag = 0;
continue;
}
diff --git a/sys/dev/txp/if_txp.c b/sys/dev/txp/if_txp.c
index 68f2421327b5..7491cba32969 100644
--- a/sys/dev/txp/if_txp.c
+++ b/sys/dev/txp/if_txp.c
@@ -805,7 +805,7 @@ txp_rx_reclaim(sc, r)
m_adj(m, sizeof(struct ether_header));
if (rxd->rx_stat & RX_STAT_VLAN) {
- VLAN_INPUT_TAG(ifp, eh, m, htons(rxd->rx_vlan >> 16));
+ VLAN_INPUT_TAG(eh, m, htons(rxd->rx_vlan >> 16));
goto next;
}