env_dpdk/pci: fix check on 20.11 EAL API change
RTE_DEV_ALLOWED is an enum and has no associated define, hence checking for its presence will always be false. We could test for RTE_DEV_WHITELISTED define, but this macro added for deprecation warning will be dropped in the future. Switch to a check on DPDK version. Fixes:10ed0eb755
("env_dpdk/pci: adapt to 20.11 EAL changes") Signed-off-by: David Marchand <david.marchand@redhat.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/5165 (master) (cherry picked from commit2e9cd9d7b0
) Change-Id: I75270977b580065b36c753266cbaa5fb73f99eb1 Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/5175 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
parent
a73286870e
commit
a26adb0d6c
@ -41,7 +41,7 @@
|
||||
#define SYSFS_PCI_DRIVERS "/sys/bus/pci/drivers"
|
||||
|
||||
/* Compatibility for versions < 20.11 */
|
||||
#ifndef RTE_DEV_ALLOWED
|
||||
#if RTE_VERSION < RTE_VERSION_NUM(20, 11, 0, 0)
|
||||
#define RTE_DEV_ALLOWED RTE_DEV_WHITELISTED
|
||||
#define RTE_DEV_BLOCKED RTE_DEV_BLACKLISTED
|
||||
#define RTE_BUS_SCAN_ALLOWLIST RTE_BUS_SCAN_WHITELIST
|
||||
|
Loading…
Reference in New Issue
Block a user