aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/dev/format.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vnet/dev/format.c')
-rw-r--r--src/vnet/dev/format.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vnet/dev/format.c b/src/vnet/dev/format.c
index ff301615e10..848cd13a6c3 100644
--- a/src/vnet/dev/format.c
+++ b/src/vnet/dev/format.c
@@ -163,6 +163,9 @@ format_vnet_dev_rx_queue_info (u8 *s, va_list *args)
format_white_space, indent, rxq->rx_thread_index,
rxq->enabled ? "en" : "dis", rxq->started ? "" : "not-",
rxq->interrupt_mode ? "interrupt" : "polling");
+ if (rxq->port->rx_queue_ops.format_info)
+ s = format (s, "\n%U%U", format_white_space, indent,
+ rxq->port->rx_queue_ops.format_info, a, rxq);
return s;
}
@@ -184,6 +187,9 @@ format_vnet_dev_tx_queue_info (u8 *s, va_list *args)
else
s = format (s, "Used by thread%s %U", n > 1 ? "s" : "", format_bitmap_list,
txq->assigned_threads);
+ if (txq->port->tx_queue_ops.format_info)
+ s = format (s, "\n%U%U", format_white_space, indent,
+ txq->port->tx_queue_ops.format_info, a, txq);
return s;
}