From ecd8749541aba7c9635ca9874bd0580bca0a68fd Mon Sep 17 00:00:00 2001 From: Timothy McDaniel Date: Mon, 26 Oct 2020 11:01:08 -0500 Subject: [PATCH] eventdev: increase max queues configuration DLB supports a total of 256 queues, 128 load balanced queues and 128 directed queues. Increase RTE_EVENT_MAX_QUEUES_PER_DEV to max possible uint_8_t max value. Signed-off-by: Timothy McDaniel Reviewed-by: Gage Eads Acked-by: Jerin Jacob --- config/rte_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/rte_config.h b/config/rte_config.h index 8aa46a1aaf..b78c6aa7e2 100644 --- a/config/rte_config.h +++ b/config/rte_config.h @@ -71,7 +71,7 @@ /* eventdev defines */ #define RTE_EVENT_MAX_DEVS 16 -#define RTE_EVENT_MAX_QUEUES_PER_DEV 64 +#define RTE_EVENT_MAX_QUEUES_PER_DEV 255 #define RTE_EVENT_TIMER_ADAPTER_NUM_MAX 32 #define RTE_EVENT_ETH_INTR_RING_SIZE 1024 #define RTE_EVENT_CRYPTO_ADAPTER_MAX_INSTANCE 32 -- 2.20.1