[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191108203806.12109-1-jeffrey.t.kirsher@intel.com>
Date: Fri, 8 Nov 2019 12:37:51 -0800
From: Jeff Kirsher <jeffrey.t.kirsher@...el.com>
To: davem@...emloft.net
Cc: Jeff Kirsher <jeffrey.t.kirsher@...el.com>, netdev@...r.kernel.org,
nhorman@...hat.com, sassmann@...hat.com
Subject: [net-next v2 00/15][pull request] 100GbE Intel Wired LAN Driver Updates 2019-11-08
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
Powered by blists - more mailing lists