aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/devices/pipe
diff options
context:
space:
mode:
authorDamjan Marion <damarion@cisco.com>2021-11-05 19:59:09 +0100
committerFlorin Coras <florin.coras@gmail.com>2021-11-05 22:05:46 +0000
commitad8b37dce93b3fd38f9e4a0ade744703e43ab87d (patch)
treec848ad30d8a0587bb78fe226adceaf474bab1139 /src/vnet/devices/pipe
parent229b28e8d22009faeffb57218bb07bf75ec3c9c7 (diff)
devices: remove dead code in pipe
Type: refactor Change-Id: If4a0484afebe53d53d79ab5cb72299e6298cfee7 Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/devices/pipe')
-rw-r--r--src/vnet/devices/pipe/pipe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vnet/devices/pipe/pipe.c b/src/vnet/devices/pipe/pipe.c
index eb92b3c788a..56e54defab7 100644
--- a/src/vnet/devices/pipe/pipe.c
+++ b/src/vnet/devices/pipe/pipe.c
@@ -131,7 +131,7 @@ pipe_tx (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
{
u32 n_left_from, n_left_to_next, n_copy, *from, *to_next;
u32 next_index = VNET_PIPE_TX_NEXT_ETHERNET_INPUT;
- u32 i, sw_if_index = 0, n_pkts = 0, n_bytes = 0;
+ u32 i, sw_if_index = 0, n_pkts = 0;
vlib_buffer_t *b;
pipe_t *pipe;
@@ -160,7 +160,6 @@ pipe_tx (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame)
i++;
n_pkts++;
- n_bytes += vlib_buffer_length_in_chain (vm, b);
}
from += n_copy;