From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH 08/10] config: support 128 cores Date: Sat, 22 Nov 2014 22:43:40 +0100 Message-ID: <1416692622-28886-9-git-send-email-thomas.monjalon@6wind.com> References: <1416692622-28886-1-git-send-email-thomas.monjalon@6wind.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1416692622-28886-1-git-send-email-thomas.monjalon-pdR9zngts4EAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" From: Didier Pallard New platforms have more than 64 cores. Now that cores can be specified with a list, we are not limited anymore to 64. Set default max cores number to 128. Signed-off-by: Didier Pallard Acked-by: David Marchand --- config/common_bsdapp | 2 +- config/common_linuxapp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/common_bsdapp b/config/common_bsdapp index 57cad76..c4cab7b 100644 --- a/config/common_bsdapp +++ b/config/common_bsdapp @@ -88,7 +88,7 @@ CONFIG_RTE_LIBNAME=intel_dpdk # Compile Environment Abstraction Layer # CONFIG_RTE_LIBRTE_EAL=y -CONFIG_RTE_MAX_LCORE=64 +CONFIG_RTE_MAX_LCORE=128 CONFIG_RTE_MAX_NUMA_NODES=8 CONFIG_RTE_MAX_MEMSEG=256 CONFIG_RTE_MAX_MEMZONE=2560 diff --git a/config/common_linuxapp b/config/common_linuxapp index 57b61c9..63510ec 100644 --- a/config/common_linuxapp +++ b/config/common_linuxapp @@ -113,7 +113,7 @@ CONFIG_RTE_LIBGLOSS=n # Compile Environment Abstraction Layer # CONFIG_RTE_LIBRTE_EAL=y -CONFIG_RTE_MAX_LCORE=64 +CONFIG_RTE_MAX_LCORE=128 CONFIG_RTE_MAX_NUMA_NODES=8 CONFIG_RTE_MAX_MEMSEG=256 CONFIG_RTE_MAX_MEMZONE=2560 -- 2.1.3