From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 6CA4DA0AC5 for ; Mon, 27 May 2019 11:41:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0E920137D; Mon, 27 May 2019 11:41:22 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id BAD329E4 for ; Mon, 27 May 2019 11:41:20 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 May 2019 02:41:19 -0700 X-ExtLoop1: 1 Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.64]) by orsmga007.jf.intel.com with SMTP; 27 May 2019 02:41:17 -0700 Received: by (sSMTP sendmail emulation); Mon, 27 May 2019 10:41:16 +0100 Date: Mon, 27 May 2019 10:41:16 +0100 From: Bruce Richardson To: David Wilder Cc: dev@dpdk.org, pradeep@us.ibm.com, drc@ibm.com Message-ID: <20190527094116.GA425@bricha3-MOBL.ger.corp.intel.com> References: <20190524160404.15896-1-dwilder@us.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190524160404.15896-1-dwilder@us.ibm.com> User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH] meson: Update flags and values for ppc_64 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, May 24, 2019 at 09:04:04AM -0700, David Wilder wrote: > Setting RTE_MAX_LCORE to reflect the largest available configuration. > Adding defines for missing RTE_MACHINE_CPUFLAGs. > > Signed-off-by: David Wilder > --- > config/ppc_64/meson.build | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/config/ppc_64/meson.build b/config/ppc_64/meson.build > index 7ceae1d..0e65f9d 100644 > --- a/config/ppc_64/meson.build > +++ b/config/ppc_64/meson.build > @@ -8,6 +8,8 @@ dpdk_conf.set('RTE_ARCH', 'ppc_64') > dpdk_conf.set('RTE_ARCH_PPC_64', 1) > > # overrides specific to ppc64 > -dpdk_conf.set('RTE_MAX_LCORE', 256) > +dpdk_conf.set('RTE_MAX_LCORE', 1536) > dpdk_conf.set('RTE_MAX_NUMA_NODES', 32) > dpdk_conf.set('RTE_CACHE_LINE_SIZE', 128) > +dpdk_conf.set('RTE_MACHINE_CPUFLAG_ALTIVEC', 1) > +dpdk_conf.set('RTE_MACHINE_CPUFLAG_VSX', 1) > -- Acked-by: Bruce Richardson