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 B5FA491B5 for ; Tue, 15 Sep 2015 11:01:27 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 15 Sep 2015 02:01:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,534,1437462000"; d="scan'208";a="789670132" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.208.64]) by fmsmga001.fm.intel.com with SMTP; 15 Sep 2015 02:01:24 -0700 Received: by (sSMTP sendmail emulation); Tue, 15 Sep 2015 10:01:23 +0025 Date: Tue, 15 Sep 2015 10:01:23 +0100 From: Bruce Richardson To: Chao Zhu Message-ID: <20150915090122.GA27696@bricha3-MOBL3> References: <1439554788-31037-1-git-send-email-chaozhu@linux.vnet.ibm.com> <55F7CCE9.8060807@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <55F7CCE9.8060807@linux.vnet.ibm.com> Organization: Intel Shannon Ltd. User-Agent: Mutt/1.5.23 (2014-03-12) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] Fwd: [PATCH] PPC: Fix NUMA node numbering on IBM POWER8 LE machine 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, 15 Sep 2015 09:01:29 -0000 On Tue, Sep 15, 2015 at 03:46:49PM +0800, Chao Zhu wrote: > > Any response of this patch? Looks ok to me - pretty trivial change. /Bruce > > -------- Forwarded Message -------- > Subject: [dpdk-dev] [PATCH] PPC: Fix NUMA node numbering on IBM POWER8 LE > machine > Date: Fri, 14 Aug 2015 20:19:48 +0800 > From: Chao Zhu > To: dev@dpdk.org > > > > When Linux is running on bare metal, it gets the raw hardware > information. On POWER8 little endian bare metal machine, the node number > is not continuous. It will jump from 0 to other values, for example, it > can be 0, 1, 16, 17. This patch modified the CONFIG_RTE_MAX_NUMA_NODES > value to make dpdk work on POWER8 bare metal little endian machine. > > Signed-off-by: Chao Zhu > --- > config/common_linuxapp | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/config/common_linuxapp b/config/common_linuxapp > index 0de43d5..82a027e 100644 > --- a/config/common_linuxapp > +++ b/config/common_linuxapp > @@ -98,7 +98,7 @@ CONFIG_RTE_NEXT_ABI=y > # > CONFIG_RTE_LIBRTE_EAL=y > CONFIG_RTE_MAX_LCORE=128 > -CONFIG_RTE_MAX_NUMA_NODES=8 > +CONFIG_RTE_MAX_NUMA_NODES=32 > CONFIG_RTE_MAX_MEMSEG=256 > CONFIG_RTE_MAX_MEMZONE=2560 > CONFIG_RTE_MAX_TAILQ=32 > -- > 1.7.1 > > >