From 7d98a12f29d5b9696df98b8af2f128614a4f0360 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Thu, 19 Jul 2018 20:42:08 +0200 Subject: Remove unused argument to vlib_feature_next Change-Id: Ieb8b53977fc8484c19780941e232ee072b667de3 Signed-off-by: Damjan Marion --- src/vnet/qos/qos_mark.c | 2 +- src/vnet/qos/qos_record.c | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'src/vnet/qos') diff --git a/src/vnet/qos/qos_mark.c b/src/vnet/qos/qos_mark.c index 5dc87e8ef81..38c66cba40c 100644 --- a/src/vnet/qos/qos_mark.c +++ b/src/vnet/qos/qos_mark.c @@ -180,7 +180,7 @@ qos_mark_inline (vlib_main_t * vm, ethernet_vlan_header_set_priority_net_order (vlan0, qos0); } } - vnet_feature_next (sw_if_index0, &next0, b0); + vnet_feature_next (&next0, b0); if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) { diff --git a/src/vnet/qos/qos_record.c b/src/vnet/qos/qos_record.c index b05cfe670b5..fb235e09735 100644 --- a/src/vnet/qos/qos_record.c +++ b/src/vnet/qos/qos_record.c @@ -138,7 +138,7 @@ qos_record_inline (vlib_main_t * vm, ip4_header_t *ip4_0; ip6_header_t *ip6_0; vlib_buffer_t *b0; - u32 sw_if_index0, next0, bi0; + u32 next0, bi0; qos_bits_t qos0; u8 l2_len; @@ -184,7 +184,6 @@ qos_record_inline (vlib_main_t * vm, vnet_buffer2 (b0)->qos.bits = qos0; vnet_buffer2 (b0)->qos.source = QOS_SOURCE_IP; b0->flags |= VNET_BUFFER_F_QOS_DATA_VALID; - sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) && (b0->flags & VLIB_BUFFER_IS_TRACED))) @@ -203,7 +202,7 @@ qos_record_inline (vlib_main_t * vm, L2INPUT_FEAT_L2_IP_QOS_RECORD); } else - vnet_feature_next (sw_if_index0, &next0, b0); + vnet_feature_next (&next0, b0); /* verify speculative enqueue, maybe switch current next frame */ vlib_validate_buffer_enqueue_x1 (vm, node, next_index, -- cgit 1.2.3-korg