This series contains updates to ice driver only. Chinh adds retrying of sending some AQ commands when receiving EBUSY error.
Victor modifies how nodes are added to reduce stack usage. Ani renames some variables to either follow spec naming or to be inline with naming in the rest of the driver. Ignores EMODE error as there are cases where this error is expected. Performs some cleanup such as removing unnecessary checks, doing variable assignments over copies, and removing unneeded variables. Revises some error codes returned in link settings to be more appropriate. He also implements support for new firmware option to get default link configuration which accounts for any needed NVM based overrides for PHY configuration. He also removes the rx_gro_dropped stat as the value no longer changes. Jeb removes setting specific link modes on firmwares that no longer require it. Brett removes unnecessary checks when adding and removing VLANs. Tony fixes a checkpatch warning for unnecessary blank line. The following are changes since commit 3cd52c1e32fe7dfee09815ced702db9ee9f84ec9: net: fealnx: use module_pci_driver to simplify the code and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE Anirudh Venkataramanan (10): ice: Align macro names to the specification ice: Ignore EMODE return for opcode 0x0605 ice: Remove unnecessary checker loop ice: Rename a couple of variables ice: Fix error return codes in ice_set_link_ksettings ice: Replace some memsets and memcpys with assignment ice: Use default configuration mode for PHY configuration ice: Remove unnecessary variable ice: Use local variable instead of pointer derefs ice: Remove rx_gro_dropped stat Brett Creeley (1): ice: Remove unnecessary checks in add/kill_vid ndo ops Chinh T Cao (1): ice: Re-send some AQ commands, as result of EBUSY AQ error Jeb Cramer (1): ice: Limit forced overrides based on FW version Tony Nguyen (1): ice: Remove unnecessary blank line Victor Raj (1): ice: Modify recursive way of adding nodes drivers/net/ethernet/intel/ice/ice.h | 1 - .../net/ethernet/intel/ice/ice_adminq_cmd.h | 20 ++- drivers/net/ethernet/intel/ice/ice_common.c | 139 ++++++++++++--- drivers/net/ethernet/intel/ice/ice_common.h | 4 + drivers/net/ethernet/intel/ice/ice_controlq.c | 2 +- drivers/net/ethernet/intel/ice/ice_ethtool.c | 165 ++++++++---------- drivers/net/ethernet/intel/ice/ice_lib.c | 37 ++++ drivers/net/ethernet/intel/ice/ice_lib.h | 2 + drivers/net/ethernet/intel/ice/ice_main.c | 135 ++++++-------- drivers/net/ethernet/intel/ice/ice_sched.c | 130 ++++++++------ drivers/net/ethernet/intel/ice/ice_txrx.h | 1 - drivers/net/ethernet/intel/ice/ice_type.h | 5 + 12 files changed, 391 insertions(+), 250 deletions(-) -- 2.26.2