From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id E4F577D04 for ; Thu, 13 Sep 2018 15:11:19 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Sep 2018 06:11:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,369,1531810800"; d="scan'208";a="262275161" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.107]) by fmsmga005.fm.intel.com with SMTP; 13 Sep 2018 06:11:12 -0700 Received: by (sSMTP sendmail emulation); Thu, 13 Sep 2018 14:11:10 +0100 Date: Thu, 13 Sep 2018 14:11:09 +0100 From: Bruce Richardson To: Luca Boccassi Cc: dev@dpdk.org, keith.wiles@intel.com, roy.fan.zhang@intel.com, jingjing.wu@intel.com, wenzhuo.lu@intel.com, rasesh.mody@cavium.com, harish.patil@cavium.com, shahed.shaikh@cavium.com, amr.mokhtar@intel.com, shijith.thotton@cavium.com, ssrinivasan@cavium.com, liang.j.ma@intel.com, peter.mccarthy@intel.com, jerin.jacob@caviumnetworks.com, maciej.czekaj@caviumnetworks.com, arybchenko@solarflare.com, santosh.shukla@caviumnetworks.com, ashish.gupta@cavium.com, yongwang@vmware.com, thomas@monjalon.net Message-ID: <20180913131109.GA14728@bricha3-MOBL.ger.corp.intel.com> References: <20180910200415.8340-1-bluca@debian.org> <20180911160903.27226-1-bluca@debian.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180911160903.27226-1-bluca@debian.org> Organization: Intel Research and Development Ireland Ltd. User-Agent: Mutt/1.10.1 (2018-07-13) Subject: Re: [dpdk-dev] [PATCH v2 1/9] build: add Meson file for TAP PMD 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: Thu, 13 Sep 2018 13:11:20 -0000 On Tue, Sep 11, 2018 at 05:08:55PM +0100, Luca Boccassi wrote: > Use same autoconf generation mechanism as the MLX4/5 PMDs > > Signed-off-by: Luca Boccassi > --- > drivers/net/meson.build | 1 + > drivers/net/tap/meson.build | 41 +++++++++++++++++++++++++++++++++++++ > 2 files changed, 42 insertions(+) > create mode 100644 drivers/net/tap/meson.build > > diff --git a/drivers/net/meson.build b/drivers/net/meson.build > index c7a2d0e7db..b7b4870eb8 100644 > --- a/drivers/net/meson.build > +++ b/drivers/net/meson.build > @@ -27,6 +27,7 @@ drivers = ['af_packet', > 'sfc', > 'softnic', > 'szedata2', > + 'tap', > 'thunderx', > 'vhost', > 'virtio'] > diff --git a/drivers/net/tap/meson.build b/drivers/net/tap/meson.build > new file mode 100644 > index 0000000000..ef3c6e1fee > --- /dev/null > +++ b/drivers/net/tap/meson.build > @@ -0,0 +1,41 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright 2018 Luca Boccassi > + > +sources = files( > + 'rte_eth_tap.c', > + 'tap_bpf_api.c', > + 'tap_flow.c', > + 'tap_intr.c', > + 'tap_netlink.c', > + 'tap_tcmsgs.c', > +) > + > +deps = ['bus_vdev', 'gso', 'hash'] > + > +cflags += '-DTAP_MAX_QUEUES=16' > + > +# To maintain the compatibility with the make build system > +# tap_autoconf.h file is still generated. > +# input array for meson symbol search: > +# [ "MACRO to define if found", "header for the search", > +# "enum/define", "symbol to search" ] > +# > +args = [ > + [ 'HAVE_TC_FLOWER', 'linux/pkt_cls.h', > + 'enum', 'TCA_FLOWER_UNSPEC' ], > + [ 'HAVE_TC_VLAN_ID', 'linux/pkt_cls.h', > + 'enum', 'TCA_FLOWER_KEY_VLAN_PRIO' ], > + [ 'HAVE_TC_BPF', 'linux/pkt_cls.h', > + 'enum', 'TCA_BPF_UNSPEC' ], > + [ 'HAVE_TC_BPF_FD', 'linux/pkt_cls.h', > + 'enum', 'TCA_BPF_FD' ], > + [ 'HAVE_TC_ACT_BPF', 'linux/tc_act/tc_bpf.h', > + 'enum', 'TCA_ACT_BPF_UNSPEC' ], > + [ 'HAVE_TC_ACT_BPF_FD', 'linux/tc_act/tc_bpf.h', > + 'enum', 'TCA_ACT_BPF_FD' ], > +] > +config = configuration_data() > +foreach arg:args > + config.set(arg[0], cc.has_header_symbol(arg[1], arg[3])) > +endforeach > +configure_file(output : 'tap_autoconf.h', configuration : config) > -- Minor nit, arg 2 is unused, and this could be dropped, as is done in the latest version of the mlnx meson build files. /Bruce