From: Cyrill Gorcunov <gorcunov@gmail.com>
To: linux-kernel@vger.kernel.org, netdev@vger.kernel.org
Cc: Simon Horman <horms@kernel.org>,
anthony.l.nguyen@intel.com, przemyslaw.kitszel@intel.com,
Cyrill Gorcunov <gorcunov@gmail.com>
Subject: [patch 2/2] ice: Fix wrong dsn read in ice_adapter_put
Date: Fri, 22 May 2026 17:22:41 +0300 [thread overview]
Message-ID: <20260522142517.550660367@gmail.com> (raw)
In-Reply-To: 20260522142239.628965142@gmail.com
When registering an adapter instance, we read the PCI configuration
space to fetch the DSN and generate an adapter index for lookups.
However, if the adapter has been physically unplugged, the PCI space
is no longer accessible. Reading it returns a zero value, which results
in either an incorrect adapter instance being put or the proper instance
not being put at all. To fix this, we will use the previously known
index instead.
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
---
drivers/net/ethernet/intel/ice/ice_adapter.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
Index: linux-tip.git/drivers/net/ethernet/intel/ice/ice_adapter.c
===================================================================
--- linux-tip.git.orig/drivers/net/ethernet/intel/ice/ice_adapter.c
+++ linux-tip.git/drivers/net/ethernet/intel/ice/ice_adapter.c
@@ -40,10 +40,8 @@ static u64 ice_adapter_index(struct pci_
}
}
-static unsigned long ice_adapter_xa_index(struct pci_dev *pdev)
+static unsigned long xa_index_mangle(u64 index)
{
- u64 index = ice_adapter_index(pdev);
-
#if BITS_PER_LONG == 64
return index;
#else
@@ -51,6 +49,11 @@ static unsigned long ice_adapter_xa_inde
#endif
}
+static unsigned long ice_adapter_xa_index(struct pci_dev *pdev)
+{
+ return xa_index_mangle(ice_adapter_index(pdev));
+}
+
static struct ice_adapter *ice_adapter_new(struct pci_dev *pdev)
{
struct ice_adapter *adapter;
@@ -130,13 +133,17 @@ struct ice_adapter *ice_adapter_get(stru
*/
void ice_adapter_put(struct pci_dev *pdev)
{
+ const struct ice_pf *pf = pci_get_drvdata(pdev);
struct ice_adapter *adapter;
unsigned long index;
- index = ice_adapter_xa_index(pdev);
+ if (WARN_ON(!pf->adapter))
+ return;
+
scoped_guard(mutex, &ice_adapters_mutex) {
+ index = xa_index_mangle(pf->adapter->index);
adapter = xa_load(&ice_adapters, index);
- if (WARN_ON(!adapter))
+ if (WARN_ON(!adapter || adapter != pf->adapter))
return;
if (!refcount_dec_and_test(&adapter->refcount))
return;
prev parent reply other threads:[~2026-05-22 14:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-22 14:22 [patch 0/2] ice: Handle nits in physical card removal Cyrill Gorcunov
2026-05-22 14:22 ` [patch 1/2] ice: Use ICE_FW_RECOVERY_MODE state to track recovery mode Cyrill Gorcunov
2026-05-22 14:22 ` Cyrill Gorcunov [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=20260522142517.550660367@gmail.com \
--to=gorcunov@gmail.com \
--cc=anthony.l.nguyen@intel.com \
--cc=horms@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=przemyslaw.kitszel@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