diff options
author | Damjan Marion <damarion@cisco.com> | 2023-10-14 08:41:54 +0000 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2023-10-14 09:58:10 +0000 |
commit | d0ffa26a0e2910f9b7108b0b133e2da7de278178 (patch) | |
tree | 3c4220f303027c3053748ee2bd06ca07a8943c5c /src/plugins/marvell | |
parent | a16463610639a22d470c2c999ce2a8408a575834 (diff) |
feature: remove unused code
Type: improvement
Change-Id: If775b1d145e462346de562a3c893f302e8c7b814
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/marvell')
-rw-r--r-- | src/plugins/marvell/pp2/input.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/plugins/marvell/pp2/input.c b/src/plugins/marvell/pp2/input.c index 44f01355e39..106148db023 100644 --- a/src/plugins/marvell/pp2/input.c +++ b/src/plugins/marvell/pp2/input.c @@ -218,8 +218,8 @@ mrvl_pp2_device_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, { n_rx_bytes += mrvl_pp2_next_from_desc (node, d, b0, &next0); n_rx_bytes += mrvl_pp2_next_from_desc (node, d + 1, b1, &next1); - vnet_feature_start_device_input_x2 (ppif->sw_if_index, &next0, - &next1, b0, b1); + vnet_feature_start_device_input (ppif->sw_if_index, &next0, b0); + vnet_feature_start_device_input (ppif->sw_if_index, &next1, b1); } else { @@ -262,8 +262,7 @@ mrvl_pp2_device_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, if (PREDICT_TRUE (ppif->per_interface_next_index == ~0)) { n_rx_bytes += mrvl_pp2_next_from_desc (node, d, b0, &next0); - vnet_feature_start_device_input_x1 (ppif->sw_if_index, &next0, - b0); + vnet_feature_start_device_input (ppif->sw_if_index, &next0, b0); } else { |