net/virtio: dump packed virtqueue data
Add support to dump packed virtqueue data to the VIRTQUEUE_DUMP() macro. Signed-off-by: Jens Freimann <jfreimann@redhat.com> Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
This commit is contained in:
parent
f803734b0f
commit
56785a2d6f
@ -429,6 +429,15 @@ virtqueue_notify(struct virtqueue *vq)
|
||||
uint16_t used_idx, nused; \
|
||||
used_idx = (vq)->vq_ring.used->idx; \
|
||||
nused = (uint16_t)(used_idx - (vq)->vq_used_cons_idx); \
|
||||
if (vtpci_packed_queue((vq)->hw)) { \
|
||||
PMD_INIT_LOG(DEBUG, \
|
||||
"VQ: - size=%d; free=%d; used_cons_idx=%d; avail_idx=%d;" \
|
||||
"VQ: - avail_wrap_counter=%d; used_wrap_counter=%d", \
|
||||
(vq)->vq_nentries, (vq)->vq_free_cnt, (vq)->vq_used_cons_idx, \
|
||||
(vq)->vq_avail_idx, (vq)->avail_wrap_counter, \
|
||||
(vq)->used_wrap_counter); \
|
||||
break; \
|
||||
} \
|
||||
PMD_INIT_LOG(DEBUG, \
|
||||
"VQ: - size=%d; free=%d; used=%d; desc_head_idx=%d;" \
|
||||
" avail.idx=%d; used_cons_idx=%d; used.idx=%d;" \
|
||||
|
Loading…
Reference in New Issue
Block a user