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 9B45CA0548; Mon, 20 Sep 2021 15:53:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 17D0340DF7; Mon, 20 Sep 2021 15:53:22 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id CF4AB40DF5 for ; Mon, 20 Sep 2021 15:53:20 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10112"; a="221250337" X-IronPort-AV: E=Sophos;i="5.85,308,1624345200"; d="scan'208";a="221250337" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Sep 2021 06:53:14 -0700 X-IronPort-AV: E=Sophos;i="5.85,308,1624345200"; d="scan'208";a="556240031" 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 06:53:13 -0700 Date: Mon, 20 Sep 2021 14:53:08 +0100 From: Bruce Richardson To: Conor Walsh Cc: fengchengwen@huawei.com, jerinj@marvell.com, kevin.laatz@intel.com, dev@dpdk.org Message-ID: References: <20210827172550.1522362-1-conor.walsh@intel.com> <20210917154227.737554-1-conor.walsh@intel.com> <20210917154227.737554-12-conor.walsh@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210917154227.737554-12-conor.walsh@intel.com> Subject: Re: [dpdk-dev] [PATCH v4 11/11] devbind: move ioat device ID for ICX to dmadev category 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:42:27PM +0000, Conor Walsh wrote: > Move Intel IOAT devices on Ice Lake systems from Misc to DMA devices. > > Signed-off-by: Conor Walsh > Reviewed-by: Kevin Laatz > --- > usertools/dpdk-devbind.py | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py > index 98b698ccc0..afebc8cb62 100755 > --- a/usertools/dpdk-devbind.py > +++ b/usertools/dpdk-devbind.py > @@ -69,14 +69,13 @@ > network_devices = [network_class, cavium_pkx, avp_vnic, ifpga_class] > baseband_devices = [acceleration_class] > crypto_devices = [encryption_class, intel_processor_class] > -dma_devices = [intel_idxd_spr] > +dma_devices = [intel_idxd_spr, intel_ioat_icx] > eventdev_devices = [cavium_sso, cavium_tim, intel_dlb, octeontx2_sso] > mempool_devices = [cavium_fpa, octeontx2_npa] > compress_devices = [cavium_zip] > regex_devices = [octeontx2_ree] > misc_devices = [cnxk_bphy, cnxk_bphy_cgx, intel_ioat_bdw, intel_ioat_skx, > - intel_ioat_icx, intel_ntb_skx, intel_ntb_icx, > - octeontx2_dma] > + intel_ntb_skx, intel_ntb_icx, octeontx2_dma] > I think the ioat_bdw and ioat_skx elements should also go down as DMA devices. With that change: Reviewed-by: Bruce Richardson