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 C4BF1A2EEB for ; Mon, 9 Sep 2019 15:58:58 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B2B651EC6D; Mon, 9 Sep 2019 15:58:57 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 297911EC49 for ; Mon, 9 Sep 2019 15:58:55 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Sep 2019 06:58:55 -0700 X-IronPort-AV: E=Sophos;i="5.64,484,1559545200"; d="scan'208";a="174987608" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.46]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Sep 2019 06:58:53 -0700 Date: Mon, 9 Sep 2019 14:58:50 +0100 From: Bruce Richardson To: Aaron Conole Cc: Marcin Baran , dev@dpdk.org, Pawel Modrak Message-ID: <20190909135850.GB1889@bricha3-MOBL.ger.corp.intel.com> References: <20190909082939.1629-1-marcinx.baran@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH] 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" On Mon, Sep 09, 2019 at 09:12:32AM -0400, Aaron Conole wrote: > Marcin Baran writes: > > > From: Pawel Modrak > > > > 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 patch includes sample application > > as well as it's guide. > > > > Signed-off-by: Pawel Modrak > > Signed-off-by: Marcin Baran > > --- > > diff --git a/examples/ioat/meson.build b/examples/ioat/meson.build > > new file mode 100644 > > index 000000000..ff56dc99c > > --- /dev/null > > +++ b/examples/ioat/meson.build > > @@ -0,0 +1,13 @@ > > +# 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' > > + > > +deps += ['pmd_ioat'] > > + > > +sources = files( > > + 'ioatfwd.c' > > +) > > diff --git a/examples/meson.build b/examples/meson.build > > index a046b74ad..c2e18b59b 100644 > > --- a/examples/meson.build > > +++ b/examples/meson.build > > You'll need to add the pmd_ioat dependency to this example it seems: > > examples/meson.build:89:4: ERROR: Problem encountered: Missing dependency "pmd_ioat" for example "ioat" > Actually, its added. What I think is missing is a check to disable the app if the dependency is not available. /Bruce