DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] usertools: add device index for dpdk-devbind script
@ 2019-06-03 12:57 Loc Nguyen
  2019-06-04 10:01 ` Bruce Richardson
  2019-06-04 15:50 ` Stephen Hemminger
  0 siblings, 2 replies; 4+ messages in thread
From: Loc Nguyen @ 2019-06-03 12:57 UTC (permalink / raw)
  To: thomas; +Cc: dev, Loc Nguyen

Add a device index in front of the PCI ID for easy counting

Network devices using DPDK-compatible driver
============================================
 0: 0000:07:00.0 ...
 1: 0000:07:00.1 ...

Signed-off-by: Loc Nguyen <locnguyen@niometrics.com>
---
 usertools/dpdk-devbind.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py
index 9e79f0d28..21da3deca 100755
--- a/usertools/dpdk-devbind.py
+++ b/usertools/dpdk-devbind.py
@@ -534,7 +534,9 @@ def display_devices(title, dev_list, extra_params=None):
                 strings.append("%s '%s'" % (dev["Slot"], dev["Device_str"]))
     # sort before printing, so that the entries appear in PCI order
     strings.sort()
-    print("\n".join(strings))  # print one per line
+    # add device index in front of each device
+    enum_dev_list = ['%2d' % index + ": " + device for index, device in enumerate(strings)]
+    print("\n".join(enum_dev_list))  # print one per line
 
 def show_device_status(devices_type, device_name):
     global dpdk_drivers
-- 
2.18.0


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

end of thread, other threads:[~2019-06-04 15:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-03 12:57 [dpdk-dev] [PATCH] usertools: add device index for dpdk-devbind script Loc Nguyen
2019-06-04 10:01 ` Bruce Richardson
2019-06-04 13:35   ` Loc Nguyen
2019-06-04 15:50 ` Stephen Hemminger

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).