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/ipsec/ipsec_input.c | |
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/ipsec/ipsec_input.c')
-rw-r--r-- | src/vnet/ipsec/ipsec_input.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/vnet/ipsec/ipsec_input.c b/src/vnet/ipsec/ipsec_input.c index d61755597ba..b7bb07bf051 100644 --- a/src/vnet/ipsec/ipsec_input.c +++ b/src/vnet/ipsec/ipsec_input.c @@ -209,10 +209,7 @@ ipsec_input_ip4_node_fn (vlib_main_t * vm, b0 = vlib_get_buffer (vm, bi0); b0->flags |= VNET_BUFFER_F_IS_IP4; b0->flags &= ~VNET_BUFFER_F_IS_IP6; - c0 = - vnet_feature_next_with_data (vnet_buffer (b0)->sw_if_index - [VLIB_RX], &next0, b0, - sizeof (c0[0])); + c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0])); spd0 = pool_elt_at_index (im->spds, c0->spd_index); @@ -393,10 +390,7 @@ VLIB_NODE_FUNCTION_MULTIARCH (ipsec_input_ip4_node, ipsec_input_ip4_node_fn) b0 = vlib_get_buffer (vm, bi0); b0->flags |= VNET_BUFFER_F_IS_IP6; b0->flags &= ~VNET_BUFFER_F_IS_IP4; - c0 = - vnet_feature_next_with_data (vnet_buffer (b0)->sw_if_index - [VLIB_RX], &next0, b0, - sizeof (c0[0])); + c0 = vnet_feature_next_with_data (&next0, b0, sizeof (c0[0])); spd0 = pool_elt_at_index (im->spds, c0->spd_index); |