mbox series

[net-next,00/12,pull,request] 40GbE Intel Wired LAN Driver Updates 2018-02-12

Message ID 20180212204649.24178-1-jeffrey.t.kirsher@intel.com
Headers show
Series 40GbE Intel Wired LAN Driver Updates 2018-02-12 | expand

Message

Kirsher, Jeffrey T Feb. 12, 2018, 8:46 p.m. UTC
This series contains updates to i40e and i40evf.

Alan fixes a spelling mistake in code comments.  Fixes an issue on older
firmware versions or NPAR enabled PFs which do not support the
I40E_FLAG_DISABLE_FW_LLDP flag and would get into a situation where any
attempt to change any priv flag would be forbidden.

Alex got busy with the ITR code and made several cleanups and fixes so
that we can more easily understand what is going on.  The fixes included
a computational fix when determining the register offset, as well as a
fix for unnecessarily toggling the CLEARPBA bit which could lead to
potential lost events if auto-masking is not enabled.

Filip adds a necessary delay to recover after a EMP reset when using
firmware version 4.33.

Paweł adds a warning message for MFP devices when the link-down-on-close
flag is set because it may affect other partitions.

The following are changes since commit 9a61df9e5f7471fe5be3e02bd0bed726b2761a54:
  Merge tag 'kbuild-v4.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE

Alan Brady (2):
  i40e: fix typo in function description
  i40e: use changed_flags to check I40E_FLAG_DISABLE_FW_LLDP

Alexander Duyck (8):
  i40e/i40evf: Only track one ITR setting per ring instead of Tx/Rx
  i40e/i40evf: Clean up logic for adaptive ITR
  i40e/i40evf: Clean-up of bits related to using q_vector->reg_idx
  i40e/i40evf: Don't bother setting the CLEARPBA bit
  i40e/i40evf: Use usec value instead of reg value for ITR defines
  i40evf: Correctly populate rxitr_idx and txitr_idx
  i40e/i40evf: Split container ITR into current_itr and target_itr
  i40e/i40evf: Add support for new mechanism of updating adaptive ITR

Filip Sadowski (1):
  i40e: Add delay after EMP reset for firmware to recover

Paweł Jabłoński (1):
  i40e: Warn when setting link-down-on-close while in MFP

 drivers/net/ethernet/intel/i40e/i40e.h             |   3 +-
 drivers/net/ethernet/intel/i40e/i40e_debugfs.c     |  12 +-
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c     |  81 ++--
 drivers/net/ethernet/intel/i40e/i40e_main.c        |  54 ++-
 drivers/net/ethernet/intel/i40e/i40e_txrx.c        | 421 +++++++++++++-------
 drivers/net/ethernet/intel/i40e/i40e_txrx.h        |  68 ++--
 drivers/net/ethernet/intel/i40evf/i40e_txrx.c      | 425 ++++++++++++++-------
 drivers/net/ethernet/intel/i40evf/i40e_txrx.h      |  67 ++--
 drivers/net/ethernet/intel/i40evf/i40evf.h         |   3 +-
 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c |  46 +--
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |  22 +-
 .../net/ethernet/intel/i40evf/i40evf_virtchnl.c    |  24 +-
 12 files changed, 769 insertions(+), 457 deletions(-)

Comments

David Miller Feb. 13, 2018, 1:04 a.m. UTC | #1
From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Date: Mon, 12 Feb 2018 12:46:37 -0800

> This series contains updates to i40e and i40evf.
 ...
> The following are changes since commit 9a61df9e5f7471fe5be3e02bd0bed726b2761a54:
>   Merge tag 'kbuild-v4.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
> and are available in the git repository at:
>   git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE

Looks good, pulled, thanks Jeff.