aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/ip/ip_path_mtu_node.c
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2021-11-05 19:53:19 +0100
committerFlorin Coras <florin.coras@gmail.com>2021-11-05 22:05:17 +0000
commitd4e90407d2f7259d9b5234ba90b6f27793c911b3 (patch)
treed641608a678ffd072e5448f0b32af01504dbb9b9 /src/vnet/ip/ip_path_mtu_node.c
parent4902dda87c86cae651c7531d46f4583b51aa69bd (diff)
ip: remove dead code
Type: refactor Change-Id: Ia8e8834b635025d07e1028b1d5779b21c4e05e58 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/ip/ip_path_mtu_node.c')
-rw-r--r--src/vnet/ip/ip_path_mtu_node.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/vnet/ip/ip_path_mtu_node.c b/src/vnet/ip/ip_path_mtu_node.c
index 33be4bbcae9..b3681b923c8 100644
--- a/src/vnet/ip/ip_path_mtu_node.c
+++ b/src/vnet/ip/ip_path_mtu_node.c
@@ -49,7 +49,6 @@ ip_pmtu_dpo_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
vlib_frame_t *frame, ip_address_family_t af)
{
u32 n_left_from, *from, next_index, *to_next, n_left_to_next;
- u32 frag_sent = 0, small_packets = 0;
from = vlib_frame_vector_args (frame);
n_left_from = frame->n_vectors;
@@ -114,8 +113,6 @@ ip_pmtu_dpo_inline (vlib_main_t *vm, vlib_node_runtime_t *node,
if (error0 == IP_FRAG_ERROR_NONE)
{
/* Free original buffer chain */
- frag_sent += vec_len (buffer);
- small_packets += (vec_len (buffer) == 1);
vlib_buffer_free_one (vm, pi0); /* Free original packet */
}
else