diff options
author | 2019-09-24 18:10:49 +0200 | |
---|---|---|
committer | 2019-10-03 08:42:13 +0000 | |
commit | 29dc11bde26a38025f6f77d534ea7bd58cbce0d6 (patch) | |
tree | 2893c949b29a75510aff8ca1f972f675086a0c1b /src/plugins/marvell | |
parent | c0552134ed3008481713ad55968f6fcd9c84afbc (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>
(cherry picked from commit 7ca5aaac10e95306f74ea4afd52110dd46aa0381)
Diffstat (limited to 'src/plugins/marvell')
-rw-r--r-- | src/plugins/marvell/pp2/input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/marvell/pp2/input.c b/src/plugins/marvell/pp2/input.c index 50f09633272..ec3d376714d 100644 --- a/src/plugins/marvell/pp2/input.c +++ b/src/plugins/marvell/pp2/input.c @@ -374,6 +374,7 @@ mrvl_pp2_input_fn (vlib_main_t * vm, vlib_node_runtime_t * node, /* *INDENT-OFF* */ VLIB_REGISTER_NODE (mrvl_pp2_input_node) = { .function = mrvl_pp2_input_fn, + .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED, .name = "mrvl-pp2-input", .sibling_of = "device-input", .format_trace = format_mrvl_pp2_input_trace, |