From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <wenzhuo.lu@intel.com>
Received: from mga09.intel.com (mga09.intel.com [134.134.136.24])
 by dpdk.org (Postfix) with ESMTP id 09E45201
 for <dev@dpdk.org>; Mon,  4 Mar 2019 02:24:05 +0100 (CET)
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from fmsmga007.fm.intel.com ([10.253.24.52])
 by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 03 Mar 2019 17:24:04 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.58,438,1544515200"; d="scan'208";a="131325715"
Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205])
 by fmsmga007.fm.intel.com with ESMTP; 03 Mar 2019 17:24:04 -0800
Received: from fmsmsx117.amr.corp.intel.com (10.18.116.17) by
 fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS)
 id 14.3.408.0; Sun, 3 Mar 2019 17:24:04 -0800
Received: from shsmsx154.ccr.corp.intel.com (10.239.6.54) by
 fmsmsx117.amr.corp.intel.com (10.18.116.17) with Microsoft SMTP Server (TLS)
 id 14.3.408.0; Sun, 3 Mar 2019 17:24:03 -0800
Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.163]) by
 SHSMSX154.ccr.corp.intel.com ([169.254.7.223]) with mapi id 14.03.0415.000;
 Mon, 4 Mar 2019 09:24:01 +0800
From: "Lu, Wenzhuo" <wenzhuo.lu@intel.com>
To: "Zhang, Qi Z" <qi.z.zhang@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Thread-Topic: [dpdk-dev] [PATCH 0/8] Support vector instructions on ICE
Thread-Index: AQHUzzlX4YwfZV3As0qil9RAeWYnA6X1nKqAgAUWpKA=
Date: Mon, 4 Mar 2019 01:24:00 +0000
Message-ID: <6A0DE07E22DDAD4C9103DF62FEBC0909407E9B55@shsmsx102.ccr.corp.intel.com>
References: <1551340136-83843-1-git-send-email-wenzhuo.lu@intel.com>
 <039ED4275CED7440929022BC67E70611533469D9@SHSMSX103.ccr.corp.intel.com>
In-Reply-To: <039ED4275CED7440929022BC67E70611533469D9@SHSMSX103.ccr.corp.intel.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
x-originating-ip: [10.239.127.40]
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Subject: Re: [dpdk-dev] [PATCH 0/8] Support vector instructions on ICE
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 04 Mar 2019 01:24:06 -0000

Hi Qi,

> -----Original Message-----
> From: Zhang, Qi Z
> Sent: Friday, March 1, 2019 11:41 AM
> To: Lu, Wenzhuo <wenzhuo.lu@intel.com>; dev@dpdk.org
> Cc: Lu, Wenzhuo <wenzhuo.lu@intel.com>
> Subject: RE: [dpdk-dev] [PATCH 0/8] Support vector instructions on ICE
>=20
> HI Wenzhuo:
>=20
> > -----Original Message-----
> > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Wenzhuo Lu
> > Sent: Thursday, February 28, 2019 3:49 PM
> > To: dev@dpdk.org
> > Cc: Lu, Wenzhuo <wenzhuo.lu@intel.com>
> > Subject: [dpdk-dev] [PATCH 0/8] Support vector instructions on ICE
> >
> > Use SSE and AVX2 instructions in ICE RX and TX path.
> >
> > Wenzhuo Lu (8):
> >   net/ice: fix TX function setting
> >   net/ice: add pointer for queue buffer release
> >   net/ice: support RX SSE vector
> >   net/ice: support RX scatter SSE vector
> >   net/ice: support TX SSE vector
> >   net/ice: support RX AVX2 vector
> >   net/ice: support RX scatter AVX2 vector
> >   net/ice: support TX AVX2 vector
>=20
> Should be "Rx" and "Tx" in the title to follow the headline uppercase rul=
e.
> The check-git-log.sh report this warning.
Will change them. Thanks.

>=20
> Regards
> Qi
>=20
> >
> >  config/common_base                     |   1 +
> >  doc/guides/nics/features/ice_vec.ini   |  40 ++
> >  doc/guides/rel_notes/release_19_05.rst |   4 +
> >  drivers/net/ice/Makefile               |  22 +
> >  drivers/net/ice/ice_ethdev.c           |   3 +-
> >  drivers/net/ice/ice_ethdev.h           |   2 +
> >  drivers/net/ice/ice_rxtx.c             | 101 ++++-
> >  drivers/net/ice/ice_rxtx.h             |  39 ++
> >  drivers/net/ice/ice_rxtx_vec_avx2.c    | 764
> > +++++++++++++++++++++++++++++++++
> >  drivers/net/ice/ice_rxtx_vec_common.h  | 288 +++++++++++++
> >  drivers/net/ice/ice_rxtx_vec_sse.c     | 663
> > ++++++++++++++++++++++++++++
> >  drivers/net/ice/meson.build            |  21 +
> >  12 files changed, 1935 insertions(+), 13 deletions(-)  create mode
> > 100644 doc/guides/nics/features/ice_vec.ini
> >  create mode 100644 drivers/net/ice/ice_rxtx_vec_avx2.c
> >  create mode 100644 drivers/net/ice/ice_rxtx_vec_common.h
> >  create mode 100644 drivers/net/ice/ice_rxtx_vec_sse.c
> >
> > --
> > 1.9.3