* [PATCH 1/1] cxl/test: Rework cxl_type2_mem_init() to use cxl_mock_platform_device_add()
@ 2026-07-13 6:15 Li Ming
2026-07-13 17:15 ` Dave Jiang
2026-07-14 16:48 ` Dave Jiang
0 siblings, 2 replies; 3+ messages in thread
From: Li Ming @ 2026-07-13 6:15 UTC (permalink / raw)
To: dave, jic23, dave.jiang, alison.schofield, vishal.l.verma, djbw, iweiny
Cc: linux-cxl, linux-kernel
cxl_type2_mem_init() is used to set up mock CXL type2 memory device for
cxl testing, it introduces a known bug fixed by the following commit:
commit d90f236f8b9e ("cxl/test: Update mock dev array before calling platform_device_add()")
Mock CXL devices require updating the mock device array prior to
platform_device_add(), otherwise, the CXL subsystem could fail to
recognize the newly added mock device. Switch to
cxl_mock_platform_device_add() helper to resolve this ordering issue.
Besides, this patch also includes two minor changes.
1. Preserve the original error code returned by
cxl_mock_platform_device_add(), rather than unconditionally
overriding it with -ENOMEM.
2. Drop redundant NULL check before platform_device_unregister(), as the
function internally handles NULL pointer.
Fixes: 6b2e585142e6 ("cxl/test: Add hierarchy enumeration support for type2 device")
Signed-off-by: Li Ming <ming.li@zohomail.com>
---
base-commit: 31adec5c3dc489966e6061cbe427dddb81d2e6b5 cxl/next
---
tools/testing/cxl/test/cxl.c | 17 ++++-------------
1 file changed, 4 insertions(+), 13 deletions(-)
diff --git a/tools/testing/cxl/test/cxl.c b/tools/testing/cxl/test/cxl.c
index 8ab2ce1262f3..62bd92b3be45 100644
--- a/tools/testing/cxl/test/cxl.c
+++ b/tools/testing/cxl/test/cxl.c
@@ -1947,25 +1947,16 @@ static int cxl_type2_mem_init(void)
pdev->dev.parent = &dport->dev;
set_dev_node(&pdev->dev, i % 2);
- rc = platform_device_add(pdev);
- if (rc) {
- rc = -ENOMEM;
- platform_device_put(pdev);
+ rc = cxl_mock_platform_device_add(pdev, &cxl_mem[i]);
+ if (rc)
goto err_mem;
- }
- cxl_mem[i] = pdev;
}
return 0;
err_mem:
- for (i = NR_CXL_TYPE2_ACCEL - 1; i >= 0; i--) {
- struct platform_device *pdev = cxl_mem[i];
-
- if (!pdev)
- continue;
- platform_device_unregister(pdev);
- }
+ for (i = NR_CXL_TYPE2_ACCEL - 1; i >= 0; i--)
+ platform_device_unregister(cxl_mem[i]);
return rc;
}
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] cxl/test: Rework cxl_type2_mem_init() to use cxl_mock_platform_device_add()
2026-07-13 6:15 [PATCH 1/1] cxl/test: Rework cxl_type2_mem_init() to use cxl_mock_platform_device_add() Li Ming
@ 2026-07-13 17:15 ` Dave Jiang
2026-07-14 16:48 ` Dave Jiang
1 sibling, 0 replies; 3+ messages in thread
From: Dave Jiang @ 2026-07-13 17:15 UTC (permalink / raw)
To: Li Ming, dave, jic23, alison.schofield, vishal.l.verma, djbw, iweiny
Cc: linux-cxl, linux-kernel
On 7/12/26 11:15 PM, Li Ming wrote:
> cxl_type2_mem_init() is used to set up mock CXL type2 memory device for
> cxl testing, it introduces a known bug fixed by the following commit:
>
> commit d90f236f8b9e ("cxl/test: Update mock dev array before calling platform_device_add()")
>
> Mock CXL devices require updating the mock device array prior to
> platform_device_add(), otherwise, the CXL subsystem could fail to
> recognize the newly added mock device. Switch to
> cxl_mock_platform_device_add() helper to resolve this ordering issue.
>
> Besides, this patch also includes two minor changes.
> 1. Preserve the original error code returned by
> cxl_mock_platform_device_add(), rather than unconditionally
> overriding it with -ENOMEM.
> 2. Drop redundant NULL check before platform_device_unregister(), as the
> function internally handles NULL pointer.
>
> Fixes: 6b2e585142e6 ("cxl/test: Add hierarchy enumeration support for type2 device")
> Signed-off-by: Li Ming <ming.li@zohomail.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
> ---
> base-commit: 31adec5c3dc489966e6061cbe427dddb81d2e6b5 cxl/next
> ---
> tools/testing/cxl/test/cxl.c | 17 ++++-------------
> 1 file changed, 4 insertions(+), 13 deletions(-)
>
> diff --git a/tools/testing/cxl/test/cxl.c b/tools/testing/cxl/test/cxl.c
> index 8ab2ce1262f3..62bd92b3be45 100644
> --- a/tools/testing/cxl/test/cxl.c
> +++ b/tools/testing/cxl/test/cxl.c
> @@ -1947,25 +1947,16 @@ static int cxl_type2_mem_init(void)
> pdev->dev.parent = &dport->dev;
> set_dev_node(&pdev->dev, i % 2);
>
> - rc = platform_device_add(pdev);
> - if (rc) {
> - rc = -ENOMEM;
> - platform_device_put(pdev);
> + rc = cxl_mock_platform_device_add(pdev, &cxl_mem[i]);
> + if (rc)
> goto err_mem;
> - }
> - cxl_mem[i] = pdev;
> }
>
> return 0;
>
> err_mem:
> - for (i = NR_CXL_TYPE2_ACCEL - 1; i >= 0; i--) {
> - struct platform_device *pdev = cxl_mem[i];
> -
> - if (!pdev)
> - continue;
> - platform_device_unregister(pdev);
> - }
> + for (i = NR_CXL_TYPE2_ACCEL - 1; i >= 0; i--)
> + platform_device_unregister(cxl_mem[i]);
> return rc;
> }
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] cxl/test: Rework cxl_type2_mem_init() to use cxl_mock_platform_device_add()
2026-07-13 6:15 [PATCH 1/1] cxl/test: Rework cxl_type2_mem_init() to use cxl_mock_platform_device_add() Li Ming
2026-07-13 17:15 ` Dave Jiang
@ 2026-07-14 16:48 ` Dave Jiang
1 sibling, 0 replies; 3+ messages in thread
From: Dave Jiang @ 2026-07-14 16:48 UTC (permalink / raw)
To: Li Ming, dave, jic23, alison.schofield, vishal.l.verma, djbw, iweiny
Cc: linux-cxl, linux-kernel
On 7/12/26 11:15 PM, Li Ming wrote:
> cxl_type2_mem_init() is used to set up mock CXL type2 memory device for
> cxl testing, it introduces a known bug fixed by the following commit:
>
> commit d90f236f8b9e ("cxl/test: Update mock dev array before calling platform_device_add()")
>
> Mock CXL devices require updating the mock device array prior to
> platform_device_add(), otherwise, the CXL subsystem could fail to
> recognize the newly added mock device. Switch to
> cxl_mock_platform_device_add() helper to resolve this ordering issue.
>
> Besides, this patch also includes two minor changes.
> 1. Preserve the original error code returned by
> cxl_mock_platform_device_add(), rather than unconditionally
> overriding it with -ENOMEM.
> 2. Drop redundant NULL check before platform_device_unregister(), as the
> function internally handles NULL pointer.
>
> Fixes: 6b2e585142e6 ("cxl/test: Add hierarchy enumeration support for type2 device")
> Signed-off-by: Li Ming <ming.li@zohomail.com>
Applied to cxl/next
9515af581da976911aea820175afb05be803ae8c
> ---
> base-commit: 31adec5c3dc489966e6061cbe427dddb81d2e6b5 cxl/next
> ---
> tools/testing/cxl/test/cxl.c | 17 ++++-------------
> 1 file changed, 4 insertions(+), 13 deletions(-)
>
> diff --git a/tools/testing/cxl/test/cxl.c b/tools/testing/cxl/test/cxl.c
> index 8ab2ce1262f3..62bd92b3be45 100644
> --- a/tools/testing/cxl/test/cxl.c
> +++ b/tools/testing/cxl/test/cxl.c
> @@ -1947,25 +1947,16 @@ static int cxl_type2_mem_init(void)
> pdev->dev.parent = &dport->dev;
> set_dev_node(&pdev->dev, i % 2);
>
> - rc = platform_device_add(pdev);
> - if (rc) {
> - rc = -ENOMEM;
> - platform_device_put(pdev);
> + rc = cxl_mock_platform_device_add(pdev, &cxl_mem[i]);
> + if (rc)
> goto err_mem;
> - }
> - cxl_mem[i] = pdev;
> }
>
> return 0;
>
> err_mem:
> - for (i = NR_CXL_TYPE2_ACCEL - 1; i >= 0; i--) {
> - struct platform_device *pdev = cxl_mem[i];
> -
> - if (!pdev)
> - continue;
> - platform_device_unregister(pdev);
> - }
> + for (i = NR_CXL_TYPE2_ACCEL - 1; i >= 0; i--)
> + platform_device_unregister(cxl_mem[i]);
> return rc;
> }
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-14 16:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-13 6:15 [PATCH 1/1] cxl/test: Rework cxl_type2_mem_init() to use cxl_mock_platform_device_add() Li Ming
2026-07-13 17:15 ` Dave Jiang
2026-07-14 16:48 ` Dave Jiang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox