Message ID | 20200912030039.55273-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 94B94A04C3; Sat, 12 Sep 2020 05:19:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1F2CF1C1E7; Sat, 12 Sep 2020 05:19:39 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id CA8091C1BB for <dev@dpdk.org>; Sat, 12 Sep 2020 05:19:32 +0200 (CEST) IronPort-SDR: oMwAFC3ZqgBumg233qZEbLltyp7kHPlewWPY7SBMetzFPp3t6rBCZNZ3VjajLdaWTWquuyDNmw FIGAFWXlJg2Q== X-IronPort-AV: E=McAfee;i="6000,8403,9741"; a="158924680" X-IronPort-AV: E=Sophos;i="5.76,418,1592895600"; d="scan'208";a="158924680" 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/ECDHE-RSA-AES256-GCM-SHA384; 11 Sep 2020 20:19:26 -0700 IronPort-SDR: iVsQkiCzOaFHjSI4OnUdyXwPIPn3rViHXezTqMRLjvQkqgLO8kFx/uo9ipmEIJm7plZm3wNrnD yCO8hqNQI5kw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,418,1592895600"; d="scan'208";a="318465365" Received: from dpdk57.sh.intel.com (HELO localhost.localdomain) ([10.239.255.57]) by orsmga002.jf.intel.com with ESMTP; 11 Sep 2020 20:19:25 -0700 From: Guinan Sun <guinanx.sun@intel.com> To: dev@dpdk.org Cc: Jeff Guo <jia.guo@intel.com>, Beilei Xing <beilei.xing@intel.com>, Guinan Sun <guinanx.sun@intel.com> Date: Sat, 12 Sep 2020 03:00:32 +0000 Message-Id: <20200912030039.55273-1-guinanx.sun@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200905024938.14609-1-guinanx.sun@intel.com> References: <20200905024938.14609-1-guinanx.sun@intel.com> Subject: [dpdk-dev] [PATCH v2 0/7] 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. 12, 2020, 3 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 c0bfc1c07bb3 ("i40e-shared: Add VLAN field for input set")
To 1a82d59f0797 ("i40e-shared: Fix PHY configuration parameters when enabling EEE")
The following commits are ignored.
5b7d5a698092 ("i40e-shared: use linux packing style")
f16fa495c503 ("i40e-shared: Fix compilation issue with __packed")
c0bfc1c07bb3 ("i40e-shared: Add VLAN field for input set")
dcc3e90e9acd ("i40e-shared: enable pipe monitor thresholds")
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
---
v2:
* Remove two useless patches for dpdk.
* Modify commit message.
Guinan Sun (7):
net/i40e/base: update FW API version
net/i40e/base: fix missing function header arguments
net/i40e/base: add support for minimum rollback revision
net/i40e/base: fix Rx only 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_cmd.h | 24 +++++++-
drivers/net/i40e/base/i40e_common.c | 82 +++++++++++++++++++++----
drivers/net/i40e/base/i40e_dcb.c | 3 +-
drivers/net/i40e/base/i40e_prototype.h | 4 ++
5 files changed, 98 insertions(+), 17 deletions(-)
Comments
> -----Original Message----- > From: dev <dev-bounces@dpdk.org> On Behalf Of Guinan Sun > Sent: Saturday, September 12, 2020 11:01 AM > To: dev@dpdk.org > Cc: Guo, Jia <jia.guo@intel.com>; Xing, Beilei <beilei.xing@intel.com>; Sun, > GuinanX <guinanx.sun@intel.com> > Subject: [dpdk-dev] [PATCH v2 0/7] update i40e base code > > 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 c0bfc1c07bb3 ("i40e-shared: Add VLAN field for input set") To > 1a82d59f0797 ("i40e-shared: Fix PHY configuration parameters when enabling > EEE") > > The following commits are ignored. > 5b7d5a698092 ("i40e-shared: use linux packing style") > f16fa495c503 ("i40e-shared: Fix compilation issue with __packed") > c0bfc1c07bb3 ("i40e-shared: Add VLAN field for input set") dcc3e90e9acd > ("i40e-shared: enable pipe monitor thresholds") > Acked-by: Qi Zhang <qi.z.zhang@intel.com> > --- > v2: > * Remove two useless patches for dpdk. > * Modify commit message. > > Guinan Sun (7): > net/i40e/base: update FW API version > net/i40e/base: fix missing function header arguments > net/i40e/base: add support for minimum rollback revision > net/i40e/base: fix Rx only 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_cmd.h | 24 +++++++- > drivers/net/i40e/base/i40e_common.c | 82 +++++++++++++++++++++---- > drivers/net/i40e/base/i40e_dcb.c | 3 +- > drivers/net/i40e/base/i40e_prototype.h | 4 ++ > 5 files changed, 98 insertions(+), 17 deletions(-) > > -- > 2.17.1 V1 has been reverted from dpdk-next-net-intel. V2 has been applied to dpdk-next-intel-intel. Thanks Qi