Netdev List
 help / color / mirror / Atom feed
* [net-next v2 00/13][pull request] 40GbE Intel Wired LAN Driver Updates 2019-08-22
@ 2019-08-22 20:30 Jeff Kirsher
  2019-08-22 20:30 ` [net-next v2 01/13] i40e: reduce stack usage in i40e_set_fc Jeff Kirsher
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Jeff Kirsher @ 2019-08-22 20:30 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann

This series contains updates to i40e driver only.

Arnd Bergmann reduces the stack usage which was causing warnings on
32-bit architectures due to large structure sizes for 2 functions
getting inlined, so use noinline_for_stack to prevent the compilers from
combining the 2 functions.

Mauro S. M. Rodrigues fixes an issue when reading an EEPROM from SFP
modules that comply with SFF-8472 but do not implement the Digital
Diagnostic Monitoring (DDM) interface for i40e.

Huhai found we were not checking the return value for configuring the
transmit ring and continuing with XDP configuration of the transmit
ring.

Beilei fixes an issue of shifting signed 32-bit integers.

Sylwia adds support for "packet drop mode" to the MAC configuration for
admin queue command.  This bit controls the behavior when a no-drop
packet is blocking a TC queue.  Adds support for persistent LLDP by
checking the LLDP flag and reading the LLDP from the NVM when enabled.

Adrian fixes the "recovery mode" check to take into account which device
we are on, since x710 devices have 4 register values to check for status
and x722 devices only have 2 register values to check.

Piotr Azarewicz bumps the supported firmware API version to 1.9 which
extends the PHY access admin queue command support.

Jake makes sure the traffic class stats for a VEB are reset when the VEB
stats are reset.

Slawomir fixes a NULL pointer dereference where the VSI pointer was not
updated before passing it to the i40e_set_vf_mac() when the VF is in a
reset state, so wait for the reset to complete.

Grzegorz removes the i40e_update_dcb_config() which was not using the
correct NVM reads, so call i40e_init_dcb() in its place to correctly
update the DCB configuration.

Piotr Kwapulinski expands the scope of i40e_set_mac_type() since this is
needed during probe to determine if we are in recovery mode.  Fixed the
driver reset path when in recovery mode.

Marcin fixed an issue where we were breaking out of a loop too early
when trying to get the PHY capabilities.

v2: Combined patch 7 & 9 in the original series, since both patches
    bumped firmware API version.  Also combined patches 12 & 13 in the
    original series, since one increased the scope of checking for MAC
    and the follow-on patch made use of function within the new scope.

The following are changes since commit c76c992525245ec1c7b6738bf887c42099abab02:
  nexthops: remove redundant assignment to variable err
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 40GbE

Adrian Podlawski (1):
  i40e: check_recovery_mode had wrong if statement

Arnd Bergmann (1):
  i40e: reduce stack usage in i40e_set_fc

Beilei Xing (1):
  i40e: fix shifts of signed values

Grzegorz Siwik (1):
  i40e: Remove function i40e_update_dcb_config()

Jacob Keller (1):
  i40e: reset veb.tc_stats when resetting veb.stats

Marcin Formela (1):
  i40e: fix retrying in i40e_aq_get_phy_capabilities

Mauro S. M. Rodrigues (1):
  i40e: Check if transceiver implements DDM before access

Piotr Azarewicz (1):
  i40e: Update FW API version to 1.9

Piotr Kwapulinski (1):
  i40e: allow reset in recovery mode

Slawomir Laba (1):
  i40e: Fix crash caused by stress setting of VF MAC addresses

Sylwia Wnuczko (2):
  i40e: Add drop mode parameter to set mac config
  i40e: Persistent LLDP support

huhai (1):
  i40e: add check on i40e_configure_tx_ring() return value

 drivers/net/ethernet/intel/i40e/i40e_adminq.c |   4 +-
 .../net/ethernet/intel/i40e/i40e_adminq_cmd.h |  33 ++---
 drivers/net/ethernet/intel/i40e/i40e_common.c | 110 +++++++-------
 drivers/net/ethernet/intel/i40e/i40e_dcb.c    |  18 ++-
 drivers/net/ethernet/intel/i40e/i40e_dcb.h    |   2 +
 .../net/ethernet/intel/i40e/i40e_ethtool.c    |   6 +
 drivers/net/ethernet/intel/i40e/i40e_main.c   | 136 ++++++++++--------
 drivers/net/ethernet/intel/i40e/i40e_nvm.c    | 101 +++++++++++++
 .../net/ethernet/intel/i40e/i40e_prototype.h  |   8 ++
 .../net/ethernet/intel/i40e/i40e_register.h   |  30 ++--
 drivers/net/ethernet/intel/i40e/i40e_type.h   |   3 +
 .../ethernet/intel/i40e/i40e_virtchnl_pf.c    |   7 +-
 12 files changed, 323 insertions(+), 135 deletions(-)

-- 
2.21.0


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

end of thread, other threads:[~2019-08-22 22:29 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-22 20:30 [net-next v2 00/13][pull request] 40GbE Intel Wired LAN Driver Updates 2019-08-22 Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 01/13] i40e: reduce stack usage in i40e_set_fc Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 02/13] i40e: Check if transceiver implements DDM before access Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 03/13] i40e: add check on i40e_configure_tx_ring() return value Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 04/13] i40e: fix shifts of signed values Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 05/13] i40e: Add drop mode parameter to set mac config Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 06/13] i40e: check_recovery_mode had wrong if statement Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 07/13] i40e: Update FW API version to 1.9 Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 08/13] i40e: reset veb.tc_stats when resetting veb.stats Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 09/13] i40e: Fix crash caused by stress setting of VF MAC addresses Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 10/13] i40e: Remove function i40e_update_dcb_config() Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 11/13] i40e: allow reset in recovery mode Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 12/13] i40e: Persistent LLDP support Jeff Kirsher
2019-08-22 20:30 ` [net-next v2 13/13] i40e: fix retrying in i40e_aq_get_phy_capabilities Jeff Kirsher
2019-08-22 22:01 ` [net-next v2 00/13][pull request] 40GbE Intel Wired LAN Driver Updates 2019-08-22 Jakub Kicinski
2019-08-22 22:29 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox