From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E65F7A2EFC for ; Thu, 19 Sep 2019 16:46:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9BBB81F074; Thu, 19 Sep 2019 16:46:34 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id E818A1F073 for ; Thu, 19 Sep 2019 16:46:32 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Sep 2019 07:46:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,523,1559545200"; d="scan'208";a="362538528" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by orsmga005.jf.intel.com with ESMTP; 19 Sep 2019 07:46:31 -0700 Received: from fmsmsx116.amr.corp.intel.com (10.18.116.20) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 19 Sep 2019 07:46:31 -0700 Received: from HASMSX109.ger.corp.intel.com (10.184.198.21) by fmsmsx116.amr.corp.intel.com (10.18.116.20) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 19 Sep 2019 07:46:31 -0700 Received: from hasmsx114.ger.corp.intel.com ([169.254.14.116]) by hasmsx109.ger.corp.intel.com ([169.254.3.38]) with mapi id 14.03.0439.000; Thu, 19 Sep 2019 17:46:28 +0300 From: "Baran, MarcinX" To: "Richardson, Bruce" CC: "dev@dpdk.org" , "Modrak, PawelX" Thread-Topic: [PATCH v4 1/6] examples/ioat: create sample app on ioat driver usage Thread-Index: AQHVbs4jL7LDcl6ea0aFDNBkX6qDZKcy4Y4AgAAymyA= Date: Thu, 19 Sep 2019 14:46:27 +0000 Message-ID: <06CDC4676D44784DA2DF9423D4B672BE15ECA812@HASMSX114.ger.corp.intel.com> References: <20190918091139.1430-1-marcinx.baran@intel.com> <20190919093850.460-1-marcinx.baran@intel.com> <20190919093850.460-2-marcinx.baran@intel.com> <20190919144424.GA1996@bricha3-MOBL.ger.corp.intel.com> In-Reply-To: <20190919144424.GA1996@bricha3-MOBL.ger.corp.intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.184.70.11] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 1/6] examples/ioat: create sample app on ioat driver usage 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" -----Original Message----- From: Bruce Richardson =20 Sent: Thursday, September 19, 2019 4:44 PM To: Baran, MarcinX Cc: dev@dpdk.org; Modrak, PawelX 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 >=20 > A new sample app demonstrating use of driver for CBDMA. > The app receives packets, performs software or hardware copy, changes=20 > packets' MAC addresses (if enabled) and forwards them. The change=20 > covers ports initialization, closing connection and argument parsing. >=20 > Signed-off-by: Pawel Modrak > Signed-off-by: Marcin Baran > --- > --- /dev/null > +++ b/examples/ioat/meson.build > @@ -0,0 +1,23 @@ > +# SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2019 Intel=20 > +Corporation > + > +# meson file, for building this example as part of a main DPDK build. > +# > +# To build this example as a standalone application with an=20 > +already-installed # DPDK instance, use 'make' > + > +if not dpdk_conf.has('RTE_LIBRTE_PMD_IOAT_RAWDEV') > + build =3D false > + subdir_done() > +endif > + > +if dpdk_conf.get('RTE_LIBRTE_PMD_IOAT_RAWDEV', 0) !=3D 1 > + build =3D false > + subdir_done() > +endif > + > +deps +=3D ['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_ioa= t". 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.