diff options
author | Damjan Marion <damarion@cisco.com> | 2019-08-21 16:33:56 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-08-21 15:45:54 +0000 |
commit | c33eddebe8e390ed3d5b817e7e6017ae8a543097 (patch) | |
tree | b0197319938e044a2a3afd779ea235c8c8e0e1f6 /src/plugins/avf/input.c | |
parent | 4bf8888019cbaad44bd3d775bb269042a53bbfc1 (diff) |
avf: print queue id in packet trace
Type: feature
Change-Id: If3deb26b9ee3b9e677c9dc50789bf81fe6c11dee
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/avf/input.c')
-rw-r--r-- | src/plugins/avf/input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/avf/input.c b/src/plugins/avf/input.c index fcc5518abeb..d6dda6c4b92 100644 --- a/src/plugins/avf/input.c +++ b/src/plugins/avf/input.c @@ -396,6 +396,7 @@ no_more_desc: vlib_trace_buffer (vm, node, next_index, b, /* follow_chain */ 0); tr = vlib_add_trace (vm, node, b, sizeof (*tr)); tr->next_index = next_index; + tr->qid = qid; tr->hw_if_index = ad->hw_if_index; tr->qw1s[0] = ptd->qw1s[i]; for (j = 1; j < AVF_RX_MAX_DESC_IN_CHAIN; j++) |