From 0f678fdd8c909e126406bd1ba386e9da8937027f Mon Sep 17 00:00:00 2001 From: Suanming Mou Date: Tue, 20 Jul 2021 16:28:11 +0300 Subject: [PATCH] test/crypto: increase mbuf data payload size to 4K Currently, there is vendor which can support bigger crypto data size. Increase the default mbuf data payload size to 4K as needed. Signed-off-by: Suanming Mou Acked-by: Akhil Goyal --- app/test/test_cryptodev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_cryptodev.h b/app/test/test_cryptodev.h index 31e278261a..1cdd84d01f 100644 --- a/app/test/test_cryptodev.h +++ b/app/test/test_cryptodev.h @@ -19,7 +19,7 @@ #define DEFAULT_NUM_XFORMS (2) #define NUM_MBUFS (8191) #define MBUF_CACHE_SIZE (256) -#define MBUF_DATAPAYLOAD_SIZE (2048 + DIGEST_BYTE_LENGTH_SHA512) +#define MBUF_DATAPAYLOAD_SIZE (4096 + DIGEST_BYTE_LENGTH_SHA512) #define MBUF_SIZE (sizeof(struct rte_mbuf) + \ RTE_PKTMBUF_HEADROOM + MBUF_DATAPAYLOAD_SIZE) -- 2.20.1