diff options
author | Damjan Marion <damarion@cisco.com> | 2019-09-24 18:10:49 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-09-24 18:04:06 +0000 |
commit | 7ca5aaac10e95306f74ea4afd52110dd46aa0381 (patch) | |
tree | eaeb3d27949c39eeac36c0ffb382535793a2dc05 /src/vnet/ethernet/p2p_ethernet_input.c | |
parent | be7ef3b5c2ebe973405a364454884fc21d35de95 (diff) |
vlib: add flag to explicitelly mark nodes which can init per-node packet trace
Type: feature
Change-Id: I913f08383ee1c24d610c3d2aac07cef402570e2c
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/ethernet/p2p_ethernet_input.c')
-rw-r--r-- | src/vnet/ethernet/p2p_ethernet_input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/ethernet/p2p_ethernet_input.c b/src/vnet/ethernet/p2p_ethernet_input.c index 36845fcda1b..7e5f7cadc0d 100644 --- a/src/vnet/ethernet/p2p_ethernet_input.c +++ b/src/vnet/ethernet/p2p_ethernet_input.c @@ -237,6 +237,7 @@ VLIB_REGISTER_NODE (p2p_ethernet_input_node) = { .vector_size = sizeof (u32), .format_trace = format_p2p_ethernet_trace, .type = VLIB_NODE_TYPE_INTERNAL, + .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED, .n_errors = ARRAY_LEN(p2p_ethernet_error_strings), .error_strings = p2p_ethernet_error_strings, |