usertools: fix device binding with python 3
authorOmri Mor <omrimor2@illinois.edu>
Fri, 6 Oct 2017 21:38:38 +0000 (16:38 -0500)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 7 Nov 2017 22:34:38 +0000 (23:34 +0100)
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@illinois.edu>
usertools/dpdk-devbind.py

index da6e40c..a539995 100755 (executable)
@@ -204,8 +204,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: