From: Jacob Keller <jacob.e.keller@intel.com>
To: Przemek Kitszel <przemyslaw.kitszel@intel.com>,
Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
"Eric Dumazet" <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Piotr Kwapulinski <piotr.kwapulinski@intel.com>,
Aleksandr Loktionov <aleksandr.loktionov@intel.com>,
Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>,
Maciej Fijalkowski <maciej.fijalkowski@intel.com>,
Joshua Hay <joshua.a.hay@intel.com>,
"Madhu Chittim" <madhu.chittim@intel.com>,
Willem de Bruijn <willemb@google.com>,
Dave Ertman <david.m.ertman@intel.com>,
Ivan Vecera <ivecera@redhat.com>,
Grzegorz Nitka <grzegorz.nitka@intel.com>
Cc: <netdev@vger.kernel.org>, <stable@vger.kernel.org>,
Matt Vollrath <tactii@gmail.com>,
Sunitha Mekala <sunithax.d.mekala@intel.com>,
Kohei Enju <kohei@enjuk.jp>, Paul Menzel <pmenzel@molgen.mpg.de>,
Simon Horman <horms@kernel.org>,
Emil Tantilov <emil.s.tantilov@intel.com>,
Samuel Salin <Samuel.salin@intel.com>,
Patryk Holda <patryk.holda@intel.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
Tony Nguyen <anthony.l.nguyen@intel.com>, <stable@kernel.org>,
Marcin Szycik <marcin.szycik@linux.intel.com>,
Bart Van Assche <bvanassche@acm.org>,
<intel-wired-lan@lists.osuosl.org>,
Arpana Arland <arpanax.arland@intel.com>,
Rinitha S <sx.rinitha@intel.com>
Subject: Re: [PATCH net 00/13] Intel Wired LAN Driver Updates 2026-05-04 (i40e, ice, idpf)
Date: Wed, 6 May 2026 14:21:26 -0700 [thread overview]
Message-ID: <152e0a33-af26-4c42-be8e-96f91fcfce56@intel.com> (raw)
In-Reply-To: <20260504-jk-iwl-net-2026-05-04-v1-0-a222a88bd962@intel.com>
On 5/4/2026 10:14 PM, Jacob Keller wrote:
> Matt Volrath fixes two issues with the i40e driver probe routine, ensuring
> that PTP is properly cleaned up if the probe fails.
>
> Maciej fixes the i40e driver logic to keep the q_vectors array in sync with
> changes to the channel count via ethtool.
>
> Emil corrects the initialization of the read_dev_clk_lock spinlock in
> idpf_ptp_init, ensuring it is initialized prior to when the
> ptp_schedule_worker() is called.
>
> Josh fixes the idpf driver to prevent enabling XDP if the queue based
> scheduling is not supported by the firmware.
>
> Josh fixes the idpf skb data path for handling queue based scheduling.
>
> Josh fixes an XDP crash in the soft reset error path, restoring the
> original configuration if idpf_xdp_setup_prog() fails.
>
> Greg KH fixes a double free and use-after free in the idpf auxiliary device
> error paths.
>
> Marcin fixes ice_set_rss_hfunc() to use the correct q_opt_flags field,
> correcting the assignment and preventing submission of invalid data to the
> firmware.
>
> Bart corrects the locking in ice_dcb_rebuild(), ensuring that the tc_mutex
> is held over the entire operation.
>
> Grzegorz fixes the ordering of ice_ptp_link_change() in ice_up_complete()
> ensuring that the PTP timestamps will not be enabled before the PTP timer
> is actually re-initialized.
>
> Ivan fixes the rclk pin state get for E810 devices, ensuring the index is
> properly offset by the base_rclk_idx value. This ensures that the correct
> pin index is used to look up recovered clock state. He additionally adds
> bounds checking to prevent attempting to access pins outside of the pin
> state array.
>
> Ivan also moves the CGU register macros to the top of ice_dpll.h, inside
> the header guard to avoid duplicate macro definitions should the ice_dpll.h
> header is included multiple times.
>
> Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
> ---
Sashiko pointed out a few issues with some of the patches. I replied to
all the patches with possible issues, and I think some really do need
more work.
In particular, patch 3 needs to resolve a definite use-after-free issue,
patch 5 needs to address an issue with the extack pointer use, patch 6
and 7 need some investigation from the author to confirm, and patch 11
needs some confirmation from Grzegorz on whether there is still any gap.
Sashiko did have some concerns on patch 1, 2, 8, and 10. I replied to
the patches, and I think those are issues which need separate follow up
work and shouldn't block these fixes.
I'm going to submit a v2 which drops the patches that need rework.
Thanks,
Jake
> Bart Van Assche (1):
> ice: fix locking in ice_dcb_rebuild()
>
> Emil Tantilov (2):
> idpf: fix read_dev_clk_lock spinlock init in idpf_ptp_init()
> idpf: fix xdp crash in soft reset error path
>
> Greg Kroah-Hartman (1):
> idpf: fix double free and use-after-free in aux device error paths
>
> Grzegorz Nitka (1):
> ice: fix PTP hang for E825C devices
>
> Ivan Vecera (2):
> ice: dpll: fix rclk pin state get for E810
> ice: dpll: fix misplaced header macros
>
> Joshua Hay (2):
> idpf: do not enable XDP if queue based scheduling is not supported
> idpf: fix skb datapath queue based scheduling crashes and timeouts
>
> Maciej Fijalkowski (1):
> i40e: keep q_vectors array in sync with channel count changes
>
> Marcin Szycik (1):
> ice: fix setting RSS VSI hash for E830
>
> Matt Vollrath (2):
> i40e: Cleanup PTP registration on probe failure
> i40e: Cleanup PTP pins on probe failure
>
> drivers/net/ethernet/intel/i40e/i40e.h | 1 +
> drivers/net/ethernet/intel/ice/ice_dpll.h | 32 ++++++-------
> drivers/net/ethernet/intel/idpf/idpf_txrx.h | 12 +++--
> drivers/net/ethernet/intel/idpf/idpf_virtchnl.h | 4 +-
> drivers/net/ethernet/intel/i40e/i40e_main.c | 36 ++++++++++++---
> drivers/net/ethernet/intel/i40e/i40e_ptp.c | 3 +-
> drivers/net/ethernet/intel/ice/ice_dcb_lib.c | 4 +-
> drivers/net/ethernet/intel/ice/ice_dpll.c | 5 ++
> drivers/net/ethernet/intel/ice/ice_main.c | 6 +--
> drivers/net/ethernet/intel/idpf/idpf_idc.c | 6 +++
> drivers/net/ethernet/intel/idpf/idpf_lib.c | 4 +-
> drivers/net/ethernet/intel/idpf/idpf_ptp.c | 4 +-
> drivers/net/ethernet/intel/idpf/idpf_txrx.c | 61 ++++++++++++++-----------
> drivers/net/ethernet/intel/idpf/idpf_virtchnl.c | 19 ++------
> drivers/net/ethernet/intel/idpf/xdp.c | 15 ++++--
> drivers/net/ethernet/intel/idpf/xsk.c | 4 +-
> 16 files changed, 132 insertions(+), 84 deletions(-)
> ---
> base-commit: bd3a4795d5744f59a1f485379f1303e5e606f377
> change-id: 20260504-jk-iwl-net-2026-05-04-f9526823577f
>
> Best regards,
> --
> Jacob Keller <jacob.e.keller@intel.com>
>
prev parent reply other threads:[~2026-05-06 21:21 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-05 5:14 [PATCH net 00/13] Intel Wired LAN Driver Updates 2026-05-04 (i40e, ice, idpf) Jacob Keller
2026-05-05 5:14 ` [PATCH net 01/13] i40e: Cleanup PTP registration on probe failure Jacob Keller
2026-05-06 20:24 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 02/13] i40e: Cleanup PTP pins " Jacob Keller
2026-05-06 20:28 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 03/13] i40e: keep q_vectors array in sync with channel count changes Jacob Keller
2026-05-06 20:53 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 04/13] idpf: fix read_dev_clk_lock spinlock init in idpf_ptp_init() Jacob Keller
2026-05-05 5:14 ` [PATCH net 05/13] idpf: do not enable XDP if queue based scheduling is not supported Jacob Keller
2026-05-06 20:59 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 06/13] idpf: fix skb datapath queue based scheduling crashes and timeouts Jacob Keller
2026-05-05 5:14 ` [PATCH net 07/13] idpf: fix xdp crash in soft reset error path Jacob Keller
2026-05-05 5:14 ` [PATCH net 08/13] idpf: fix double free and use-after-free in aux device error paths Jacob Keller
2026-05-06 21:04 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 09/13] ice: fix setting RSS VSI hash for E830 Jacob Keller
2026-05-06 21:06 ` Jacob Keller
2026-05-07 11:47 ` Marcin Szycik
2026-05-07 16:59 ` Marcin Szycik
2026-05-07 21:13 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 10/13] ice: fix locking in ice_dcb_rebuild() Jacob Keller
2026-05-06 21:13 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 11/13] ice: fix PTP hang for E825C devices Jacob Keller
2026-05-06 21:16 ` Jacob Keller
2026-05-05 5:14 ` [PATCH net 12/13] ice: dpll: fix rclk pin state get for E810 Jacob Keller
2026-05-05 5:14 ` [PATCH net 13/13] ice: dpll: fix misplaced header macros Jacob Keller
2026-05-06 21:21 ` Jacob Keller [this message]
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=152e0a33-af26-4c42-be8e-96f91fcfce56@intel.com \
--to=jacob.e.keller@intel.com \
--cc=Samuel.salin@intel.com \
--cc=aleksandr.loktionov@intel.com \
--cc=andrew+netdev@lunn.ch \
--cc=anthony.l.nguyen@intel.com \
--cc=arkadiusz.kubalewski@intel.com \
--cc=arpanax.arland@intel.com \
--cc=bvanassche@acm.org \
--cc=davem@davemloft.net \
--cc=david.m.ertman@intel.com \
--cc=edumazet@google.com \
--cc=emil.s.tantilov@intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=grzegorz.nitka@intel.com \
--cc=horms@kernel.org \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=ivecera@redhat.com \
--cc=joshua.a.hay@intel.com \
--cc=kohei@enjuk.jp \
--cc=kuba@kernel.org \
--cc=maciej.fijalkowski@intel.com \
--cc=madhu.chittim@intel.com \
--cc=marcin.szycik@linux.intel.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=patryk.holda@intel.com \
--cc=piotr.kwapulinski@intel.com \
--cc=pmenzel@molgen.mpg.de \
--cc=przemyslaw.kitszel@intel.com \
--cc=stable@kernel.org \
--cc=stable@vger.kernel.org \
--cc=sunithax.d.mekala@intel.com \
--cc=sx.rinitha@intel.com \
--cc=tactii@gmail.com \
--cc=willemb@google.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