All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@intel.com>
To: Bruce Richardson <bruce.richardson@intel.com>, dev@dpdk.org
Cc: Marcin Wojtas <mw@semihalf.com>,
	Michal Krawczyk <mk@semihalf.com>,
	Guy Tzalik <gtzalik@amazon.com>,
	Evgeny Schemeilin <evgenys@amazon.com>
Subject: Re: [PATCH v2 06/15] net/ena: add to meson build
Date: Thu, 14 Jun 2018 15:55:41 +0100	[thread overview]
Message-ID: <be5df64d-d02d-3a15-0c6f-bf7b25335df2@intel.com> (raw)
In-Reply-To: <20180608212048.67261-7-bruce.richardson@intel.com>

On 6/8/2018 10:20 PM, Bruce Richardson wrote:
> CC: Marcin Wojtas <mw@semihalf.com>
> CC: Michal Krawczyk <mk@semihalf.com>
> CC: Guy Tzalik <gtzalik@amazon.com>
> CC: Evgeny Schemeilin <evgenys@amazon.com>
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  drivers/net/ena/meson.build | 8 ++++++++
>  drivers/net/meson.build     | 3 ++-
>  2 files changed, 10 insertions(+), 1 deletion(-)
>  create mode 100644 drivers/net/ena/meson.build
> 
> diff --git a/drivers/net/ena/meson.build b/drivers/net/ena/meson.build
> new file mode 100644
> index 000000000..542f29567
> --- /dev/null
> +++ b/drivers/net/ena/meson.build
> @@ -0,0 +1,8 @@
> +# SPDX-License-Identifier: BSD-3-Clause
> +# Copyright(c) 2018 Intel Corporation
> +
> +allow_experimental_apis = true
> +sources = files('ena_ethdev.c',
> +	'base/ena_com.c',
> +	'base/ena_eth_com.c')

Added missing rte_timer dependency while merging:

deps += ['timer']

> +includes += include_directories('base', 'base/ena_defs')
> diff --git a/drivers/net/meson.build b/drivers/net/meson.build
> index c55ca65a5..d4c7d58ab 100644
> --- a/drivers/net/meson.build
> +++ b/drivers/net/meson.build
> @@ -4,7 +4,8 @@
>  drivers = ['af_packet', 'ark', 'avp',
>  	'axgbe', 'bonding', 'bnx2x',
>  	'bnxt', 'cxgbe', 'dpaa', 'dpaa2',
> -	'e1000', 'enic', 'fm10k', 'i40e', 'ixgbe',
> +	'e1000', 'ena', 'enic',
> +	'fm10k', 'i40e', 'ixgbe',
>  	'mvpp2', 'null', 'octeontx', 'pcap', 'ring',
>  	'sfc', 'thunderx', 'virtio']
>  std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
> 

  reply	other threads:[~2018-06-14 14:55 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-17 20:15 [PATCH-18.08 00/15] add meson support for more net drivers Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 01/15] net/ark: add to meson build Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 02/15] net/avp: " Bruce Richardson
2018-05-18 11:13   ` Legacy, Allain
2018-05-17 20:15 ` [PATCH-18.08 03/15] net/bnx2x: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 04/15] net/bnxt: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 05/15] net/cxgbe: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 06/15] net/ena: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 07/15] net/failsafe: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 08/15] net/ifc: rename to ifcvf Bruce Richardson
2018-05-18  1:52   ` Wang, Xiao W
2018-05-18  8:12     ` Bruce Richardson
2018-05-18 16:37       ` Wang, Xiao W
2018-05-17 20:15 ` [PATCH-18.08 09/15] net/ifcvf: add to meson build Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 10/15] net/kni: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 11/15] net/liquidio: " Bruce Richardson
2018-05-21  8:47   ` Shijith Thotton
2018-05-17 20:15 ` [PATCH-18.08 12/15] net/nfp: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 13/15] net/softnic: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 14/15] net/szedata2: " Bruce Richardson
2018-05-17 20:15 ` [PATCH-18.08 15/15] net/vhost: " Bruce Richardson
2018-06-08 21:20 ` [PATCH v2 00/15] add meson support for more net drivers Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 01/15] net/ark: add to meson build Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 02/15] net/avp: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 03/15] net/bnx2x: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 04/15] net/bnxt: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 05/15] net/cxgbe: " Bruce Richardson
2018-06-14 14:55     ` Ferruh Yigit
2018-06-08 21:20   ` [PATCH v2 06/15] net/ena: " Bruce Richardson
2018-06-14 14:55     ` Ferruh Yigit [this message]
2018-06-08 21:20   ` [PATCH v2 07/15] net/failsafe: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 08/15] net/ifc: rename to ifcvf Bruce Richardson
2018-06-13  2:46     ` Wang, Xiao W
2018-06-13 10:19       ` Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 09/15] net/ifcvf: add to meson build Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 10/15] net/kni: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 11/15] net/liquidio: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 12/15] net/nfp: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 13/15] net/softnic: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 14/15] net/szedata2: " Bruce Richardson
2018-06-08 21:20   ` [PATCH v2 15/15] net/vhost: " Bruce Richardson
2018-06-14 14:55   ` [PATCH v2 00/15] add meson support for more net drivers Ferruh Yigit
2018-06-14 16:25   ` Ferruh Yigit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=be5df64d-d02d-3a15-0c6f-bf7b25335df2@intel.com \
    --to=ferruh.yigit@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=evgenys@amazon.com \
    --cc=gtzalik@amazon.com \
    --cc=mk@semihalf.com \
    --cc=mw@semihalf.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.