From: Hemant Agrawal Date: Tue, 23 Aug 2016 14:54:40 +0000 (+0530) Subject: examples/l3fwd: enable 4M hash for all 64-bit archs X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=4cbcb7cacaf43a62b38e43c32d69b949dc1d63d8;p=dpdk.git examples/l3fwd: enable 4M hash for all 64-bit archs This patch enables the support for 4 million hash entries for all 64 bit architectures. Signed-off-by: Hemant Agrawal --- diff --git a/examples/l3fwd/l3fwd.h b/examples/l3fwd/l3fwd.h index d8798b7d4b..011ba148bf 100644 --- a/examples/l3fwd/l3fwd.h +++ b/examples/l3fwd/l3fwd.h @@ -68,7 +68,7 @@ #define MASK_ETH 0x3f /* Hash parameters. */ -#ifdef RTE_ARCH_X86_64 +#ifdef RTE_ARCH_64 /* default to 4 million hash entries (approx) */ #define L3FWD_HASH_ENTRIES (1024*1024*4) #else