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 BC036A0487 for ; Mon, 1 Jul 2019 16:30:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 60E871B9C1; Mon, 1 Jul 2019 16:30:42 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 92E3D1B9BF for ; Mon, 1 Jul 2019 16:30:40 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Jul 2019 07:30:39 -0700 X-IronPort-AV: E=Sophos;i="5.63,439,1557212400"; d="scan'208";a="163700696" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.51]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Jul 2019 07:30:38 -0700 Date: Mon, 1 Jul 2019 15:30:35 +0100 From: Bruce Richardson To: "Hu, Jiayu" Cc: "dev@dpdk.org" , "thomas@monjalon.net" , "jerinj@marvell.com" Message-ID: <20190701143035.GB386@bricha3-MOBL.ger.corp.intel.com> References: <20190530212525.40370-1-bruce.richardson@intel.com> <20190627104055.8244-1-bruce.richardson@intel.com> <20190627104055.8244-2-bruce.richardson@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 v3 1/8] raw/ioat: add initial support for ioat rawdev driver 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, Jul 01, 2019 at 09:29:21AM +0100, Hu, Jiayu wrote: > Sorry for the incorrect format in the last mail. > The comment is repeated below. > > > -----Original Message----- > > From: dev On Behalf Of Bruce Richardson > > Sent: Thursday, June 27, 2019 6:41 PM > > To: dev@dpdk.org > > Cc: thomas@monjalon.net; jerinj@marvell.com; Richardson, Bruce > > > > Subject: [dpdk-dev] [PATCH v3 1/8] raw/ioat: add initial support for ioat > > rawdev driver > > > > Add stubs for ioat rawdev driver support in DPDK, specifically: > > > > * makefile and meson build hooks > > * initial public header file > > * rawdev main C file, with probe and release functions > > * release note update announcing the driver > > * initial documentation for the new section in the rawdev doc > > * unit test stubs for device unit tests > > > > Signed-off-by: Bruce Richardson > > > > --- > + > > +static struct rte_pci_driver ioat_pmd_drv; > > + > > +#define IOAT_VENDOR_ID 0x8086 > > +#define IOAT_DEVICE_ID 0x2021 > > In the second patch, the script dpdk-devbind.py supports CBDMAs in > both Broadwell and Skylake. But you only supports Skylake here. > Will fix in v4, thanks. /Bruce