DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: add bus info when display port info
@ 2017-04-26  4:31 Yulong Pei
  2017-04-28  7:46 ` Wu, Jingjing
  2017-05-01 13:56 ` Thomas Monjalon
  0 siblings, 2 replies; 5+ messages in thread
From: Yulong Pei @ 2017-04-26  4:31 UTC (permalink / raw)
  To: dev; +Cc: jingjing.wu, thomas

Display pci device bus info when show port info.

Signed-off-by: Yulong Pei <yulong.pei@intel.com>
---
 app/test-pmd/config.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index ef07925..49bf816 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -469,6 +469,14 @@ port_infos_display(portid_t port_id)
 	print_ethaddr("MAC address: ", &mac_addr);
 	printf("\nDriver name: %s", dev_info.driver_name);
 	printf("\nConnect to socket: %u", port->socket_id);
+	if (dev_info.pci_dev)
+		printf("\nBus-info: %04x:%02x:%02x:%x",
+			dev_info.pci_dev->addr.domain,
+			dev_info.pci_dev->addr.bus,
+			dev_info.pci_dev->addr.devid,
+			dev_info.pci_dev->addr.function);
+	else
+		printf("\nBus-info: N/A");
 
 	if (port_numa[port_id] != NUMA_NO_CONFIG) {
 		mp = mbuf_pool_find(port_numa[port_id]);
-- 
2.1.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-05-02  9:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-26  4:31 [dpdk-dev] [PATCH] app/testpmd: add bus info when display port info Yulong Pei
2017-04-28  7:46 ` Wu, Jingjing
2017-05-01 13:56 ` Thomas Monjalon
2017-05-02  1:58   ` Pei, Yulong
2017-05-02  9:30     ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).