From patchwork Sat Sep 5 02:49:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guinan Sun X-Patchwork-Id: 76591 Return-Path: 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 E803EA04C5; Sat, 5 Sep 2020 04:59:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 392521B952; Sat, 5 Sep 2020 04:59:42 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id D136E2BF1 for ; Sat, 5 Sep 2020 04:59:39 +0200 (CEST) IronPort-SDR: ExhIpd/lkOpU/aRMhtwWP36Hpy5Zwh8B+TD2AcOK0yK5zXzWkDEo9vOvLGfbF3+LJAnLgUgNQn RIe6DlD34PwA== X-IronPort-AV: E=McAfee;i="6000,8403,9734"; a="137886672" X-IronPort-AV: E=Sophos;i="5.76,392,1592895600"; d="scan'208";a="137886672" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Sep 2020 19:59:38 -0700 IronPort-SDR: C76SYzOe0CF0PjIKNF7ZkqmKT/VO9wg89apveOtMb0lzADdIR7jSGOquenlMoeDVc3ANKHpIKT XssP4LS0Gmow== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,392,1592895600"; d="scan'208";a="406052685" Received: from unknown (HELO localhost.localdomain) ([10.239.255.52]) by fmsmga001.fm.intel.com with ESMTP; 04 Sep 2020 19:59:37 -0700 From: Guinan Sun To: dev@dpdk.org Cc: Beilei Xing , Qi Zhang , Qiming Yang , Guinan Sun Date: Sat, 5 Sep 2020 02:49:29 +0000 Message-Id: <20200905024938.14609-1-guinanx.sun@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH 0/9] update i40e 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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") Guinan Sun (9): net/i40e/base: add VLAN field for input set net/i40e/base: update FW API version 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 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 ++ drivers/net/i40e/base/i40e_register.h | 3 + drivers/net/i40e/base/i40e_type.h | 2 + 7 files changed, 103 insertions(+), 17 deletions(-) Acked-by: Qi Zhang