From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 897E71B1A4 for ; Wed, 10 Jan 2018 10:29:06 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Jan 2018 01:29:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,339,1511856000"; d="scan'208";a="25992671" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga002.jf.intel.com with ESMTP; 10 Jan 2018 01:29:05 -0800 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 10 Jan 2018 01:29:04 -0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.213]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.159]) with mapi id 14.03.0319.002; Wed, 10 Jan 2018 17:29:02 +0800 From: "Zhang, Helin" To: "Xing, Beilei" , "Zhang, Qi Z" CC: "dev@dpdk.org" , "Wu, Jingjing" Thread-Topic: [PATCH v3 00/24] net/i40e: update base code Thread-Index: AQHTicSMpODCCt+itk2IOB4/Oqzqa6Nslm9wgABAyQA= Date: Wed, 10 Jan 2018 09:29:02 +0000 Message-ID: References: <1515529822-10732-1-git-send-email-qi.z.zhang@intel.com> <94479800C636CB44BD422CB454846E0132089BEC@SHSMSX101.ccr.corp.intel.com> In-Reply-To: <94479800C636CB44BD422CB454846E0132089BEC@SHSMSX101.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 v3 00/24] net/i40e: update base code 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: , X-List-Received-Date: Wed, 10 Jan 2018 09:29:07 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Xing, Beilei > Sent: Wednesday, January 10, 2018 1:37 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Wu, Jingjing > Subject: Re: [dpdk-dev] [PATCH v3 00/24] net/i40e: update base code >=20 >=20 >=20 > > -----Original Message----- > > From: Zhang, Qi Z > > Sent: Wednesday, January 10, 2018 4:30 AM > > To: Xing, Beilei > > Cc: dev@dpdk.org; Wu, Jingjing ; Zhang, Qi Z > > > > Subject: [PATCH v3 00/24] net/i40e: update base code > > > > The patchset update i40e base code base on latest CID drop cid- > > i40e.2018.01.02.tar.gz, couple issues are fixed, include: > > NVM lock issue, LED blink issue, LLDP configuration read issue > > unaligned data issue on non-x86 platform and some compile issue with > > GCC 6.3. Aslo a new AQ command that help software to get access DCB > > paramters is added, AQ command for NVM update is enhanced to support > > preservation flag for X722 device, and it also allow retreval of > > AdminQ events as a result of AdminQ commands send to firmware. > > Becides, the patchset also covers couple code clean. > > > > v3: > > - rebase to next-net-intel again > > > > v2: > > - rebase to next-net-intel > > - fix some typo > > - merge code clean into single patch > > - add missing fix line > > > > > > Qi Zhang (24): > > net/i40e/base: add new PHY type > > net/i40e/base: add capability macros > > net/i40e/base: add (Q)SFP module memory access definitions > > net/i40e/base: release spinlock before function returns > > net/i40e/base: retry AQC to overcome IRCRead hangs > > net/i40e/base: add byte swaps in PHY register access > > net/i40e/base: add macro for 25G device > > net/i40e/base: code refactoring for LED blink > > net/i40e/base: add link speed convert function > > net/i40e/base: add AQ command for DCB parameters > > net/i40e/base: fix NVM lock > > net/i40e/base: code clean > > net/i40e/base: add NVM update preservation flags > > net/i40e/base: enable AQ event get in NVM update > > net/i40e/base: fix link LED blink > > net/i40e/base: add defines for flat NVM > > net/i40e: enhanced loopback AQ command > > net/i40e/base: add rearrange process AQ command > > net/i40e/base: add AQ critical error type > > net/i40e/base: fix compile issue for GCC 6.3 > > net/i40e/base: fix reading LLDP configuration > > net/i40e/base: fix unaligned data issue > > net/i40e: rename a field > > net/i40e/base: update README file > > > > drivers/net/i40e/base/README | 2 +- > > drivers/net/i40e/base/i40e_adminq.c | 44 ++-- > > drivers/net/i40e/base/i40e_adminq.h | 3 - > > drivers/net/i40e/base/i40e_adminq_cmd.h | 47 +++- > > drivers/net/i40e/base/i40e_common.c | 388 +++++++++++++++---------= --- > > drivers/net/i40e/base/i40e_dcb.c | 88 ++++++- > > drivers/net/i40e/base/i40e_devids.h | 3 + > > drivers/net/i40e/base/i40e_diag.c | 17 +- > > drivers/net/i40e/base/i40e_hmc.c | 1 - > > drivers/net/i40e/base/i40e_nvm.c | 447 ++++++++++++++++++------= ---- > > ---- > > drivers/net/i40e/base/i40e_prototype.h | 49 +++- > > drivers/net/i40e/base/i40e_status.h | 1 + > > drivers/net/i40e/base/i40e_type.h | 56 +++- > > drivers/net/i40e/base/virtchnl.h | 12 +- > > drivers/net/i40e/i40e_ethdev.c | 4 +- > > drivers/net/i40e/i40e_ethdev_vf.c | 2 +- > > drivers/net/i40e/i40e_pf.c | 4 +- > > 17 files changed, 753 insertions(+), 415 deletions(-) > > > > -- > > 2.14.1 >=20 > Acked-by: Beilei Xing Applied to dpdk-next-net-intel, with minor commit log changes. Thanks! /Helin