Netdev List
 help / color / mirror / Atom feed
From: Tony Nguyen <anthony.l.nguyen@intel.com>
To: davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com,
	edumazet@google.com, andrew+netdev@lunn.ch,
	netdev@vger.kernel.org
Cc: Tony Nguyen <anthony.l.nguyen@intel.com>
Subject: [PATCH net-next 00/15][pull request] Intel Wired LAN Driver Updates 2026-06-09 (idpf, ice, i40e, iavf, ixgbe, igc, igb, e1000e, e1000)
Date: Tue,  9 Jun 2026 14:35:41 -0700	[thread overview]
Message-ID: <20260609213559.178657-1-anthony.l.nguyen@intel.com> (raw)

Marco Crivellari replaces obsolete use of system_unbound_wq to
system_dfl_wq for idpf.

Natalia removes redundant PTP checks on ice.

Corinna Vinschen removes redundant MAC address check on iavf.

Jakub Raczynski replaces open-coded array size calculation to use
ARRAY_SIZE for i40e and iavf drivers.

Piotr removes a couple redundant assignments on ixgbe.

Kurt Kanzenbach moves processing of Tx timestamps from system workqueue
to BH workqueue for igb.

Alex utilizes ktime_get_* helpers for igb and e1000e.

Daiki Harada replaces napi_schedule() to, more appropriate,
napi_schedule_irqoff() call in igb and igc.

Matt Vollrath does the same on e1000e.

Agalakov Daniil skips unnecessary endian conversions on e1000e and
e1000.

Maximilian Pezzullo fixes some typos on igb and igc.

The following are changes since commit 9415471e01c1aaac43daa6af3a261dc0c6c3a47c:
  selftests/net/openvswitch: guard command substitutions against empty output
and are available in the git repository at:
  git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue 1GbE

Agalakov Daniil (2):
  e1000: limit endianness conversion to boundary words
  e1000e: limit endianness conversion to boundary words

Aleksandr Loktionov (2):
  igb: use ktime_get_real helpers in igb_ptp_reset()
  e1000e: use ktime_get_real_ns() in e1000e_systim_reset()

Corinna Vinschen (1):
  iavf: iavf_virtchnl_completion: drop duplicate ether_addr_equal() test

Daiki Harada (2):
  igb: use napi_schedule_irqoff() instead of napi_schedule()
  igc: use napi_schedule_irqoff() instead of napi_schedule()

Jakub Raczynski (1):
  net/intel: Replace manual array size calculation with ARRAY_SIZE

Kurt Kanzenbach (1):
  igb: Retrieve Tx timestamp from BH workqueue

Marco Crivellari (1):
  idpf: Replace use of system_unbound_wq with system_dfl_wq

Matt Vollrath (1):
  e1000e: Use __napi_schedule_irqoff()

Maximilian Pezzullo (2):
  igb: fix typos in comments
  igc: fix typos in comments

Natalia Wochtman (1):
  ice: remove redundant checks from PTP init

Piotr Kwapulinski (1):
  ixgbe: e610: remove redundant assignment

 .../net/ethernet/intel/e1000/e1000_ethtool.c  | 10 ++++++----
 drivers/net/ethernet/intel/e1000e/ethtool.c   | 19 ++++++++++++-------
 drivers/net/ethernet/intel/e1000e/netdev.c    |  8 ++++----
 drivers/net/ethernet/intel/i40e/i40e_adminq.h |  2 +-
 drivers/net/ethernet/intel/iavf/iavf_adminq.h |  2 +-
 .../net/ethernet/intel/iavf/iavf_virtchnl.c   | 12 +++++-------
 drivers/net/ethernet/intel/ice/ice_ptp.c      | 14 ++++----------
 drivers/net/ethernet/intel/idpf/idpf_txrx.c   |  2 +-
 .../net/ethernet/intel/igb/e1000_defines.h    |  2 +-
 drivers/net/ethernet/intel/igb/e1000_mac.c    |  2 +-
 drivers/net/ethernet/intel/igb/e1000_mbx.h    |  2 +-
 drivers/net/ethernet/intel/igb/e1000_nvm.c    |  2 +-
 drivers/net/ethernet/intel/igb/igb_main.c     | 10 +++++-----
 drivers/net/ethernet/intel/igb/igb_ptp.c      |  7 ++++---
 drivers/net/ethernet/intel/igc/igc_diag.c     |  2 +-
 drivers/net/ethernet/intel/igc/igc_main.c     | 10 +++++-----
 drivers/net/ethernet/intel/ixgbe/ixgbe_e610.c | 14 ++++----------
 17 files changed, 57 insertions(+), 63 deletions(-)

-- 
2.47.1


             reply	other threads:[~2026-06-09 21:36 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-09 21:35 Tony Nguyen [this message]
2026-06-09 21:35 ` [PATCH net-next 01/15] idpf: Replace use of system_unbound_wq with system_dfl_wq Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 02/15] ice: remove redundant checks from PTP init Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 03/15] iavf: iavf_virtchnl_completion: drop duplicate ether_addr_equal() test Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 04/15] net/intel: Replace manual array size calculation with ARRAY_SIZE Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 05/15] ixgbe: e610: remove redundant assignment Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 06/15] igb: Retrieve Tx timestamp from BH workqueue Tony Nguyen
2026-06-12  9:57   ` Simon Horman
2026-06-09 21:35 ` [PATCH net-next 07/15] igb: use ktime_get_real helpers in igb_ptp_reset() Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 08/15] e1000e: use ktime_get_real_ns() in e1000e_systim_reset() Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 09/15] igb: use napi_schedule_irqoff() instead of napi_schedule() Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 10/15] igc: " Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 11/15] e1000e: Use __napi_schedule_irqoff() Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 12/15] e1000: limit endianness conversion to boundary words Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 13/15] e1000e: " Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 14/15] igb: fix typos in comments Tony Nguyen
2026-06-09 21:35 ` [PATCH net-next 15/15] igc: " Tony Nguyen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260609213559.178657-1-anthony.l.nguyen@intel.com \
    --to=anthony.l.nguyen@intel.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox