From: Dave Jiang <dave.jiang@intel.com>
To: dan.j.williams@intel.com, linux-cxl@vger.kernel.org
Cc: dave@stgolabs.net, jonathan.cameron@huawei.com,
alison.schofield@intel.com, vishal.l.verma@intel.com,
ira.weiny@intel.com
Subject: Re: [PATCH v2 2/3] cxl: Fix race of nvdimm_bus object when creating nvdimm objects
Date: Wed, 11 Feb 2026 17:00:36 -0700 [thread overview]
Message-ID: <4f0b321d-0f4a-41e8-9e84-9db66f3cb16c@intel.com> (raw)
In-Reply-To: <698d170d45750_8c3210044@dwillia2-mobl4.notmuch>
On 2/11/26 4:55 PM, dan.j.williams@intel.com wrote:
> Dave Jiang wrote:
>> Found issue during running of cxl-translate.sh unit test. Adding a 3s
>> sleep right before the test seems to make the issue reproduce fairly
>> consistently. The cxl_translate module has dependency on cxl_acpi and
>> causes orphaned nvdimm objects to reprobe after cxl_acpi is removed.
>> The nvdimm_bus object is registered by the cxl_nvb object when
>> cxl_acpi_probe() is called. With the nvdimm_bus object missing,
>> __nd_device_register() will trigger NULL pointer dereference when
>> accessing the dev->parent that points to &nvdimm_bus->dev.
>>
>
> Please trim backtraces of useless info, something like:
>
> BUG: kernel NULL pointer dereference, address: 000000000000006c
> Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS edk2-20250812-19.fc42 08/12/2025
> Workqueue: cxl_port cxl_bus_rescan_queue [cxl_core]
> RIP: 0010:kobject_get+0xc/0x90
> Call Trace:
> <TASK>
> ? pm_runtime_init+0xb9/0xe0
> __nd_device_register.part.0+0x4d/0xc0 [libnvdimm]
> __nvdimm_create+0x206/0x290 [libnvdimm]
> cxl_nvdimm_probe+0x119/0x1d0 [cxl_pmem]
> cxl_bus_probe+0x1a/0x60 [cxl_core]
> really_probe+0xde/0x380
>>
>> 1. Set probe_type of cxl_nvb to PROBE_FORCE_SYNCHRONOUS to ensure the
>> driver is probed synchronously when add_device() is called.
>> 2. Add a check after add_device() for cxl_nvb to ensure the driver is
>> bound, which also means the nvdimm_bus object is registered.
>> 3. Add a check in __nd_device_register() to avoid NULL pointer
>> dereference when nvdimm_bus is not registered.
>
> This is not done in this patch and not needed.
>
>> Hold the uport_dev
>> lock of the cxl rootport to sychronize between cxl_acpi_probe() and
>> cxl_devm_cxl_add_nvdimm(). Also hold the cxl_nvb->dev lock to ensure
>> a consistent state of if the driver is bound (or not).
>> 4. Add a check for nvdimm_bus in cxl_nvdimm_probe() to avoid accessing
>> without nvdimm_bus for unbound nvdimm object reprobes.
>
> See below, I would have expected that deleting stale nvdimm devices
> would also be part of this patch.
>
>>
>> This fix also requies the commit that moves devm_cxl_add_nvdimm_bridge()
>> from core/pmem.c to pmem.c.
>>
>> Fixes: 21083f51521f ("cxl/pmem: Register 'pmem' / cxl_nvdimm devices")
>> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
>> ---
>> drivers/cxl/core/pmem.c | 13 +++++++++++++
>> drivers/cxl/pmem.c | 13 +++++++++++++
>> 2 files changed, 26 insertions(+)
>>
>> diff --git a/drivers/cxl/core/pmem.c b/drivers/cxl/core/pmem.c
>> index 50557d71a45f..f7f784047450 100644
>> --- a/drivers/cxl/core/pmem.c
>> +++ b/drivers/cxl/core/pmem.c
>> @@ -175,6 +175,19 @@ int devm_cxl_add_nvdimm(struct device *host, struct cxl_port *port,
>> if (!cxl_nvb)
>> return -ENODEV;
>>
>> + /*
>> + * Take the uport_dev lock to guard against race of nvdimm_bus object.
>> + * cxl_acpi_probe() registers the nvdimm_bus and is done under the
>> + * root port uport_dev lock.
>> + *
>> + * Take the cxl_nvb device lock to ensure that cxl_nvb driver is in a
>> + * consistent state. And the driver registers nvdimm_bus.
>> + */
>> + guard(device)(cxl_nvb->port->uport_dev);
>> + guard(device)(&cxl_nvb->dev);
>> + if (!cxl_nvb->nvdimm_bus)
>> + return -ENODEV;
>> +
>> cxl_nvd = cxl_nvdimm_alloc(cxl_nvb, cxlmd);
>> if (IS_ERR(cxl_nvd)) {
>> rc = PTR_ERR(cxl_nvd);
>> diff --git a/drivers/cxl/pmem.c b/drivers/cxl/pmem.c
>> index 6f010b3cce44..0b200be1fd36 100644
>> --- a/drivers/cxl/pmem.c
>> +++ b/drivers/cxl/pmem.c
>> @@ -85,6 +85,15 @@ struct cxl_nvdimm_bridge *devm_cxl_add_nvdimm_bridge(struct device *host,
>> if (rc)
>> goto err;
>>
>> + /* Ensure that cxl_nvb driver has been bound since it is synchronous. */
>> + device_lock(dev);
>> + if (!dev->driver) {
>> + device_unlock(dev);
>> + unregister_nvb(cxl_nvb);
>> + return ERR_PTR(-ENODEV);
>> + }
>> + device_unlock(dev);
>
> This can be a cxl_nvdimm_bridge_failed_attach() helper what uses
> guard().
>
>> +
>> rc = devm_add_action_or_reset(host, unregister_nvb, cxl_nvb);
>> if (rc)
>> return ERR_PTR(rc);
>> @@ -213,6 +222,9 @@ static int cxl_nvdimm_probe(struct device *dev)
>> struct nvdimm *nvdimm;
>> int rc;
>>
>> + if (!cxl_nvb->nvdimm_bus)
>> + return -ENODEV;
>
> If I understand the failure scenario correctly, this is racy. What keeps
> nvdimm_bus valid for the duration of cxl_nvdimm probe?
With patch 3 merged into this one, we can drop this check as there wouldn't be any devices to probe.
>
> This is why I think the cxl_nvdimm_bridge disable path needs to evacuate
> all prior cxl_nvdimm objects that saw nvdimm_bus live at their
> registration time.
Right I split that out because I was worried about patch size for review. I'll squash the two.
next prev parent reply other threads:[~2026-02-12 0:00 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-11 23:26 [PATCH v2 0/3] cxl: Fix nvdimm_bus race for nvdimm devices Dave Jiang
2026-02-11 23:26 ` [PATCH v2 1/3] cxl: Move devm_cxl_add_nvdimm_bridge() to cxl_pmem.ko Dave Jiang
2026-02-11 23:46 ` dan.j.williams
2026-02-11 23:26 ` [PATCH v2 2/3] cxl: Fix race of nvdimm_bus object when creating nvdimm objects Dave Jiang
2026-02-11 23:55 ` dan.j.williams
2026-02-12 0:00 ` Dave Jiang [this message]
2026-02-11 23:26 ` [PATCH v2 3/3] cxl: Clean up cxl_nvdimm devices when removing nvdimm_bus Dave Jiang
2026-02-12 0:23 ` dan.j.williams
2026-02-12 6:01 ` kernel test robot
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=4f0b321d-0f4a-41e8-9e84-9db66f3cb16c@intel.com \
--to=dave.jiang@intel.com \
--cc=alison.schofield@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dave@stgolabs.net \
--cc=ira.weiny@intel.com \
--cc=jonathan.cameron@huawei.com \
--cc=linux-cxl@vger.kernel.org \
--cc=vishal.l.verma@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