From: Abhinandan Gujjar Date: Mon, 14 May 2018 06:50:22 +0000 (+0530) Subject: test: fix build with icc X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=a68bc62fd10c80d5c5e11bfb18b098fda0436b32;p=dpdk.git test: fix build with icc This patch provides fix for icc compilation issue with event crypto adapter test application. Currently, number of elements in the session mempool is defined by max_nb_sessions & this is replaced with a macro. Fixes: 3c2c535ecfc0 ("test: add event crypto adapter auto-test") Reported-by: Pablo de Lara Signed-off-by: Abhinandan Gujjar Acked-by: Pablo de Lara --- diff --git a/test/test/test_event_crypto_adapter.c b/test/test/test_event_crypto_adapter.c index 17eae5d993..6f0e794609 100644 --- a/test/test/test_event_crypto_adapter.c +++ b/test/test/test_event_crypto_adapter.c @@ -21,6 +21,7 @@ #define MBUF_CACHE_SIZE (256) #define MAXIMUM_IV_LENGTH (16) #define DEFAULT_NUM_OPS_INFLIGHT (128) +#define MAX_NB_SESSIONS 4 #define TEST_APP_PORT_ID 0 #define TEST_APP_EV_QUEUE_ID 0 #define TEST_APP_EV_PRIORITY 0 @@ -527,7 +528,7 @@ configure_cryptodev(void) params.session_mpool = rte_mempool_create( "CRYPTO_ADAPTER_SESSION_MP", - info.sym.max_nb_sessions * 2, + MAX_NB_SESSIONS * 2, session_size, 0, 0, NULL, NULL, NULL, NULL, SOCKET_ID_ANY,