diff options
author | Damjan Marion <damarion@cisco.com> | 2018-07-19 20:42:08 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-07-19 22:31:11 +0000 |
commit | 7d98a12f29d5b9696df98b8af2f128614a4f0360 (patch) | |
tree | 8d78626e0e482e4a004bc6a8fe573a7f0c0defc4 /src/vnet/dhcp | |
parent | 3d0fadc01fa92664b8ebc5d8400b6344ee7e92df (diff) |
Remove unused argument to vlib_feature_next
Change-Id: Ieb8b53977fc8484c19780941e232ee072b667de3
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/dhcp')
-rw-r--r-- | src/vnet/dhcp/dhcp_client_detect.c | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/vnet/dhcp/dhcp_client_detect.c b/src/vnet/dhcp/dhcp_client_detect.c index f9ba4fee4d2..de2702df398 100644 --- a/src/vnet/dhcp/dhcp_client_detect.c +++ b/src/vnet/dhcp/dhcp_client_detect.c @@ -131,14 +131,10 @@ dhcp_client_detect_node_fn (vlib_main_t * vm, ip2 = vlib_buffer_get_current (b2); ip3 = vlib_buffer_get_current (b2); - vnet_feature_next (vnet_buffer (b0)->sw_if_index[VLIB_TX], - &next0, b0); - vnet_feature_next (vnet_buffer (b1)->sw_if_index[VLIB_TX], - &next1, b1); - vnet_feature_next (vnet_buffer (b2)->sw_if_index[VLIB_TX], - &next2, b2); - vnet_feature_next (vnet_buffer (b3)->sw_if_index[VLIB_TX], - &next3, b3); + vnet_feature_next (&next0, b0); + vnet_feature_next (&next1, b1); + vnet_feature_next (&next2, b2); + vnet_feature_next (&next3, b3); if (ip0->protocol == IP_PROTOCOL_UDP) { @@ -237,8 +233,7 @@ dhcp_client_detect_node_fn (vlib_main_t * vm, * assigned) we are looking for the preverbial needle in the haystack * so assume the packet is not the one we are looking for. */ - vnet_feature_next (vnet_buffer (b0)->sw_if_index[VLIB_TX], - &next0, b0); + vnet_feature_next (&next0, b0); /* * all we are looking for here is DHCP/BOOTP packet-to-client |