diff options
author | Damjan Marion <damarion@cisco.com> | 2019-09-24 18:10:49 +0200 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-10-03 08:42:13 +0000 |
commit | 29dc11bde26a38025f6f77d534ea7bd58cbce0d6 (patch) | |
tree | 2893c949b29a75510aff8ca1f972f675086a0c1b /src/plugins/ixge/ixge.c | |
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/ixge/ixge.c')
-rw-r--r-- | src/plugins/ixge/ixge.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/ixge/ixge.c b/src/plugins/ixge/ixge.c index c27042df8b2..6ab79c9872c 100644 --- a/src/plugins/ixge/ixge.c +++ b/src/plugins/ixge/ixge.c @@ -2219,6 +2219,7 @@ VLIB_REGISTER_NODE (ixge_input_node, static) = { .function = ixge_input, .type = VLIB_NODE_TYPE_INPUT, .name = "ixge-input", + .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED, /* Will be enabled if/when hardware is detected. */ .state = VLIB_NODE_STATE_DISABLED, |