From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pavan Nikhilesh Subject: [PATCH 1/4] drivers/mempool: add octeontx mempool driver to meson build Date: Sun, 31 Dec 2017 05:32:00 +0530 Message-ID: <20171231000203.4510-1-pbhagavatula@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain Cc: dev@dpdk.org, Pavan Nikhilesh To: bruce.richardson@intel.com, bluca@debian.org, harry.van.haaren@intel.com, jerin.jacob@caviumnetworks.com Return-path: Received: from NAM01-BY2-obe.outbound.protection.outlook.com (mail-by2nam01on0050.outbound.protection.outlook.com [104.47.34.50]) by dpdk.org (Postfix) with ESMTP id 1FC631D7 for ; Sun, 31 Dec 2017 01:02:36 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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('.') -- 2.15.1