DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] usertools/devbind: fix kernel module reporting
@ 2018-01-24 10:26 Anatoly Burakov
  2018-02-06  1:17 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Anatoly Burakov @ 2018-01-24 10:26 UTC (permalink / raw)
  To: dev; +Cc: stable

lspci reports kernel modules in "Module" string, but devbind
expects it to be "Module_str". Fix it up similar to how we fix
up "Driver" to be "Driver_str".

Cc: stable@dpdk.org

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
---

Notes:
    devbind status before changes:
    
    Other Network devices
    =====================
    0000:08:00.0 '82599ES 10-Gigabit SFI/SFP+ Network Connection 10fb' unused=igb_uio
    
    devbind status after changes:
    
    Other Network devices
    =====================
    0000:08:00.0 '82599ES 10-Gigabit SFI/SFP+ Network Connection 10fb' unused=ixgbe,igb_uio
    
    Note that "ixgbe" driver is now shown as "unused" for unbound device.
    
    Also, no idea if this was ever working to begin with, so no fixline tag.

 usertools/dpdk-devbind.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py
index 894b519..6bdb291 100755
--- a/usertools/dpdk-devbind.py
+++ b/usertools/dpdk-devbind.py
@@ -249,6 +249,8 @@ def get_device_details(devices_type):
                 # of dictionary key names
                 if "Driver" in dev.keys():
                     dev["Driver_str"] = dev.pop("Driver")
+                if "Module" in dev.keys():
+                    dev["Module_str"] = dev.pop("Module")
                 # use dict to make copy of dev
                 devices[dev["Slot"]] = dict(dev)
             # Clear previous device's data
-- 
2.7.4

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

* Re: [dpdk-dev] [PATCH] usertools/devbind: fix kernel module reporting
  2018-01-24 10:26 [dpdk-dev] [PATCH] usertools/devbind: fix kernel module reporting Anatoly Burakov
@ 2018-02-06  1:17 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2018-02-06  1:17 UTC (permalink / raw)
  To: Anatoly Burakov; +Cc: dev, stable

24/01/2018 11:26, Anatoly Burakov:
> lspci reports kernel modules in "Module" string, but devbind
> expects it to be "Module_str". Fix it up similar to how we fix
> up "Driver" to be "Driver_str".
> 
> Cc: stable@dpdk.org
> 
> Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>

Fixes: c3ce205d5729 ("usertools: optimize lspci invocation")

Applied, thanks

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

end of thread, other threads:[~2018-02-06  1:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-24 10:26 [dpdk-dev] [PATCH] usertools/devbind: fix kernel module reporting Anatoly Burakov
2018-02-06  1:17 ` 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).