From: Paul Menzel <pmenzel@molgen.mpg.de>
To: Li Li <boolli@google.com>
Cc: Tony Nguyen <anthony.l.nguyen@intel.com>,
Przemek Kitszel <przemyslaw.kitszel@intel.com>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Eric Dumazet <edumazet@google.com>,
intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, David Decotigny <decot@google.com>,
Anjali Singhai <anjali.singhai@intel.com>,
Sridhar Samudrala <sridhar.samudrala@intel.com>,
Brian Vazquez <brianvv@google.com>,
emil.s.tantilov@intel.com
Subject: Re: [Intel-wired-lan] [PATCH 1/5] idpf: skip getting/setting ring params if vport is NULL during HW reset
Date: Wed, 7 Jan 2026 06:30:08 +0100 [thread overview]
Message-ID: <fba866fa-5ed7-4321-8776-e1585b4c417b@molgen.mpg.de> (raw)
In-Reply-To: <20260107010503.2242163-1-boolli@google.com>
Dear Li,
Thank you for your patch.
Am 07.01.26 um 02:04 schrieb Li Li via Intel-wired-lan:
> When an idpf HW reset is triggered, it clears the vport but does
> not clear the netdev held by vport:
>
> // In idpf_vport_dealloc() called by idpf_init_hard_reset(),
> // idpf_init_hard_reset() sets IDPF_HR_RESET_IN_PROG, so
> // idpf_decfg_netdev() doesn't get called.
No need to format this as code comments. At least it confused me a little.
> if (!test_bit(IDPF_HR_RESET_IN_PROG, adapter->flags))
> idpf_decfg_netdev(vport);
> // idpf_decfg_netdev() would clear netdev but it isn't called:
> unregister_netdev(vport->netdev);
> free_netdev(vport->netdev);
> vport->netdev = NULL;
> // Later in idpf_init_hard_reset(), the vport is cleared:
> kfree(adapter->vports);
> adapter->vports = NULL;
>
> During an idpf HW reset, when "ethtool -g/-G" is called on the netdev,
> the vport associated with the netdev is NULL, and so a kernel panic
> would happen:
>
> [ 513.185327] BUG: kernel NULL pointer dereference, address: 0000000000000038
> ...
> [ 513.232756] RIP: 0010:idpf_get_ringparam+0x45/0x80
>
> This can be reproduced reliably by injecting a TX timeout to cause
> an idpf HW reset, and injecting a virtchnl error to cause the HW
> reset to fail and retry, while calling "ethtool -g/-G" on the netdev
> at the same time.
If you shared the commands, how to do that, it would make reproducing
the issue easier.
> With this patch applied, we see the following error but no kernel
> panics anymore:
>
> [ 476.323630] idpf 0000:05:00.0 eth1: failed to get ring params due to no vport in netdev
>
> Signed-off-by: Li Li <boolli@google.com>
> ---
> drivers/net/ethernet/intel/idpf/idpf_ethtool.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/net/ethernet/intel/idpf/idpf_ethtool.c b/drivers/net/ethernet/intel/idpf/idpf_ethtool.c
> index d5711be0b8e69..6a4b630b786c2 100644
> --- a/drivers/net/ethernet/intel/idpf/idpf_ethtool.c
> +++ b/drivers/net/ethernet/intel/idpf/idpf_ethtool.c
> @@ -639,6 +638,10 @@ static void idpf_get_ringparam(struct net_device *netdev,
>
> idpf_vport_ctrl_lock(netdev);
> vport = idpf_netdev_to_vport(netdev);
> + if (!vport) {
> + netdev_err(netdev, "failed to get ring params due to no vport in netdev\n");
If vport == NULL is expected, why log it as an error. What should the
user do? Wait until reset is done?
> + goto unlock;
> + }
>
> ring->rx_max_pending = IDPF_MAX_RXQ_DESC;
> ring->tx_max_pending = IDPF_MAX_TXQ_DESC;
> @@ -647,6 +651,7 @@ static void idpf_get_ringparam(struct net_device *netdev,
>
> kring->tcp_data_split = idpf_vport_get_hsplit(vport);
>
> +unlock:
> idpf_vport_ctrl_unlock(netdev);
> }
>
> @@ -673,6 +674,11 @@ static int idpf_set_ringparam(struct net_device *netdev,
>
> idpf_vport_ctrl_lock(netdev);
> vport = idpf_netdev_to_vport(netdev);
> + if (!vport) {
> + netdev_err(netdev, "ring params not changed due to no vport in netdev\n");
> + err = -EFAULT;
> + goto unlock_mutex;
> + }
>
> idx = vport->idx;
>
Is there another – possible more involved – solution possible to wait
until the hardware reset finished?
Kind regards,
Paul
next prev parent reply other threads:[~2026-01-07 5:30 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-07 1:04 [Intel-wired-lan] [PATCH 1/5] idpf: skip getting/setting ring params if vport is NULL during HW reset Li Li via Intel-wired-lan
2026-01-07 1:05 ` [Intel-wired-lan] [PATCH 2/5] idpf: skip changing MTU " Li Li via Intel-wired-lan
2026-01-07 1:05 ` [Intel-wired-lan] [PATCH 3/5] idpf: skip getting RX flow rules " Li Li via Intel-wired-lan
2026-01-12 9:58 ` Loktionov, Aleksandr
2026-01-07 1:05 ` [Intel-wired-lan] [PATCH 4/5] idpf: skip setting channels " Li Li via Intel-wired-lan
2026-01-07 1:05 ` [Intel-wired-lan] [PATCH 5/5] idpf: skip stopping/opening vport if it " Li Li via Intel-wired-lan
2026-01-09 6:06 ` Loktionov, Aleksandr
2026-01-09 6:10 ` Loktionov, Aleksandr
2026-01-07 5:30 ` Paul Menzel [this message]
2026-01-07 18:39 ` [Intel-wired-lan] [PATCH 1/5] idpf: skip getting/setting ring params if vport " Li Li via Intel-wired-lan
2026-01-07 17:41 ` Tantilov, Emil S
2026-01-07 18:40 ` Li Li via Intel-wired-lan
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=fba866fa-5ed7-4321-8776-e1585b4c417b@molgen.mpg.de \
--to=pmenzel@molgen.mpg.de \
--cc=anjali.singhai@intel.com \
--cc=anthony.l.nguyen@intel.com \
--cc=boolli@google.com \
--cc=brianvv@google.com \
--cc=davem@davemloft.net \
--cc=decot@google.com \
--cc=edumazet@google.com \
--cc=emil.s.tantilov@intel.com \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=przemyslaw.kitszel@intel.com \
--cc=sridhar.samudrala@intel.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