All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 00/12][pull request] 100GbE Intel Wired LAN Driver Updates 2021-02-08
@ 2021-02-09  1:16 Tony Nguyen
  2021-02-09  1:16 ` [PATCH net-next 01/12] ice: log message when trusted VF goes in/out of promisc mode Tony Nguyen
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: Tony Nguyen @ 2021-02-09  1:16 UTC (permalink / raw)
  To: davem, kuba; +Cc: Tony Nguyen, netdev, sassmann

This series contains updates to the ice driver and documentation.

Brett adds a log message when a trusted VF goes in and out of promiscuous
for consistency with i40e driver.

Dave implements a new LLDP command that allows adding VSI destinations to
existing filters and adds support for netdev bonding events, current
support is software based.

Michal refactors code to move from VSI stored xsk_buff_pools to
netdev-provided ones.

Kiran implements the creation scheduler aggregator nodes and distributing
VSIs within the nodes.

Ben modifies rate limit calculations to use clock frequency from the
hardware instead of using a hardcoded one.

Jesse adds support for user to control writeback frequency.

Chinh refactors DCB variables out of the ice_port_info struct.

Bruce removes some unnecessary casting.

Mitch fixes an error message that was reported as if_up instead of if_down.

Tony adjusts fallback allocation for MSI-X to use all given vectors instead
of using only the minimum configuration and updates documentation for
the ice driver.

The following are changes since commit 08cbabb77e9098ec6c4a35911effac53e943c331:
  Merge tag 'mlx5-updates-2021-02-04' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Ben Shelton (1):
  ice: Use PSM clock frequency to calculate RL profiles

Brett Creeley (1):
  ice: log message when trusted VF goes in/out of promisc mode

Bruce Allan (1):
  ice: remove unnecessary casts

Chinh T Cao (1):
  ice: Refactor DCB related variables out of the ice_port_info struct

Dave Ertman (2):
  ice: implement new LLDP filter command
  ice: Add initial support framework for LAG

Jesse Brandeburg (1):
  ice: fix writeback enable logic

Kiran Patil (1):
  ice: create scheduler aggregator node config and move VSIs

Michal Swiatkowski (1):
  ice: Remove xsk_buff_pool from VSI structure

Mitch Williams (1):
  ice: Fix trivial error message

Tony Nguyen (2):
  ice: Improve MSI-X fallback logic
  Documentation: ice: update documentation

 .../device_drivers/ethernet/intel/ice.rst     | 1027 ++++++++++++-
 drivers/net/ethernet/intel/ice/Makefile       |    1 +
 drivers/net/ethernet/intel/ice/ice.h          |   52 +-
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |   25 +
 drivers/net/ethernet/intel/ice/ice_common.c   |   58 +-
 drivers/net/ethernet/intel/ice/ice_common.h   |    3 +
 drivers/net/ethernet/intel/ice/ice_controlq.c |    4 +-
 drivers/net/ethernet/intel/ice/ice_dcb.c      |   40 +-
 drivers/net/ethernet/intel/ice/ice_dcb_lib.c  |   47 +-
 drivers/net/ethernet/intel/ice/ice_dcb_nl.c   |   50 +-
 drivers/net/ethernet/intel/ice/ice_ethtool.c  |   14 +-
 .../net/ethernet/intel/ice/ice_flex_pipe.c    |   10 +-
 .../net/ethernet/intel/ice/ice_hw_autogen.h   |    3 +
 drivers/net/ethernet/intel/ice/ice_lag.c      |  445 ++++++
 drivers/net/ethernet/intel/ice/ice_lag.h      |   87 ++
 drivers/net/ethernet/intel/ice/ice_lib.c      |  142 +-
 drivers/net/ethernet/intel/ice/ice_main.c     |   87 +-
 drivers/net/ethernet/intel/ice/ice_sched.c    | 1283 +++++++++++++++--
 drivers/net/ethernet/intel/ice/ice_sched.h    |   24 +-
 drivers/net/ethernet/intel/ice/ice_switch.c   |    2 +-
 drivers/net/ethernet/intel/ice/ice_txrx.c     |   61 +-
 drivers/net/ethernet/intel/ice/ice_txrx.h     |    1 -
 drivers/net/ethernet/intel/ice/ice_type.h     |   27 +-
 .../net/ethernet/intel/ice/ice_virtchnl_pf.c  |   72 +-
 drivers/net/ethernet/intel/ice/ice_xsk.c      |   71 +-
 25 files changed, 3234 insertions(+), 402 deletions(-)
 create mode 100644 drivers/net/ethernet/intel/ice/ice_lag.c
 create mode 100644 drivers/net/ethernet/intel/ice/ice_lag.h

-- 
2.26.2


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

end of thread, other threads:[~2021-02-10  0:09 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-09  1:16 [PATCH net-next 00/12][pull request] 100GbE Intel Wired LAN Driver Updates 2021-02-08 Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 01/12] ice: log message when trusted VF goes in/out of promisc mode Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 02/12] ice: implement new LLDP filter command Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 03/12] ice: Remove xsk_buff_pool from VSI structure Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 04/12] ice: Add initial support framework for LAG Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 05/12] ice: create scheduler aggregator node config and move VSIs Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 06/12] ice: Use PSM clock frequency to calculate RL profiles Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 07/12] ice: fix writeback enable logic Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 08/12] ice: Refactor DCB related variables out of the ice_port_info struct Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 09/12] ice: remove unnecessary casts Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 10/12] ice: Fix trivial error message Tony Nguyen
2021-02-09  1:16 ` [PATCH net-next 11/12] ice: Improve MSI-X fallback logic Tony Nguyen
2021-02-09  3:00   ` Jakub Kicinski
2021-02-09  1:16 ` [PATCH net-next 12/12] Documentation: ice: update documentation Tony Nguyen
2021-02-09 20:41 ` [PATCH net-next 00/12][pull request] 100GbE Intel Wired LAN Driver Updates 2021-02-08 Alexander Duyck
2021-02-09 23:50 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.