From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 195637F44 for ; Tue, 25 Nov 2014 11:35:30 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 25 Nov 2014 02:46:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,455,1413270000"; d="scan'208";a="627902831" Received: from bricha3-mobl3.ger.corp.intel.com ([10.243.20.15]) by fmsmga001.fm.intel.com with SMTP; 25 Nov 2014 02:46:19 -0800 Received: by (sSMTP sendmail emulation); Tue, 25 Nov 2014 10:46:18 +0025 Date: Tue, 25 Nov 2014 10:46:18 +0000 From: Bruce Richardson To: Thomas Monjalon 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 Content-Disposition: inline In-Reply-To: <1416692622-28886-9-git-send-email-thomas.monjalon@6wind.com> Organization: Intel Shannon Ltd. User-Agent: Mutt/1.5.23 (2014-03-12) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 08/10] config: support 128 cores X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Nov 2014 10:35:31 -0000 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 >