From patchwork Thu Mar 8 02:47:02 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "John Daley (johndale)" X-Patchwork-Id: 35775 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EFF3E5F6E; Thu, 8 Mar 2018 03:51:59 +0100 (CET) Received: from rcdn-iport-8.cisco.com (rcdn-iport-8.cisco.com [173.37.86.79]) by dpdk.org (Postfix) with ESMTP id 8D39D5F25 for ; Thu, 8 Mar 2018 03:51:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=1442; q=dns/txt; s=iport; t=1520477518; x=1521687118; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=xguLHD5hM/7/FtKnyxen2QDufac87mzs7QMdfpIxMTg=; b=IaGbvAxnBrKqjd15WJFxF5g4ivZvcYrqiEIQJH9T85Cwbm8E4L/QYEbB T+5f7tHnkj0HUehQrE4x+VefjTpWLRjxMu9J3wl9qcSz1t61zGnzvLTrO hUZ3HgDrMt7iRdcfNQ5ocbSp/rjyEHqM+N5FRpa9jUjnJYCppmL2tO9DS 4=; X-IronPort-AV: E=Sophos;i="5.47,438,1515456000"; d="scan'208";a="363089977" Received: from alln-core-1.cisco.com ([173.36.13.131]) by rcdn-iport-8.cisco.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Mar 2018 02:51:57 +0000 Received: from cisco.com (savbu-usnic-a.cisco.com [10.193.184.48]) by alln-core-1.cisco.com (8.14.5/8.14.5) with ESMTP id w282pv7X012443; Thu, 8 Mar 2018 02:51:57 GMT Received: by cisco.com (Postfix, from userid 392789) id 4659B20F2001; Wed, 7 Mar 2018 18:51:57 -0800 (PST) From: John Daley To: ferruh.yigit@intel.com Cc: dev@dpdk.org, Hyong Youb Kim Date: Wed, 7 Mar 2018 18:47:02 -0800 Message-Id: <20180308024702.25974-11-johndale@cisco.com> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180308024702.25974-1-johndale@cisco.com> References: <20180306014634.28398-2-johndale@cisco.com> <20180308024702.25974-1-johndale@cisco.com> Subject: [dpdk-dev] [PATCH v3 10/10] net/enic: support for meson 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" From: Hyong Youb Kim Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley Acked-by: Bruce Richardson --- drivers/net/enic/meson.build | 19 +++++++++++++++++++ drivers/net/meson.build | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 drivers/net/enic/meson.build diff --git a/drivers/net/enic/meson.build b/drivers/net/enic/meson.build new file mode 100644 index 000000000..bfd4e2373 --- /dev/null +++ b/drivers/net/enic/meson.build @@ -0,0 +1,19 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Cisco Systems, Inc. + +sources = files( + 'base/vnic_cq.c', + 'base/vnic_dev.c', + 'base/vnic_intr.c', + 'base/vnic_rq.c', + 'base/vnic_rss.c', + 'base/vnic_wq.c', + 'enic_clsf.c', + 'enic_ethdev.c', + 'enic_flow.c', + 'enic_main.c', + 'enic_res.c', + 'enic_rxtx.c', + ) +deps += ['hash'] +includes += include_directories('base') diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 704cbe3c8..f535baa13 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -2,7 +2,7 @@ # Copyright(c) 2017 Intel Corporation drivers = ['af_packet', 'bonding', - 'e1000', 'fm10k', 'i40e', 'ixgbe', + 'e1000', 'enic', 'fm10k', 'i40e', 'ixgbe', 'null', 'octeontx', 'pcap', 'ring', 'sfc', 'thunderx'] std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc