From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 03735A0548; Mon, 20 Sep 2021 12:23:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 78DB440DF7; Mon, 20 Sep 2021 12:23:17 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 6227E40DF5 for ; Mon, 20 Sep 2021 12:23:16 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10112"; a="222751054" X-IronPort-AV: E=Sophos;i="5.85,308,1624345200"; d="scan'208";a="222751054" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Sep 2021 03:23:15 -0700 X-IronPort-AV: E=Sophos;i="5.85,308,1624345200"; d="scan'208";a="556052737" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.17.156]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 20 Sep 2021 03:23:13 -0700 Date: Mon, 20 Sep 2021 11:23:10 +0100 From: Bruce Richardson To: Kevin Laatz Cc: dev@dpdk.org, fengchengwen@huawei.com, jerinj@marvell.com, conor.walsh@intel.com Message-ID: References: <20210827172048.558704-1-kevin.laatz@intel.com> <20210917152437.3270330-1-kevin.laatz@intel.com> <20210917152437.3270330-3-kevin.laatz@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210917152437.3270330-3-kevin.laatz@intel.com> Subject: Re: [dpdk-dev] [PATCH v5 02/16] dma/idxd: add skeleton for VFIO based DSA device X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 Fri, Sep 17, 2021 at 03:24:23PM +0000, Kevin Laatz wrote: > Add the basic device probe/remove skeleton code for DSA device bound to > the vfio pci driver. Relevant documentation and MAINTAINERS update also > included. > > Signed-off-by: Bruce Richardson > Signed-off-by: Kevin Laatz > Reviewed-by: Conor Walsh > > --- /dev/null > +++ b/drivers/dma/idxd/meson.build > @@ -0,0 +1,11 @@ > +# SPDX-License-Identifier: BSD-3-Clause > +# Copyright(c) 2021 Intel Corporation > + > +if is_windows > + subdir_done() > +endif > + > +deps += ['bus_pci'] > +sources = files( > + 'idxd_pci.c' > +) > \ No newline at end of file If doing a v6, this should be fixed to have a newline at end. /Bruce