From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: Re: [PATCH 08/10] config: support 128 cores Date: Tue, 25 Nov 2014 10:46:18 +0000 Message-ID: <20141125104618.GH5260@bricha3-MOBL3> References: <1416692622-28886-1-git-send-email-thomas.monjalon@6wind.com> <1416692622-28886-9-git-send-email-thomas.monjalon@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev-VfR2kkLFssw@public.gmane.org To: Thomas Monjalon Return-path: Content-Disposition: inline In-Reply-To: <1416692622-28886-9-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" On Sat, Nov 22, 2014 at 10:43:40PM +0100, Thomas Monjalon wrote: > 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 Acked-by: Bruce Richardson > --- > 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 >