netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next v2 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2019-11-08
@ 2019-11-08 20:37 Jeff Kirsher
  2019-11-08 20:37 ` [net-next v2 01/15] ice: Use ice_ena_vsi and ice_dis_vsi in DCB configuration flow Jeff Kirsher
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Jeff Kirsher @ 2019-11-08 20:37 UTC (permalink / raw)
  To: davem; +Cc: Jeff Kirsher, netdev, nhorman, sassmann

Another series that contains updates to the ice driver only.

Anirudh cleans up the code of kernel config of ifdef wrappers by moving
code that is needed by DCB to disable and enable the PF VSI for
configuration.  Implements ice_vsi_type_str() to convert an VSI type
enum value to its string equivalent to help identify VSI types from
module print statements.

Usha and Tarun add support for setting the maximum per-queue bit rate
for transmit queues.

Dave implements dcb_nl set functions and supporting software DCB
functions to support the callbacks defined in the dcbnl_rtnl_ops
structure.

Henry adds a check to ensure we are not resetting the device when trying
to configure it, and to return -EBUSY during a reset.

Usha fixes a call trace caused by the receive/transmit descriptor size
change request via ethtool when DCB is configured by using the number of
enabled queues and not the total number of allocated queues.

Paul cleans up and refactors the software LLDP configuration to handle
when firmware DCBX is disabled.

Akeem adds checks to ensure the VF or PF is not disabled before honoring
mailbox messages to configure the VF.

Brett corrects the check to make sure the vector_id passed down from
iavf is less than the max allowed interrupts per VF.  Updates a flag bit
to align with the current specification.

Bruce updates a switch statement to use the correct status of the
Download Package AQ command.  Does some housekeeping by cleaning up a
conditional check that is not needed.

Mitch shortens up the delay for SQ responses to resolve issues with VF
resets failing.

Jake cleans up the code reducing namespace pollution and to simplify
ice_debug_cq() since it always uses the same mask, not need to pass it
in.  Improve debugging by adding the command opcode in the debug
messages that print an error code.

v2: fixed reverse christmas tree issue in patch 3 of the series.

The following are changes since commit c8119fa8922b0dfdda7c7152f7de55040aa5eb1d:
  cxgb4: Use match_string() helper to simplify the code
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE

Akeem G Abodunrin (1):
  ice: Check if VF is disabled for Opcode and other operations

Anirudh Venkataramanan (2):
  ice: Use ice_ena_vsi and ice_dis_vsi in DCB configuration flow
  ice: Introduce and use ice_vsi_type_str

Brett Creeley (2):
  ice: Change max MSI-x vector_id check in cfg_irq_map
  ice: Update enum ice_flg64_bits to current specification

Bruce Allan (2):
  ice: use pkg_dwnld_status instead of sq_last_status
  ice: remove unnecessary conditional check

Dave Ertman (1):
  ice: Implement DCBNL support

Henry Tieman (1):
  ice: avoid setting features during reset

Jacob Keller (2):
  ice: use more accurate ICE_DBG mask types
  ice: print opcode when printing controlq errors

Mitch Williams (1):
  ice: delay less

Paul Greenwalt (1):
  ice: configure software LLDP in ice_init_pf_dcb

Usha Ketineni (2):
  ice: Add NDO callback to set the maximum per-queue bitrate
  ice: Fix to change Rx/Tx ring descriptor size via ethtool with DCBx

 drivers/net/ethernet/intel/ice/Makefile       |    2 +-
 drivers/net/ethernet/intel/ice/ice.h          |    6 +-
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |   46 +
 drivers/net/ethernet/intel/ice/ice_common.c   |   60 +-
 drivers/net/ethernet/intel/ice/ice_common.h   |    4 +-
 drivers/net/ethernet/intel/ice/ice_controlq.c |   65 +-
 drivers/net/ethernet/intel/ice/ice_controlq.h |    5 +-
 drivers/net/ethernet/intel/ice/ice_dcb_lib.c  |   71 +-
 drivers/net/ethernet/intel/ice/ice_dcb_lib.h  |   23 +-
 drivers/net/ethernet/intel/ice/ice_dcb_nl.c   |  933 ++++++++++++
 drivers/net/ethernet/intel/ice/ice_dcb_nl.h   |   19 +
 drivers/net/ethernet/intel/ice/ice_ethtool.c  |   19 +-
 .../net/ethernet/intel/ice/ice_hw_autogen.h   |    3 +
 .../net/ethernet/intel/ice/ice_lan_tx_rx.h    |    2 +-
 drivers/net/ethernet/intel/ice/ice_lib.c      |   92 +-
 drivers/net/ethernet/intel/ice/ice_lib.h      |    6 +
 drivers/net/ethernet/intel/ice/ice_main.c     |  154 +-
 drivers/net/ethernet/intel/ice/ice_sched.c    | 1264 ++++++++++++++++-
 drivers/net/ethernet/intel/ice/ice_sched.h    |   39 +
 drivers/net/ethernet/intel/ice/ice_switch.c   |    3 +-
 drivers/net/ethernet/intel/ice/ice_switch.h   |    5 -
 drivers/net/ethernet/intel/ice/ice_type.h     |   65 +-
 .../net/ethernet/intel/ice/ice_virtchnl_pf.c  |   82 +-
 .../net/ethernet/intel/ice/ice_virtchnl_pf.h  |    1 +
 24 files changed, 2751 insertions(+), 218 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/ice/ice_dcb_nl.c
 create mode 100644 drivers/net/ethernet/intel/ice/ice_dcb_nl.h

-- 
2.21.0


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

end of thread, other threads:[~2019-11-08 21:55 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-08 20:37 [net-next v2 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2019-11-08 Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 01/15] ice: Use ice_ena_vsi and ice_dis_vsi in DCB configuration flow Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 02/15] ice: Add NDO callback to set the maximum per-queue bitrate Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 03/15] ice: Implement DCBNL support Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 04/15] ice: avoid setting features during reset Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 05/15] ice: Fix to change Rx/Tx ring descriptor size via ethtool with DCBx Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 06/15] ice: configure software LLDP in ice_init_pf_dcb Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 07/15] ice: Check if VF is disabled for Opcode and other operations Jeff Kirsher
2019-11-08 20:37 ` [net-next v2 08/15] ice: Change max MSI-x vector_id check in cfg_irq_map Jeff Kirsher
2019-11-08 20:38 ` [net-next v2 09/15] ice: use pkg_dwnld_status instead of sq_last_status Jeff Kirsher
2019-11-08 20:38 ` [net-next v2 10/15] ice: delay less Jeff Kirsher
2019-11-08 20:38 ` [net-next v2 11/15] ice: Update enum ice_flg64_bits to current specification Jeff Kirsher
2019-11-08 20:38 ` [net-next v2 12/15] ice: remove unnecessary conditional check Jeff Kirsher
2019-11-08 20:38 ` [net-next v2 13/15] ice: Introduce and use ice_vsi_type_str Jeff Kirsher
2019-11-08 20:38 ` [net-next v2 14/15] ice: use more accurate ICE_DBG mask types Jeff Kirsher
2019-11-08 20:38 ` [net-next v2 15/15] ice: print opcode when printing controlq errors Jeff Kirsher
2019-11-08 21:54 ` [net-next v2 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2019-11-08 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).