vlib: remove dead code
Type: refactor Change-Id: I818bacdb068e825b38acdceb2566972819c64e82 Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:

committed by
Florin Coras

parent
ad8b37dce9
commit
3f8b8d30ca
@ -498,7 +498,6 @@ show_node_runtime (vlib_main_t * vm,
|
|||||||
uword i, j;
|
uword i, j;
|
||||||
f64 dt;
|
f64 dt;
|
||||||
u64 n_input, n_output, n_drop, n_punt;
|
u64 n_input, n_output, n_drop, n_punt;
|
||||||
u64 n_internal_vectors, n_internal_calls;
|
|
||||||
u64 n_clocks, l, v, c, d;
|
u64 n_clocks, l, v, c, d;
|
||||||
int brief = 1;
|
int brief = 1;
|
||||||
int summary = 0;
|
int summary = 0;
|
||||||
@ -557,7 +556,6 @@ show_node_runtime (vlib_main_t * vm,
|
|||||||
vec_sort_with_function (nodes, node_cmp);
|
vec_sort_with_function (nodes, node_cmp);
|
||||||
|
|
||||||
n_input = n_output = n_drop = n_punt = n_clocks = 0;
|
n_input = n_output = n_drop = n_punt = n_clocks = 0;
|
||||||
n_internal_vectors = n_internal_calls = 0;
|
|
||||||
for (i = 0; i < vec_len (nodes); i++)
|
for (i = 0; i < vec_len (nodes); i++)
|
||||||
{
|
{
|
||||||
n = nodes[i];
|
n = nodes[i];
|
||||||
@ -577,11 +575,6 @@ show_node_runtime (vlib_main_t * vm,
|
|||||||
n_output += (n->flags & VLIB_NODE_FLAG_IS_OUTPUT) ? v : 0;
|
n_output += (n->flags & VLIB_NODE_FLAG_IS_OUTPUT) ? v : 0;
|
||||||
n_drop += (n->flags & VLIB_NODE_FLAG_IS_DROP) ? v : 0;
|
n_drop += (n->flags & VLIB_NODE_FLAG_IS_DROP) ? v : 0;
|
||||||
n_punt += (n->flags & VLIB_NODE_FLAG_IS_PUNT) ? v : 0;
|
n_punt += (n->flags & VLIB_NODE_FLAG_IS_PUNT) ? v : 0;
|
||||||
if (!(n->flags & VLIB_NODE_FLAG_IS_OUTPUT))
|
|
||||||
{
|
|
||||||
n_internal_vectors += v;
|
|
||||||
n_internal_calls += c;
|
|
||||||
}
|
|
||||||
if (n->flags & VLIB_NODE_FLAG_IS_HANDOFF)
|
if (n->flags & VLIB_NODE_FLAG_IS_HANDOFF)
|
||||||
n_input += v;
|
n_input += v;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user