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/plugins/gtpu | |
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/plugins/gtpu')
-rw-r--r-- | src/plugins/gtpu/gtpu_decap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/gtpu/gtpu_decap.c b/src/plugins/gtpu/gtpu_decap.c index de235889073..1aac8b55745 100644 --- a/src/plugins/gtpu/gtpu_decap.c +++ b/src/plugins/gtpu/gtpu_decap.c @@ -933,8 +933,8 @@ ip_gtpu_bypass_inline (vlib_main_t * vm, } /* Setup packet for next IP feature */ - vnet_feature_next(vnet_buffer(b0)->sw_if_index[VLIB_RX], &next0, b0); - vnet_feature_next(vnet_buffer(b1)->sw_if_index[VLIB_RX], &next1, b1); + vnet_feature_next(&next0, b0); + vnet_feature_next(&next1, b1); if (is_ip4) { @@ -1141,7 +1141,7 @@ ip_gtpu_bypass_inline (vlib_main_t * vm, ip60 = vlib_buffer_get_current (b0); /* Setup packet for next IP feature */ - vnet_feature_next(vnet_buffer(b0)->sw_if_index[VLIB_RX], &next0, b0); + vnet_feature_next(&next0, b0); if (is_ip4) /* Treat IP4 frag packets as "experimental" protocol for now |