This series contains updates to ice driver only. Bruce cleans up white space issues and fixes complaints about using bitop assignments using operands of different sizes.
Anirudh cleans up code that is no longer needed now that the firmware supports the functionality. Adds support for ethtool selftestto the ice driver, which includes testing link, interrupts, eeprom, registers and packet loopback. Also, cleaned up duplicate code. Tony implements support for toggling receive VLAN filter via ethtool. Brett bumps up the minimum receive descriptor count per queue to resolve dropped packets. Refactored the interrupt tracking for the ice driver to resolve issues seen with the co-existence of features and SR-IOV, so instead of having a hardware IRQ tracker and a software IRQ tracker, simply use one tracker. Also adds a helper function to trigger software interrupts. Mitch changes how Malicious Driver Detection (MDD) events are handled, to ensure all VFs checked for MDD events and just log the event instead of disabling the VF, which was preventing proper release of resources if the VF is rebooted or the VF driver reloaded. Dave cleans up a redundant call to register LLDP MIB change events. Dan adds support to retrieve the current setting of firmware logging from the hardware to properly initialize the hardware structure. The following are changes since commit 36f18439ea16ebb670720602bfbf47c95a6691d4: macvlan: Replace strncpy() by strscpy() and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE Anirudh Venkataramanan (3): ice: Remove direct write for GLLAN_RCTL_0 ice: Add handler for ethtool selftest ice: Minor cleanup in ice_switch.h Brett Creeley (4): ice: Set minimum default Rx descriptor count to 512 ice: Don't call ice_cfg_itr() for SR-IOV ice: Refactor interrupt tracking ice: Add a helper to trigger software interrupt Bruce Allan (2): ice: Fix LINE_SPACING style issue ice: Resolve static analysis warning Dan Nowlin (1): ice: Add ice_get_fw_log_cfg to init FW logging Dave Ertman (1): ice: Remove redundant and premature event config Md Fahad Iqbal Polash (1): ice: Configure RSS LUT key only if RSS is enabled Mitch Williams (2): ice: Check all VFs for MDD activity, don't disable ice: Change message level Tony Nguyen (1): ice: Implement toggling ethtool rx-vlan-filter drivers/net/ethernet/intel/ice/ice.h | 48 +- .../net/ethernet/intel/ice/ice_adminq_cmd.h | 24 + drivers/net/ethernet/intel/ice/ice_common.c | 75 ++- drivers/net/ethernet/intel/ice/ice_common.h | 5 + drivers/net/ethernet/intel/ice/ice_ethtool.c | 601 +++++++++++++++++- .../net/ethernet/intel/ice/ice_hw_autogen.h | 4 + drivers/net/ethernet/intel/ice/ice_lib.c | 245 ++++--- drivers/net/ethernet/intel/ice/ice_lib.h | 2 + drivers/net/ethernet/intel/ice/ice_main.c | 159 +++-- drivers/net/ethernet/intel/ice/ice_nvm.c | 31 + drivers/net/ethernet/intel/ice/ice_status.h | 1 + drivers/net/ethernet/intel/ice/ice_switch.h | 7 +- drivers/net/ethernet/intel/ice/ice_txrx.c | 8 +- drivers/net/ethernet/intel/ice/ice_type.h | 1 + .../net/ethernet/intel/ice/ice_virtchnl_pf.c | 186 +++++- .../net/ethernet/intel/ice/ice_virtchnl_pf.h | 8 + 16 files changed, 1129 insertions(+), 276 deletions(-) -- 2.21.0