diff options
author | pmikus <pmikus@cisco.com> | 2021-07-21 12:17:21 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2021-07-21 12:47:34 +0000 |
commit | 63b10503aaa224ed86eac0d2ebd8a952a641df17 (patch) | |
tree | c4011546365ee8ac1337a1a32b8443501f74dbbb | |
parent | 5bb26b47b7a57152ac45d28c374b5d55cd445b09 (diff) |
Perf: Enable af_xdp for Intel x500 series
Signed-off-by: pmikus <pmikus@cisco.com>
Change-Id: I331fe9134c62594189ca231349ab4c5ba43b51e5
(cherry picked from commit 813375246758d1695be4e577ba9cd3f0791ea9e3)
-rw-r--r-- | resources/libraries/python/Constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index 992a3140be..f8c4c7fae9 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -331,8 +331,8 @@ class Constants: # Not each driver is supported by each NIC. NIC_NAME_TO_DRIVER = { - u"Intel-X520-DA2": [u"vfio-pci"], - u"Intel-X553": [u"vfio-pci"], + u"Intel-X520-DA2": [u"vfio-pci", u"af_xdp"], + u"Intel-X553": [u"vfio-pci", u"af_xdp"], u"Intel-X710": [u"vfio-pci", u"avf", u"af_xdp"], u"Intel-XL710": [u"vfio-pci", u"avf", u"af_xdp"], u"Intel-XXV710": [u"vfio-pci", u"avf", u"af_xdp"], |