From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: davem@davemloft.net
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>,
netdev@vger.kernel.org, nhorman@redhat.com, sassmann@redhat.com,
jogreene@redhat.com, guru.anbalagane@oracle.com
Subject: [net-next 00/17][pull request] 40GbE Intel Wired LAN Driver Updates 2016-10-28
Date: Sat, 29 Oct 2016 00:30:41 -0700 [thread overview]
Message-ID: <1477726258-111563-1-git-send-email-jeffrey.t.kirsher@intel.com> (raw)
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
next reply other threads:[~2016-10-29 7:31 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-29 7:30 Jeff Kirsher [this message]
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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1477726258-111563-1-git-send-email-jeffrey.t.kirsher@intel.com \
--to=jeffrey.t.kirsher@intel.com \
--cc=davem@davemloft.net \
--cc=guru.anbalagane@oracle.com \
--cc=jogreene@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=nhorman@redhat.com \
--cc=sassmann@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).