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 A27221B1DB for ; Tue, 9 Jan 2018 18:35:33 +0100 (CET) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jan 2018 09:35:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,336,1511856000"; d="scan'208";a="191978133" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.221.77]) by orsmga005.jf.intel.com with SMTP; 09 Jan 2018 09:35:29 -0800 Received: by (sSMTP sendmail emulation); Tue, 09 Jan 2018 17:35:28 +0000 Date: Tue, 9 Jan 2018 17:35:28 +0000 From: Bruce Richardson To: Pavan Nikhilesh Cc: bluca@debian.org, harry.van.haaren@intel.com, jerin.jacob@caviumnetworks.com, dev@dpdk.org Message-ID: <20180109173528.GC6508@bricha3-MOBL3.ger.corp.intel.com> References: <20171231000203.4510-1-pbhagavatula@caviumnetworks.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171231000203.4510-1-pbhagavatula@caviumnetworks.com> Organization: Intel Research and Development Ireland Ltd. User-Agent: Mutt/1.9.1 (2017-09-22) Subject: Re: [dpdk-dev] [PATCH 1/4] drivers/mempool: add octeontx mempool driver to meson build 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: , X-List-Received-Date: Tue, 09 Jan 2018 17:35:34 -0000 On Sun, Dec 31, 2017 at 05:32:00AM +0530, Pavan Nikhilesh wrote: > Add octeontx hardware mempool driver to meson build. > > Signed-off-by: Pavan Nikhilesh > --- > drivers/mempool/meson.build | 2 +- > drivers/mempool/octeontx/meson.build | 8 ++++++++ > 2 files changed, 9 insertions(+), 1 deletion(-) > create mode 100644 drivers/mempool/octeontx/meson.build > > diff --git a/drivers/mempool/meson.build b/drivers/mempool/meson.build > index a47b1d9b1..599185609 100644 > --- a/drivers/mempool/meson.build > +++ b/drivers/mempool/meson.build > @@ -1,7 +1,7 @@ > # SPDX-License-Identifier: BSD-3-Clause > # Copyright(c) 2017 Intel Corporation > > -drivers = ['ring', 'stack'] > +drivers = ['ring', 'stack', 'octeontx'] > std_deps = ['mempool'] > config_flag_fmt = 'RTE_LIBRTE_@0@_MEMPOOL' > driver_name_fmt = 'rte_mempool_@0@' > diff --git a/drivers/mempool/octeontx/meson.build b/drivers/mempool/octeontx/meson.build > new file mode 100644 > index 000000000..57ddf58b7 > --- /dev/null > +++ b/drivers/mempool/octeontx/meson.build > @@ -0,0 +1,8 @@ > +sources = files('octeontx_ssovf.c', > + 'octeontx_mbox.c', > + 'octeontx_fpavf.c', > + 'rte_mempool_octeontx.c' > +) > +deps += ['mbuf', 'bus_pci'] > + > +mempool_octeontx_dir = include_directories('.') Is this variable used in later patches, I don't see it on a quick scan? Normally we just use the dependency objects to manage paths to include directories, and we don't need to explicitly have include variables. /Bruce