netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next v2 00/13][pull request] 40GbE Intel Wired LAN Driver Updates 2017-08-25
@ 2017-08-25 22:00 Jeff Kirsher
  2017-08-25 22:00 ` [net-next v2 01/13] i40e/i40evf: adjust packet size to account for double VLANs Jeff Kirsher
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: Jeff Kirsher @ 2017-08-25 22:00 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann, jogreene

This series contains updates to i40e and i40evf only.

Mitch adjusts the max packet size to account for two VLAN tags.

Sudheer provides a fix to ensure that the watchdog timer is scheduled
immediately after admin queue operations are scheduled in i40evf_down().
Fixes an issue by adding locking around the admin queue command and
update of state variables so that adminq_subtask will have the accurate
information whenever it gets scheduled.

Anjali fixes a bug where the PF flag setup should happen before the VMDq
RSS queue count is initialized for VMDq VSI to get the right number of
queues for RSS in the case of x722 devices.  Fixed a problem with the
hardware ATR eviction feature where the NVM setting was incorrect.

Jake separates the flags into two types, hw_features and flags.  The
hw_features flags contain a set of features which are enabled at init
time and will not contain feature flags that can be toggled.  Everything
else will remain in the flags variable, and can be modified anytime
during run time.  We should not be directly copying a cpumask_t, since
it is bitmap and might not be copied correctly, so use cpumask_copy()
instead.

Stefan Assmann makes vf _offload_flags more "generic" by renaming it to
vf_cap_flags, which allows other capabilities besides offloading to be
added.

Alan makes it such that if adaptive-rx/tx is enabled, the user cannot
make any manual adjustments to interrupt moderation.  Also makes it so
that if ITR is disabled by adaptive-rx/tx is then enabled, ITR will be
re-enabled.

v2: Dropped patches #1 & #8 from the original patch series submission,
    while Jesse and Jake re-work their patches based on feedback from
    David Miller.  Also removed the duplicate patch 3 that was
    accidentally sent out twice in the previous submission.

The following are changes since commit 3fd87127073292538047adf1c9c757e9cab0dd56:
  strparser: initialize all callbacks
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE

Alan Brady (2):
  i40evf: use netdev variable in reset task
  i40e: prevent changing ITR if adaptive-rx/tx enabled

Anjali Singhai Jain (2):
  i40e: Fix a bug with VMDq RSS queue allocation
  i40e: Detect ATR HW Evict NVM issue and disable the feature

Jacob Keller (5):
  i40e: separate hw_features from runtime changing flags
  i40e: remove workaround for Open Firmware MAC address
  i40e/i40evf: use cmpxchg64 when updating private flags in ethtool
  i40e: move check for avoiding VID=0 filters into i40e_vsi_add_vlan
  i40e: use cpumask_copy instead of direct assignment

Mitch Williams (1):
  i40e/i40evf: adjust packet size to account for double VLANs

Stefan Assmann (1):
  i40e/i40evf: rename vf_offload_flags to vf_cap_flags in struct
    virtchnl_vf_resource

Sudheer Mogilappagari (2):
  i40evf: prevent VF close returning before state transitions to DOWN
  i40e: synchronize nvmupdate command and adminq subtask

 drivers/net/ethernet/intel/i40e/i40e.h             |  44 ++---
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c     | 154 +++++++++++------
 drivers/net/ethernet/intel/i40e/i40e_main.c        | 188 ++++++++-------------
 drivers/net/ethernet/intel/i40e/i40e_nvm.c         |   6 +
 drivers/net/ethernet/intel/i40e/i40e_ptp.c         |   6 +-
 drivers/net/ethernet/intel/i40e/i40e_txrx.h        |   3 +-
 drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c |  30 ++--
 drivers/net/ethernet/intel/i40evf/i40e_common.c    |   2 +-
 drivers/net/ethernet/intel/i40evf/i40e_txrx.h      |   5 +-
 drivers/net/ethernet/intel/i40evf/i40evf.h         |  14 +-
 drivers/net/ethernet/intel/i40evf/i40evf_ethtool.c |  41 +++--
 drivers/net/ethernet/intel/i40evf/i40evf_main.c    |  41 +++--
 .../net/ethernet/intel/i40evf/i40evf_virtchnl.c    |   4 +-
 include/linux/avf/virtchnl.h                       |   4 +-
 14 files changed, 291 insertions(+), 251 deletions(-)

-- 
2.14.1

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2017-08-26  2:41 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-25 22:00 [net-next v2 00/13][pull request] 40GbE Intel Wired LAN Driver Updates 2017-08-25 Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 01/13] i40e/i40evf: adjust packet size to account for double VLANs Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 02/13] i40evf: prevent VF close returning before state transitions to DOWN Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 03/13] i40e: Fix a bug with VMDq RSS queue allocation Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 04/13] i40e: separate hw_features from runtime changing flags Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 05/13] i40e: remove workaround for Open Firmware MAC address Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 06/13] i40e: Detect ATR HW Evict NVM issue and disable the feature Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 07/13] i40e/i40evf: use cmpxchg64 when updating private flags in ethtool Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 08/13] i40e: move check for avoiding VID=0 filters into i40e_vsi_add_vlan Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 09/13] i40e/i40evf: rename vf_offload_flags to vf_cap_flags in struct virtchnl_vf_resource Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 10/13] i40evf: use netdev variable in reset task Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 11/13] i40e: use cpumask_copy instead of direct assignment Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 12/13] i40e: prevent changing ITR if adaptive-rx/tx enabled Jeff Kirsher
2017-08-25 22:00 ` [net-next v2 13/13] i40e: synchronize nvmupdate command and adminq subtask Jeff Kirsher
2017-08-26  2:41 ` [net-next v2 00/13][pull request] 40GbE Intel Wired LAN Driver Updates 2017-08-25 David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).