Skip to content

Commit 84c41dc

Browse files
committed
Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue
Tony Nguyen says: ==================== Intel Wired LAN Driver Updates 2024-04-01 (ice) This series contains updates to ice driver only. Michal Schmidt changes flow for gettimex64 to use host-side spinlock rather than hardware semaphore for lighter-weight locking. Steven adds ability for switch recipes to be re-used when firmware supports it. Thorsten Blum removes unwanted newlines in netlink messaging. Michal Swiatkowski and Piotr re-organize devlink related code; renaming, moving, and consolidating it to a single location. Michal also simplifies the devlink init and cleanup path to occur under a single lock call. * '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue: ice: hold devlink lock for whole init/cleanup ice: move devlink port code to a separate file ice: move ice_devlink.[ch] to devlink folder ice: Remove newlines in NL_SET_ERR_MSG_MOD ice: Add switch recipe reusing feature ice: fold ice_ptp_read_time into ice_ptp_gettimex64 ice: avoid the PTP hardware semaphore in gettimex64 path ice: add ice_adapter for shared data across PFs on the same NIC ==================== Link: https://lore.kernel.org/r/20240401172421.1401696-1-anthony.l.nguyen@intel.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2 parents 992c287 + 118c6bd commit 84c41dc

File tree

20 files changed

+814
-500
lines changed

20 files changed

+814
-500
lines changed

drivers/net/ethernet/intel/ice/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Makefile for the Intel(R) Ethernet Connection E800 Series Linux Driver
66
#
77

8+
subdir-ccflags-y += -I$(src)
89
obj-$(CONFIG_ICE) += ice.o
910

1011
ice-y := ice_main.o \
@@ -28,15 +29,17 @@ ice-y := ice_main.o \
2829
ice_flex_pipe.o \
2930
ice_flow.o \
3031
ice_idc.o \
31-
ice_devlink.o \
32+
devlink/devlink.o \
33+
devlink/devlink_port.o \
3234
ice_ddp.o \
3335
ice_fw_update.o \
3436
ice_lag.o \
3537
ice_ethtool.o \
3638
ice_repr.o \
3739
ice_tc_lib.o \
3840
ice_fwlog.o \
39-
ice_debugfs.o
41+
ice_debugfs.o \
42+
ice_adapter.o
4043
ice-$(CONFIG_PCI_IOV) += \
4144
ice_sriov.o \
4245
ice_virtchnl.o \

0 commit comments

Comments
 (0)