netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next 00/17][pull request] 40GbE Intel Wired LAN Driver Updates 2016-10-28
@ 2016-10-29  7:30 Jeff Kirsher
  2016-10-29  7:30 ` [net-next 01/17] i40e: Fix client interaction Jeff Kirsher
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Jeff Kirsher @ 2016-10-29  7:30 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann, jogreene,
	guru.anbalagane

This series contains updates to i40e and i40evf only.

Carolyn provides a couple of fixes, first resolving a problem in the
client interface that was causing random stack traces in the RDMA driver
which was due to a timing related NULL pointer dereference.  Fixed a
problem where it could take a very long time to print the link down
notification, by changing how often we update link info from firmware.

Alex provides a number of changes, first is a re-write of the bust wait
loop in the Flow Director transmit function to reduce code size.  Cleans
up unused code in favor of the same functionality which can be inlined.
Dropped the functionality for SCTP since we cannot currently support it.
Cleans up redundant code in the receive clean-up path.  Finally cleaned
up the convoluted configuration for how the driver handled the debug
flags contained in msg_level.

Filip fixes an incorrect bit mask which was being used for testing the
"get link status".  Cleaned up a workaround that is no longer needed
for production NICs and was causing frames to pass while disregarding
the VLAN tagging.

Mitch brings another fix for the client interface supporting the VF RDMA
driver to allow clients to recover from reset by re-opening existing
clients.

Alan fixes a bug in which a "perfect storm" can occur and cause interrupts
to fail to be correctly affinitized.

Lihong fixes a confusing dmesg reported when users were using ethtool -L
option.

The following are changes since commit b09edbd07f876c9f7046c4aae1831e58919cffea:
  net caif: insert missing spaces in pr_* messages and unbreak multi-line strings
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE

Alan Brady (1):
  i40e/i40evf: fix interrupt affinity bug

Alexander Duyck (5):
  i40e: Rewrite Flow Director busy wait loop
  i40e: Remove unused function i40e_vsi_lookup
  i40e: Drop code for unsupported flow types
  i40e: Drop redundant Rx descriptor processing code
  i40e: Clean up handling of msglevel flags and debug parameter

Bimmy Pujari (2):
  i40e/i40evf: Changed version from 1.6.16 to 1.6.19
  i40e/i40evf: Changed version from 1.6.19 to 1.6.21

Carolyn Wyborny (2):
  i40e: Fix client interaction
  i40e: Fix for long link down notification time

David Ertman (1):
  i40e: Fix bit logic error in failure case

Filip Sadowski (2):
  i40e: Bit test mask correction
  i40e: Removal of workaround for simple MAC address filter deletion

Joe Perches (1):
  i40e: Make struct i40e_stats const

Lihong Yang (1):
  i40e: fix confusing dmesg info for ethtool -L option

Mitch Williams (1):
  i40e: reopen client after reset

Preethi Banala (1):
  i40e: group base mode VF offload flags

 drivers/net/ethernet/intel/i40e/i40e.h            |   4 +-
 drivers/net/ethernet/intel/i40e/i40e_client.c     |  85 +++-----------
 drivers/net/ethernet/intel/i40e/i40e_client.h     |   2 -
 drivers/net/ethernet/intel/i40e/i40e_common.c     |   7 +-
 drivers/net/ethernet/intel/i40e/i40e_debugfs.c    |  19 ---
 drivers/net/ethernet/intel/i40e/i40e_ethtool.c    |   9 +-
 drivers/net/ethernet/intel/i40e/i40e_main.c       | 136 ++++++++++------------
 drivers/net/ethernet/intel/i40e/i40e_txrx.c       |  98 +++++++---------
 drivers/net/ethernet/intel/i40e/i40e_virtchnl.h   |   4 +
 drivers/net/ethernet/intel/i40evf/i40e_txrx.c     |  49 +++++---
 drivers/net/ethernet/intel/i40evf/i40e_virtchnl.h |   4 +
 drivers/net/ethernet/intel/i40evf/i40evf.h        |   3 +-
 drivers/net/ethernet/intel/i40evf/i40evf_main.c   |  73 ++++++++----
 13 files changed, 232 insertions(+), 261 deletions(-)

-- 
2.7.4

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

end of thread, other threads:[~2016-10-29 20:21 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-29  7:30 [net-next 00/17][pull request] 40GbE Intel Wired LAN Driver Updates 2016-10-28 Jeff Kirsher
2016-10-29  7:30 ` [net-next 01/17] i40e: Fix client interaction Jeff Kirsher
2016-10-29  7:30 ` [net-next 02/17] i40e: Rewrite Flow Director busy wait loop Jeff Kirsher
2016-10-29  7:30 ` [net-next 03/17] i40e: Bit test mask correction Jeff Kirsher
2016-10-29  7:30 ` [net-next 04/17] i40e: Remove unused function i40e_vsi_lookup Jeff Kirsher
2016-10-29  7:30 ` [net-next 05/17] i40e: Drop code for unsupported flow types Jeff Kirsher
2016-10-29  7:30 ` [net-next 06/17] i40e: reopen client after reset Jeff Kirsher
2016-10-29  7:30 ` [net-next 07/17] i40e: group base mode VF offload flags Jeff Kirsher
2016-10-29  7:30 ` [net-next 08/17] i40e/i40evf: fix interrupt affinity bug Jeff Kirsher
2016-10-29  7:30 ` [net-next 09/17] i40e/i40evf: Changed version from 1.6.16 to 1.6.19 Jeff Kirsher
2016-10-29  7:30 ` [net-next 10/17] i40e: Make struct i40e_stats const Jeff Kirsher
2016-10-29  7:30 ` [net-next 11/17] i40e: fix confusing dmesg info for ethtool -L option Jeff Kirsher
2016-10-29  7:30 ` [net-next 12/17] i40e: Drop redundant Rx descriptor processing code Jeff Kirsher
2016-10-29  7:30 ` [net-next 13/17] i40e: Fix for long link down notification time Jeff Kirsher
2016-10-29  7:30 ` [net-next 14/17] i40e: Removal of workaround for simple MAC address filter deletion Jeff Kirsher
2016-10-29  7:30 ` [net-next 15/17] i40e/i40evf: Changed version from 1.6.19 to 1.6.21 Jeff Kirsher
2016-10-29  7:30 ` [net-next 16/17] i40e: Fix bit logic error in failure case Jeff Kirsher
2016-10-29  7:30 ` [net-next 17/17] i40e: Clean up handling of msglevel flags and debug parameter Jeff Kirsher
2016-10-29 20:21 ` [net-next 00/17][pull request] 40GbE Intel Wired LAN Driver Updates 2016-10-28 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).