diff options
author | brooks <brooks@FreeBSD.org> | 2001-12-03 17:28:27 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2001-12-03 17:28:27 +0000 |
commit | 8b6f6e9487a28169a664f628114a3cf9a1de1819 (patch) | |
tree | 3ec2b2e029e880f02c5d9088938736698a408ac5 /sys/dev/ti/if_ti.c | |
parent | b5de44291122e0fc2bf68540749f66b3992d3ea2 (diff) | |
download | FreeBSD-src-8b6f6e9487a28169a664f628114a3cf9a1de1819.zip FreeBSD-src-8b6f6e9487a28169a664f628114a3cf9a1de1819.tar.gz |
Don't pass an interface pointer to VLAN_INPUT{,_TAG}. Get it from the
mbuf instead.
Suggested by: fenner
Diffstat (limited to 'sys/dev/ti/if_ti.c')
-rw-r--r-- | sys/dev/ti/if_ti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index eda9eec..98b9b64 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; } |