diff options
author | Damjan Marion <damarion@cisco.com> | 2018-11-26 16:05:07 +0100 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2018-11-26 16:05:07 +0100 |
commit | ddf6e08d2e3fc1614430e26dea632fbc79df2906 (patch) | |
tree | 95177379caba6b2a5f6f5a596f2cab5699b12bc2 /src/vnet/ethernet | |
parent | 162989e05100ef319dd7b7a7bc1f450368f7b760 (diff) |
Remove unused argument from eth_identify_subint(...)
Change-Id: I0e89fbc51f30325655c4e9d0104aceb3ead3b16f
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/ethernet')
-rw-r--r-- | src/vnet/ethernet/ethernet.h | 1 | ||||
-rwxr-xr-x | src/vnet/ethernet/node.c | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/vnet/ethernet/ethernet.h b/src/vnet/ethernet/ethernet.h index 7435599c347..ceaadd26c1c 100644 --- a/src/vnet/ethernet/ethernet.h +++ b/src/vnet/ethernet/ethernet.h @@ -517,7 +517,6 @@ eth_vlan_table_lookups (ethernet_main_t * em, // Returns 1 if a matching subinterface was found, otherwise returns 0. always_inline u32 eth_identify_subint (vnet_hw_interface_t * hi, - vlib_buffer_t * b0, u32 match_flags, main_intf_t * main_intf, vlan_intf_t * vlan_intf, diff --git a/src/vnet/ethernet/node.c b/src/vnet/ethernet/node.c index 6e1e1e3f3c8..7cf78c65435 100755 --- a/src/vnet/ethernet/node.c +++ b/src/vnet/ethernet/node.c @@ -208,9 +208,8 @@ identify_subint (vnet_hw_interface_t * hi, { u32 matched; - matched = eth_identify_subint (hi, b0, match_flags, - main_intf, vlan_intf, qinq_intf, - new_sw_if_index, error0, is_l2); + matched = eth_identify_subint (hi, match_flags, main_intf, vlan_intf, + qinq_intf, new_sw_if_index, error0, is_l2); if (matched) { |