> -----Original Message----- > From: dev <dev-boun...@dpdk.org> On Behalf Of Guinan Sun > Sent: Thursday, July 2, 2020 11:13 AM > To: dev@dpdk.org > Cc: Guo, Jia <jia....@intel.com>; Zhao1, Wei <wei.zh...@intel.com>; Sun, > GuinanX <guinanx....@intel.com> > Subject: [dpdk-dev] [PATCH v2 00/20] update ixgbe base code > > source code of ixgbe driver: > not-released-cid-ixgbe.2020.06.09.tar.gz released by the team which develop > basic drivers for any ixgbe NIC. > > changelog in ND share repo: > From 66d7da32d8e8 ("ixgbe-shared: Add support to clear VFMBMEM and > toggle VF's TX queues") To 7f2d73c9742b ("ixgbe-shared: check Host > Interface Return Status for Shadow RAM Write command for X550") > v2: > * Remove codes about IXGBE_NVMUPD_SUPPORT. > * Remove codes about PREBOOT_SUPPORT. > * Remove codes about IXGBE_SFP_DETECT_RETRIES. > * Remove codes about IXGBE_EEPROM_GRANT_ATTEMPTS. > * Remove codes about IXGBE_VFWRITE_REG. > * Remove some useless defines. > * Modify commit messages. > * Split some patch to two patches and Merge some patches to one patch. > * Update README. > * Rebase > > Guinan Sun (20): > net/ixgbe/base: toggle VF's Tx queues > net/ixgbe/base: add support to clear VFMBMEM > net/ixgbe/base: fix host interface shadow RAM read > net/ixgbe/base: change flow for "Apply Update" command > net/ixgbe/base: fix x550em 10G NIC link status report > net/ixgbe/base: resolve infinite recursion on PCIe link down > net/ixgbe/base: added register definitions for NVM update > net/ixgbe/base: cleanup spelling mistakes in comments > net/ixgbe/base: remove whitespace in function comments > net/ixgbe/base: move increments after evaluations > net/ixgbe/base: create dedicated func to restart auto nego > net/ixgbe/base: modify coding style > net/ixgbe/base: remove unnecessary log message FC autonego > net/ixgbe/base: initialize data field in struct buffer > net/ixgbe/base: improve log about autonego being disabled > net/ixgbe/base: add ipv6 mask for FDIR feature > net/ixgbe/base: remove default advertising for x550 2.5G/5G > net/ixgbe/base: check host interface return status > net/ixgbe/base: cleanup pre-processor tags > net/ixgbe/base: update version > > drivers/net/ixgbe/base/README | 2 +- > drivers/net/ixgbe/base/ixgbe_82598.c | 238 ++--- > drivers/net/ixgbe/base/ixgbe_82599.c | 397 ++++---- > drivers/net/ixgbe/base/ixgbe_api.c | 879 ++++++++--------- > drivers/net/ixgbe/base/ixgbe_api.h | 1 + > drivers/net/ixgbe/base/ixgbe_common.c | 1110 +++++++++++----------- > drivers/net/ixgbe/base/ixgbe_common.h | 3 +- > drivers/net/ixgbe/base/ixgbe_dcb.c | 6 +- > drivers/net/ixgbe/base/ixgbe_dcb_82598.c | 2 +- > drivers/net/ixgbe/base/ixgbe_dcb_82599.c | 2 +- > drivers/net/ixgbe/base/ixgbe_hv_vf.c | 20 +- > drivers/net/ixgbe/base/ixgbe_mbx.c | 285 +++--- > drivers/net/ixgbe/base/ixgbe_mbx.h | 1 + > drivers/net/ixgbe/base/ixgbe_phy.c | 488 +++++----- > drivers/net/ixgbe/base/ixgbe_phy.h | 3 +- > drivers/net/ixgbe/base/ixgbe_type.h | 26 +- > drivers/net/ixgbe/base/ixgbe_vf.c | 170 ++-- > drivers/net/ixgbe/base/ixgbe_x540.c | 190 ++-- > drivers/net/ixgbe/base/ixgbe_x550.c | 527 +++++----- > 19 files changed, 2218 insertions(+), 2132 deletions(-) > > -- > 2.17.1 Applied to dpdk-next-net-intel. Thanks Qi