[dpdk-stable] patch 'usertools: fix device binding with python 3'	has been queued to LTS release 16.11.4
    luca.boccassi at gmail.com 
    luca.boccassi at gmail.com
       
    Fri Nov 10 17:09:57 CET 2017
    
    
  
Hi,
FYI, your patch has been queued to LTS release 16.11.4
Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 11/12/17. So please
shout if anyone has objections.
Thanks.
Kind regards,
Luca Boccassi
---
>From 02d0210b743f8791ff1a0ffcfab838d9d0685d90 Mon Sep 17 00:00:00 2001
From: Omri Mor <omrimor2 at illinois.edu>
Date: Fri, 6 Oct 2017 16:38:38 -0500
Subject: [PATCH] usertools: fix device binding with python 3
[ upstream commit 8fab26f8ee80ed7dff84cd90d343e5265a6128d1 ]
When using Python 3, dpdk-devbind.py fails to detect modules other than
igb_uio.
Fixes: bb9f408550d1 ("tools: support binding to built-in kernel modules")
Signed-off-by: Omri Mor <omrimor2 at illinois.edu>
---
 tools/dpdk-devbind.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/tools/dpdk-devbind.py b/tools/dpdk-devbind.py
index fef59c41f..e4c6d521d 100755
--- a/tools/dpdk-devbind.py
+++ b/tools/dpdk-devbind.py
@@ -182,8 +182,7 @@ def check_modules():
 
         # special case for vfio_pci (module is named vfio-pci,
         # but its .ko is named vfio_pci)
-        sysfs_mods = map(lambda a:
-                         a if a != 'vfio_pci' else 'vfio-pci', sysfs_mods)
+        sysfs_mods = [a if a != 'vfio_pci' else 'vfio-pci' for a in sysfs_mods]
 
         for mod in mods:
             if mod["Name"] in sysfs_mods:
-- 
2.11.0
    
    
More information about the stable
mailing list