[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191030032910.24261-1-jeffrey.t.kirsher@intel.com>
Date: Tue, 29 Oct 2019 20:29:01 -0700
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 0/9][pull request] 100GbE Intel Wired LAN Driver Updates 2019-10-29
This series contains updates to the ice driver only.
Anirudh refactors the code to reduce the kernel configuration flags and
introduces ice_base.c file.
Maciej does additional refactoring on the configuring of transmit
rings so that we are not configuring per each traffic class flow.
Added support for XDP in the ice driver. Provides additional
re-organizing of the code in preparation for adding build_skb() support
in the driver. Adjusted the computational padding logic for headroom
and tailroom to better support build_skb(), which also aligns with the
logic in other Intel LAN drivers. Added build_skb support and make use
of the XDP's data_meta.
Krzysztof refactors the driver to prepare for AF_XDP support in the
driver and then adds support for AF_XDP.
The following are changes since commit 199f3ac319554f1ffddcc8e832448843f073d4c7:
ionic: Remove set but not used variable 'sg_desc'
and are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue 100GbE
Anirudh Venkataramanan (1):
ice: Introduce ice_base.c
Krzysztof Kazimierczak (2):
ice: Move common functions to ice_txrx_lib.c
ice: Add support for AF_XDP
Maciej Fijalkowski (6):
ice: get rid of per-tc flow in Tx queue configuration routines
ice: Add support for XDP
ice: introduce legacy Rx flag
ice: introduce frame padding computation logic
ice: add build_skb() support
ice: allow 3k MTU for XDP
drivers/net/ethernet/intel/ice/Makefile | 3 +
drivers/net/ethernet/intel/ice/ice.h | 59 +-
drivers/net/ethernet/intel/ice/ice_base.c | 857 ++++++++++++
drivers/net/ethernet/intel/ice/ice_base.h | 31 +
drivers/net/ethernet/intel/ice/ice_dcb_lib.h | 1 +
drivers/net/ethernet/intel/ice/ice_ethtool.c | 65 +-
drivers/net/ethernet/intel/ice/ice_lib.c | 985 +++-----------
drivers/net/ethernet/intel/ice/ice_lib.h | 49 +-
drivers/net/ethernet/intel/ice/ice_main.c | 345 +++++
drivers/net/ethernet/intel/ice/ice_txrx.c | 578 ++++----
drivers/net/ethernet/intel/ice/ice_txrx.h | 140 +-
drivers/net/ethernet/intel/ice/ice_txrx_lib.c | 273 ++++
drivers/net/ethernet/intel/ice/ice_txrx_lib.h | 59 +
.../net/ethernet/intel/ice/ice_virtchnl_pf.c | 1 +
drivers/net/ethernet/intel/ice/ice_xsk.c | 1181 +++++++++++++++++
drivers/net/ethernet/intel/ice/ice_xsk.h | 72 +
16 files changed, 3547 insertions(+), 1152 deletions(-)
create mode 100644 drivers/net/ethernet/intel/ice/ice_base.c
create mode 100644 drivers/net/ethernet/intel/ice/ice_base.h
create mode 100644 drivers/net/ethernet/intel/ice/ice_txrx_lib.c
create mode 100644 drivers/net/ethernet/intel/ice/ice_txrx_lib.h
create mode 100644 drivers/net/ethernet/intel/ice/ice_xsk.c
create mode 100644 drivers/net/ethernet/intel/ice/ice_xsk.h
--
2.21.0
Powered by blists - more mailing lists