Message ID | 20200903044856.61961-1-guinanx.sun@intel.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6CD56A04D7; Thu, 3 Sep 2020 06:55:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EA8DB1C0C0; Thu, 3 Sep 2020 06:55:24 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 7274F1C0B1 for <dev@dpdk.org>; Thu, 3 Sep 2020 06:55:23 +0200 (CEST) IronPort-SDR: QGQOJm7KcpxfIJ2Xz+/HrUMgKavoOmnxrxUF9YhxFWE45WIU7o2F8LA1Px0OZkD8f2+CpaFXTD VbZLXikwjHaA== X-IronPort-AV: E=McAfee;i="6000,8403,9732"; a="221732222" X-IronPort-AV: E=Sophos;i="5.76,385,1592895600"; d="scan'208";a="221732222" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Sep 2020 21:55:22 -0700 IronPort-SDR: bO5nDd5/7DgAcj/byZdDJKAC2nP8btHoGLSoRma5GfGSTDwAZA8vwF1HnTYBeIehgPl0KOe03t M9h1phhL1ytA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,385,1592895600"; d="scan'208";a="315349236" Received: from dpdk.sh.intel.com ([10.239.255.12]) by orsmga002.jf.intel.com with ESMTP; 02 Sep 2020 21:55:20 -0700 From: Guinan Sun <guinanx.sun@intel.com> To: dev@dpdk.org Cc: Beilei Xing <beilei.xing@intel.com>, Jeff Guo <jia.guo@intel.com>, Guinan Sun <guinanx.sun@intel.com> Date: Thu, 3 Sep 2020 04:48:41 +0000 Message-Id: <20200903044856.61961-1-guinanx.sun@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200727053451.22214-1-guinanx.sun@intel.com> References: <20200727053451.22214-1-guinanx.sun@intel.com> Subject: [dpdk-dev] [PATCH v3 00/15] update i40e base code 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> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
update i40e base code
|
|
Message
Guinan Sun
Sept. 3, 2020, 4:48 a.m. UTC
update i40e base code. source code of i40e driver: cid-i40e.2020.08.27.tar.gz dropped by the team which develop basic drivers for any i40e NIC. changelog in ND share repo: From fc99a1143d3f ("i40e-shared: FEC on/off support flag for X722") To 1a82d59f0797 ("i40e-shared: Fix PHY configuration parameters when enabling EEE") The following commits are ignored. ea2cd04e5db1 ("i40e-shared: do AQ calls without sleeping by default") 4eec86f12992 ("i40e-shared: Fix undeclared i40e_asq_send_command() function") 9d60cec99eb7 ("i40e-shared: Send rx ctl write command in atomic context") a204afdc1cad ("i40e-shared: Send uc/mc commands in atomic context") d22f8cb2a111 ("i40e-shared: Send commands in atomic context") 136a7d931a45 ("i40e-shared: Fix improper preprocessor conditional") 5b7d5a698092 ("i40e-shared: use linux packing style") f16fa495c503 ("i40e-shared: Fix compilation issue with __packed") Guinan Sun (15): net/i40e/base: enable FEC on/off flag setting for X722 net/i40e/base: add PTYPE definition net/i40e/base: add new custom cloud filter types net/i40e/base: update FW API version to 1.12 net/i40e/base: fix possible uninitialized variable net/i40e/base: support unused ports disabling net/i40e/base: replace AQ command for NVM update net/i40e/base: add VLAN field for input set net/i40e/base: enable pipe monitor thresholds net/i40e/base: fix missing function header arguments net/i40e/base: add support for Minimum Rollback Revision net/i40e/base: fix Rx only mode for unicast promisc on VLAN net/i40e/base: add EEE LPI status check for X722 adapters net/i40e/base: fix PHY config param when enabling EEE net/i40e/base: update version drivers/net/i40e/base/README | 2 +- drivers/net/i40e/base/i40e_adminq.c | 6 + drivers/net/i40e/base/i40e_adminq_cmd.h | 41 ++++++- drivers/net/i40e/base/i40e_common.c | 143 ++++++++++++++++++------ drivers/net/i40e/base/i40e_dcb.c | 4 +- drivers/net/i40e/base/i40e_prototype.h | 10 +- drivers/net/i40e/base/i40e_register.h | 3 + drivers/net/i40e/base/i40e_type.h | 7 +- 8 files changed, 172 insertions(+), 44 deletions(-)
Comments
On 9/3/2020 5:48 AM, Guinan Sun wrote: > update i40e base code. > > source code of i40e driver: > cid-i40e.2020.08.27.tar.gz dropped by the team which develop > basic drivers for any i40e NIC. > > changelog in ND share repo: > From fc99a1143d3f ("i40e-shared: FEC on/off support flag for X722") > To 1a82d59f0797 ("i40e-shared: Fix PHY configuration parameters when enabling EEE") Hi Guinan, The v2 of this patch has been merged to next-net-intel and pulled by next-net, it is now in the next-net repo. I can see v3 is slightly newer version, I didn't check the details but does it can you make updates as incremental set on top of latest head (v2 of this set)? > > The following commits are ignored. > ea2cd04e5db1 ("i40e-shared: do AQ calls without sleeping by default") > 4eec86f12992 ("i40e-shared: Fix undeclared i40e_asq_send_command() function") > 9d60cec99eb7 ("i40e-shared: Send rx ctl write command in atomic context") > a204afdc1cad ("i40e-shared: Send uc/mc commands in atomic context") > d22f8cb2a111 ("i40e-shared: Send commands in atomic context") > 136a7d931a45 ("i40e-shared: Fix improper preprocessor conditional") > 5b7d5a698092 ("i40e-shared: use linux packing style") > f16fa495c503 ("i40e-shared: Fix compilation issue with __packed") > > Guinan Sun (15): > net/i40e/base: enable FEC on/off flag setting for X722 > net/i40e/base: add PTYPE definition > net/i40e/base: add new custom cloud filter types > net/i40e/base: update FW API version to 1.12 > net/i40e/base: fix possible uninitialized variable > net/i40e/base: support unused ports disabling > net/i40e/base: replace AQ command for NVM update > net/i40e/base: add VLAN field for input set > net/i40e/base: enable pipe monitor thresholds > net/i40e/base: fix missing function header arguments > net/i40e/base: add support for Minimum Rollback Revision > net/i40e/base: fix Rx only mode for unicast promisc on VLAN > net/i40e/base: add EEE LPI status check for X722 adapters > net/i40e/base: fix PHY config param when enabling EEE > net/i40e/base: update version <...>
Hi Ferruh > -----Original Message----- > From: Ferruh Yigit [mailto:ferruh.yigit@intel.com] > Sent: Thursday, September 3, 2020 10:31 PM > To: Sun, GuinanX <guinanx.sun@intel.com>; dev@dpdk.org > Cc: Xing, Beilei <beilei.xing@intel.com>; Guo, Jia <jia.guo@intel.com> > Subject: Re: [dpdk-dev] [PATCH v3 00/15] update i40e base code > > On 9/3/2020 5:48 AM, Guinan Sun wrote: > > update i40e base code. > > > > source code of i40e driver: > > cid-i40e.2020.08.27.tar.gz dropped by the team which develop basic > > drivers for any i40e NIC. > > > > changelog in ND share repo: > > From fc99a1143d3f ("i40e-shared: FEC on/off support flag for X722") To > > 1a82d59f0797 ("i40e-shared: Fix PHY configuration parameters when > > enabling EEE") > > Hi Guinan, > > The v2 of this patch has been merged to next-net-intel and pulled by next- > net, it is now in the next-net repo. > > I can see v3 is slightly newer version, I didn't check the details but does it > can you make updates as incremental set on top of latest head (v2 of this > set)? I have synced with zhangqi. The patch status has been changed to superseded. The share code of the new drop will send a new version. > > > > > > > The following commits are ignored. > > ea2cd04e5db1 ("i40e-shared: do AQ calls without sleeping by default") > > 4eec86f12992 ("i40e-shared: Fix undeclared i40e_asq_send_command() > > function") > > 9d60cec99eb7 ("i40e-shared: Send rx ctl write command in atomic > > context") a204afdc1cad ("i40e-shared: Send uc/mc commands in atomic > > context") > > d22f8cb2a111 ("i40e-shared: Send commands in atomic context") > > 136a7d931a45 ("i40e-shared: Fix improper preprocessor conditional") > > 5b7d5a698092 ("i40e-shared: use linux packing style") > > f16fa495c503 ("i40e-shared: Fix compilation issue with __packed") > > > > Guinan Sun (15): > > net/i40e/base: enable FEC on/off flag setting for X722 > > net/i40e/base: add PTYPE definition > > net/i40e/base: add new custom cloud filter types > > net/i40e/base: update FW API version to 1.12 > > net/i40e/base: fix possible uninitialized variable > > net/i40e/base: support unused ports disabling > > net/i40e/base: replace AQ command for NVM update > > net/i40e/base: add VLAN field for input set > > net/i40e/base: enable pipe monitor thresholds > > net/i40e/base: fix missing function header arguments > > net/i40e/base: add support for Minimum Rollback Revision > > net/i40e/base: fix Rx only mode for unicast promisc on VLAN > > net/i40e/base: add EEE LPI status check for X722 adapters > > net/i40e/base: fix PHY config param when enabling EEE > > net/i40e/base: update version > > <...>