diff options
author | Damjan Marion <damarion@cisco.com> | 2019-08-21 16:33:56 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-09-25 22:07:48 +0000 |
commit | 9e028d0477ca033ebbaea20914c2a6b1e86b967b (patch) | |
tree | 72c3ba5626b164219cd2481f2f37ddb13594f0c5 /src/plugins/avf/format.c | |
parent | d8aa2ae327b6fdee188a1604bc205d438e16f594 (diff) |
avf: print queue id in packet trace
Type: feature
Change-Id: If3deb26b9ee3b9e677c9dc50789bf81fe6c11dee
Signed-off-by: Damjan Marion <damarion@cisco.com>
(cherry picked from commit c33eddebe8e390ed3d5b817e7e6017ae8a543097)
Diffstat (limited to 'src/plugins/avf/format.c')
-rw-r--r-- | src/plugins/avf/format.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/avf/format.c b/src/plugins/avf/format.c index 4def8b5ea32..bc2b94ecc46 100644 --- a/src/plugins/avf/format.c +++ b/src/plugins/avf/format.c @@ -131,9 +131,9 @@ format_avf_input_trace (u8 * s, va_list * args) u32 indent = format_get_indent (s); int i = 0; - s = format (s, "avf: %v (%d) next-node %U", - hi->name, t->hw_if_index, format_vlib_next_node_name, vm, - node->index, t->next_index); + s = format (s, "avf: %v (%d) qid %u next-node %U", + hi->name, t->hw_if_index, t->qid, format_vlib_next_node_name, + vm, node->index, t->next_index); do { |