Netdev List
 help / color / mirror / Atom feed
* [PATCH net-next 00/15][pull request] Intel Wired LAN Driver Updates 2026-08-05 (ice, i40e, igc, e1000e)
@ 2026-08-05 21:35 Tony Nguyen
  2026-08-05 21:35 ` [PATCH net-next 01/15] ice: add support for unmanaged DPLL on E830 NIC Tony Nguyen
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Tony Nguyen @ 2026-08-05 21:35 UTC (permalink / raw)
  To: davem, kuba, pabeni, edumazet, andrew+netdev, netdev; +Cc: Tony Nguyen

For ice:
Arkadiusz adds support for an unmanaged DPLL interface on E830 devices.
Enabling users to check the DPLL lock status and obtain relevant
configuration information through the DPLL netlink, even though the
physical DPLL settings are hard coded within the hardware.

Michal resolves issue with checksum advertisement and handling with
extension headers.

Alex expands support to allow for VLAN ethertype 0x88E7 for IEEE 802.1ah
B-TAG support and adjusts interrupt moderation rate for other interrupts
to reduce latency of timestamps and mailbox messages.

Grzegorz reduces DSCP error message to debug as it is expected in this
situation.

Marcin replaces open coded copy of ethernet header to use an, existing,
helper.

Przemek adds trace event for Rx timestamps to aid in debugging.

For i40e:
Kohei Enju adds support for XDP metadata of Rx hash and VLAN tag.

Chris Packham reduces frequency of overflow Rx filter warning to occur
when promiscuous mode is enabled as a result of the condition.

For igc:
Dima adds support for setting of ACPI-based MAC address.

For e1000e:
Matt Vollrath improves Rx performance by eliminating unnecessary DMA
re-mapping when recycled buffers are reused after copybreak or errors.

The following are changes since commit a23b36233d4103def55dc8cf65698106d0bd1e62:
  Merge branch 'bnge-add-more-functionality'
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 100GbE

Aleksandr Loktionov (3):
  virtchnl: add VIRTCHNL_VLAN_ETHERTYPE_88E7 support
  ice: add 0x88E7 handling to SW validation paths
  ice: increase OICR interrupt moderation rate to 20K interrupts/sec

Arkadiusz Kubalewski (1):
  ice: add support for unmanaged DPLL on E830 NIC

Chris Packham (1):
  i40e: Avoid repeating RX filter warning

Dima Ruinskiy (1):
  igc: Support ACPI-based MAC pass-through

Grzegorz Nitka (1):
  ice: reduce loglevel to debug for 'Can't delete DSCP' message

Kohei Enju (3):
  i40e: prepare for XDP metadata ops support
  i40e: add support for bpf_xdp_metadata_rx_hash()
  i40e: add support for bpf_xdp_metadata_rx_vlan_tag()

Marcin Szycik (1):
  ice: use ice_fill_eth_hdr() in ice_fill_sw_rule()

Matt Vollrath (1):
  e1000e: Avoid DMA re-mapping on RX copybreak

Michal Swiatkowski (2):
  ice: always do GCS if hardware supports it
  ice: use NETIF_F_HW_CSUM instead of IP/IPV6

Przemyslaw Korba (1):
  ice: add rx timestamp tracepoint for debugging

 .../device_drivers/ethernet/intel/ice.rst     |  80 +++++
 drivers/net/ethernet/intel/e1000e/netdev.c    |  32 +-
 drivers/net/ethernet/intel/i40e/i40e_main.c   |  70 +++-
 drivers/net/ethernet/intel/i40e/i40e_txrx.c   |   5 +-
 drivers/net/ethernet/intel/i40e/i40e_txrx.h   |   7 +-
 drivers/net/ethernet/intel/i40e/i40e_type.h   |   5 +
 drivers/net/ethernet/intel/i40e/i40e_xsk.c    |  12 +
 .../net/ethernet/intel/ice/devlink/health.c   |   6 +
 .../net/ethernet/intel/ice/ice_adminq_cmd.h   |  12 +
 drivers/net/ethernet/intel/ice/ice_common.c   | 136 ++++++++
 drivers/net/ethernet/intel/ice/ice_common.h   |   8 +
 drivers/net/ethernet/intel/ice/ice_dcb_nl.c   |   2 +-
 drivers/net/ethernet/intel/ice/ice_dpll.c     | 315 ++++++++++++++++--
 drivers/net/ethernet/intel/ice/ice_dpll.h     |  10 +
 drivers/net/ethernet/intel/ice/ice_lib.c      |   4 +
 drivers/net/ethernet/intel/ice/ice_main.c     |  34 +-
 drivers/net/ethernet/intel/ice/ice_ptp.c      |   2 +
 drivers/net/ethernet/intel/ice/ice_ptp_hw.c   |  46 +++
 drivers/net/ethernet/intel/ice/ice_ptp_hw.h   |   1 +
 drivers/net/ethernet/intel/ice/ice_switch.c   |   6 +-
 drivers/net/ethernet/intel/ice/ice_tc_lib.c   |   1 +
 drivers/net/ethernet/intel/ice/ice_trace.h    |  18 +
 drivers/net/ethernet/intel/ice/ice_txrx.c     |   2 +-
 drivers/net/ethernet/intel/ice/ice_txrx.h     |   1 +
 .../net/ethernet/intel/ice/ice_vsi_vlan_lib.c |   3 +-
 .../net/ethernet/intel/ice/virt/virtchnl.c    |   6 +
 drivers/net/ethernet/intel/igc/igc_main.c     |  64 +++-
 include/linux/avf/virtchnl.h                  |   1 +
 28 files changed, 814 insertions(+), 75 deletions(-)

-- 
2.47.1


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

end of thread, other threads:[~2026-08-05 21:36 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-05 21:35 [PATCH net-next 00/15][pull request] Intel Wired LAN Driver Updates 2026-08-05 (ice, i40e, igc, e1000e) Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 01/15] ice: add support for unmanaged DPLL on E830 NIC Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 02/15] ice: always do GCS if hardware supports it Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 03/15] ice: use NETIF_F_HW_CSUM instead of IP/IPV6 Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 04/15] virtchnl: add VIRTCHNL_VLAN_ETHERTYPE_88E7 support Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 05/15] ice: add 0x88E7 handling to SW validation paths Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 06/15] ice: reduce loglevel to debug for 'Can't delete DSCP' message Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 07/15] ice: use ice_fill_eth_hdr() in ice_fill_sw_rule() Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 08/15] ice: increase OICR interrupt moderation rate to 20K interrupts/sec Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 09/15] ice: add rx timestamp tracepoint for debugging Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 10/15] i40e: prepare for XDP metadata ops support Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 11/15] i40e: add support for bpf_xdp_metadata_rx_hash() Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 12/15] i40e: add support for bpf_xdp_metadata_rx_vlan_tag() Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 13/15] i40e: Avoid repeating RX filter warning Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 14/15] igc: Support ACPI-based MAC pass-through Tony Nguyen
2026-08-05 21:35 ` [PATCH net-next 15/15] e1000e: Avoid DMA re-mapping on RX copybreak Tony Nguyen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox