env/dpdk: enable dynamic memory allocation for DPDK >= 18.08

DPDK 18.08 includes the fixes we proposed
and we're now ready to make the switch.

Change-Id: Ie5abf25480d2449cb2c8e23de10c8090fc7b14fb
Signed-off-by: Dariusz Stojaczyk <dariuszx.stojaczyk@intel.com>
Reviewed-on: https://review.gerrithub.io/422240
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Dariusz Stojaczyk 2018-08-14 10:41:02 +02:00 committed by Jim Harris
parent e4a79fd1ae
commit ce643e0efe

View File

@ -286,7 +286,7 @@ spdk_build_eal_cmdline(const struct spdk_env_opts *opts)
}
}
#if RTE_VERSION >= RTE_VERSION_NUM(18, 05, 0, 0)
#if RTE_VERSION >= RTE_VERSION_NUM(18, 05, 0, 0) && RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
/* SPDK holds off with using the new memory management model just yet */
args = spdk_push_arg(args, &argcount, _sprintf_alloc("--legacy-mem"));
if (args == NULL) {