-----Original Message-----
From: Bruce Richardson <bruce.richard...@intel.com> 
Sent: Thursday, September 19, 2019 4:44 PM
To: Baran, MarcinX <marcinx.ba...@intel.com>
Cc: dev@dpdk.org; Modrak, PawelX <pawelx.mod...@intel.com>
Subject: Re: [PATCH v4 1/6] examples/ioat: create sample app on ioat driver 
usage

On Thu, Sep 19, 2019 at 11:38:45AM +0200, Marcin Baran wrote:
> From: Pawel Modrak <pawelx.mod...@intel.com>
> 
> A new sample app demonstrating use of driver for CBDMA.
> The app receives packets, performs software or hardware copy, changes 
> packets' MAC addresses (if enabled) and forwards them. The change 
> covers ports initialization, closing connection and argument parsing.
> 
> Signed-off-by: Pawel Modrak <pawelx.mod...@intel.com>
> Signed-off-by: Marcin Baran <marcinx.ba...@intel.com>
> ---
<snip>
> --- /dev/null
> +++ b/examples/ioat/meson.build
> @@ -0,0 +1,23 @@
> +# SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2019 Intel 
> +Corporation
> +
> +# meson file, for building this example as part of a main DPDK build.
> +#
> +# To build this example as a standalone application with an 
> +already-installed # DPDK instance, use 'make'
> +
> +if not dpdk_conf.has('RTE_LIBRTE_PMD_IOAT_RAWDEV')
> +     build = false
> +     subdir_done()
> +endif
> +
> +if dpdk_conf.get('RTE_LIBRTE_PMD_IOAT_RAWDEV', 0) != 1
> +     build = false
> +     subdir_done()
> +endif
> +
> +deps += ['pmd_ioat']
> +
Since commit '54dcfdee85aa ("drivers/raw: standardize naming")' the naming has 
changed a little so this needs to be "rawdev_ioat" rather than "pmd_ioat". I 
believe this is causing some of the CI error reports.
Regards,
/Bruce

[MARCIN] Yes, I noticed that just now. I am generating new patches with the fix.

Reply via email to