This series contains updates to the ice driver only. Brett cleans up debug print messages by removing useless or duplicate messages, and make sure we assign the hardware head pointer to head instead of the software head pointer. Resolved an issue when disabling SRIOV we were trying to stop queues multiple times, so make sure we disable SRIOV before stopping transmit and receive queues for VF.
Tony fixes a potential NULL pointer dereference during a VF reset. Anirudh resolves an issue where we were releasing the VSI before removing the VSI scheduler node, which was resulting in an error "Failed to set LAN Tx queue context, error: -1". Also fixed the guaranteed number of VSIs available and used by discovering the device capabilities to determine the 'guar_num_vsi' per function, rather than always using the theoretical max number of VSIs every time. Dave avoids a deadlock by nesting RTNL locking, so added a boolean to determine if the RTNL lock is already held. Lev fixes bad mask values which would break compilation. Piotr increases the receive queue disable timeout since it can take additional time to finish all pending queue requests. Usha resolves an issue of VLAN priority tagged traffic not appearing on all traffic classes, which was causing ETS bandwidth shaping to not work as expected. Henry fixes the reset path to cleanup the old scheduler tree before rebuilding it. Md Fahad removes a unnecessary check which was causing a driver load error on platforms with more than 128 cores. The following are changes since commit 3e536cff34244959c81575733c9ca60633f74e1b: net: phy: check if advertising is zero using linkmode_empty and are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE Anirudh Venkataramanan (2): ice: Remove node before releasing VSI ice: Calculate guaranteed VSIs per function and use it Brett Creeley (2): ice: Fix debug print in ice_tx_timeout ice: Call pci_disable_sriov before stopping queues for VF Dave Ertman (1): ice: Avoid nested RTNL locking in ice_dis_vsi Henry Tieman (1): ice: Destroy scheduler tree in reset path Lev Faerman (1): ice: Fix NVM mask defines Md Fahad Iqbal Polash (1): ice: Remove ICE_MAX_TXQ_PER_TXQG check when configuring Tx queue Piotr Raczynski (1): ice: Increase Rx queue disable timeout Tony Nguyen (1): ice: Check for q_vector when stopping rings Usha Ketineni (1): ice: Fix to make VLAN priority tagged traffic to appear on all TCs drivers/net/ethernet/intel/ice/ice.h | 5 +- .../net/ethernet/intel/ice/ice_adminq_cmd.h | 7 +- drivers/net/ethernet/intel/ice/ice_common.c | 31 +++- .../net/ethernet/intel/ice/ice_hw_autogen.h | 3 + drivers/net/ethernet/intel/ice/ice_lib.c | 136 ++++++++++-------- drivers/net/ethernet/intel/ice/ice_main.c | 37 +++-- drivers/net/ethernet/intel/ice/ice_sched.c | 110 +++++++++++++- drivers/net/ethernet/intel/ice/ice_sched.h | 3 + drivers/net/ethernet/intel/ice/ice_type.h | 4 +- .../net/ethernet/intel/ice/ice_virtchnl_pf.c | 18 +-- 10 files changed, 265 insertions(+), 89 deletions(-) -- 2.19.1