summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/defaults.c
diff options
context:
space:
mode:
authorLuc Provoost <luc.provoost@intel.com>2020-08-07 10:55:32 +0200
committerLuc Provoost <luc.provoost@intel.com>2020-08-07 10:55:32 +0200
commit9d1c6c3ff1f464fc2b99857f9113f5688f9b34f1 (patch)
treeaad72ce29fd00c82f06c999ffc256c59fdf31f16 /VNFs/DPPD-PROX/defaults.c
parentea2c5d5168e56bb45a8839ee2cab890cbdbd873a (diff)
Support DPDK 19.11 rc0
Change-Id: I7ac1bb78fe00407ff66945fcdf7b5d54c9025214 Signed-off-by: Luc Provoost <luc.provoost@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/defaults.c')
-rw-r--r--VNFs/DPPD-PROX/defaults.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/VNFs/DPPD-PROX/defaults.c b/VNFs/DPPD-PROX/defaults.c
index ac611d0c..8dd29da9 100644
--- a/VNFs/DPPD-PROX/defaults.c
+++ b/VNFs/DPPD-PROX/defaults.c
@@ -110,7 +110,7 @@ static struct rte_sched_subport_params subport_params_default = {
.tb_size = 4000000,
.tc_rate = {TEN_GIGABIT, TEN_GIGABIT, TEN_GIGABIT, TEN_GIGABIT},
.tc_period = 40, /* default was 10 */
-#if RTE_VERSION >= RTE_VERSION_NUM(19,11,0,0)
+#if RTE_VERSION > RTE_VERSION_NUM(19,11,0,0)
.qsize = {QUEUE_SIZES, QUEUE_SIZES, QUEUE_SIZES, QUEUE_SIZES},
.pipe_profiles = NULL,
.n_pipe_profiles = 1 /* only one profile */
@@ -154,7 +154,7 @@ void set_task_defaults(struct prox_cfg* prox_cfg, struct lcore_cfg* lcore_cfg_in
targ->qos_conf.port_params = port_params_default;
targ->qos_conf.pipe_params[0] = pipe_params_default;
targ->qos_conf.subport_params[0] = subport_params_default;
-#if RTE_VERSION >= RTE_VERSION_NUM(19,11,0,0)
+#if RTE_VERSION > RTE_VERSION_NUM(19,11,0,0)
targ->qos_conf.subport_params[0].pipe_profiles = targ->qos_conf.pipe_params;
#else
targ->qos_conf.port_params.pipe_profiles = targ->qos_conf.pipe_params;