* [PATCH] lib: test_hmm: use device devt for coherent device range selection
@ 2026-06-29 23:30 Stanislav Kinsburskii
2026-06-30 0:06 ` Andrew Morton
2026-07-06 4:29 ` Alistair Popple
0 siblings, 2 replies; 3+ messages in thread
From: Stanislav Kinsburskii @ 2026-06-29 23:30 UTC (permalink / raw)
To: akpm, jgg, leon, skinsburskii; +Cc: linux-kernel, linux-mm
Commit af69016dab96 ("lib: test_hmm: implement a device release method")
moved the initial dmirror_allocate_chunk() call before cdev_device_add().
That means the struct cdev has not been added yet, so cdev_add() has not
initialized mdevice->cdevice.dev.
The coherent-device range selection uses the device minor to choose between
spm_addr_dev0 and spm_addr_dev1. Reading MINOR(mdevice->cdevice.dev) before
cdev_add() therefore always sees an uninitialized dev_t. As a result, both
coherent devices select the same physical range, and adding the second
device fails due to the overlapping dev_pagemap range.
Use mdevice->device.devt instead. It is initialized in
dmirror_device_init() before dmirror_allocate_chunk() is called and is the
same dev_t later passed to cdev_device_add().
Fixes: af69016dab96 ("lib: test_hmm: implement a device release method")
Signed-off-by: Stanislav Kinsburskii <skinsburskii@gmail.com>
---
lib/test_hmm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/test_hmm.c b/lib/test_hmm.c
index 9c59d1ceb5b5..c4adbf98fac7 100644
--- a/lib/test_hmm.c
+++ b/lib/test_hmm.c
@@ -581,7 +581,7 @@ static int dmirror_allocate_chunk(struct dmirror_device *mdevice,
devmem->pagemap.type = MEMORY_DEVICE_PRIVATE;
break;
case HMM_DMIRROR_MEMORY_DEVICE_COHERENT:
- devmem->pagemap.range.start = (MINOR(mdevice->cdevice.dev) - 2) ?
+ devmem->pagemap.range.start = (MINOR(mdevice->device.devt) - 2) ?
spm_addr_dev0 :
spm_addr_dev1;
devmem->pagemap.range.end = devmem->pagemap.range.start +
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] lib: test_hmm: use device devt for coherent device range selection
2026-06-29 23:30 [PATCH] lib: test_hmm: use device devt for coherent device range selection Stanislav Kinsburskii
@ 2026-06-30 0:06 ` Andrew Morton
2026-07-06 4:29 ` Alistair Popple
1 sibling, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2026-06-30 0:06 UTC (permalink / raw)
To: Stanislav Kinsburskii
Cc: jgg, leon, linux-kernel, linux-mm, Alistair Popple, Balbir Singh,
Zenghui Yu
On Mon, 29 Jun 2026 16:30:14 -0700 Stanislav Kinsburskii <skinsburskii@gmail.com> wrote:
> Commit af69016dab96 ("lib: test_hmm: implement a device release method")
> moved the initial dmirror_allocate_chunk() call before cdev_device_add().
> That means the struct cdev has not been added yet, so cdev_add() has not
> initialized mdevice->cdevice.dev.
>
> The coherent-device range selection uses the device minor to choose between
> spm_addr_dev0 and spm_addr_dev1. Reading MINOR(mdevice->cdevice.dev) before
> cdev_add() therefore always sees an uninitialized dev_t. As a result, both
> coherent devices select the same physical range, and adding the second
> device fails due to the overlapping dev_pagemap range.
>
> Use mdevice->device.devt instead. It is initialized in
> dmirror_device_init() before dmirror_allocate_chunk() is called and is the
> same dev_t later passed to cdev_device_add().
Thanks.
> Fixes: af69016dab96 ("lib: test_hmm: implement a device release method")
We should cc the people involved with that commit. Added.
> --- a/lib/test_hmm.c
> +++ b/lib/test_hmm.c
> @@ -581,7 +581,7 @@ static int dmirror_allocate_chunk(struct dmirror_device *mdevice,
> devmem->pagemap.type = MEMORY_DEVICE_PRIVATE;
> break;
> case HMM_DMIRROR_MEMORY_DEVICE_COHERENT:
> - devmem->pagemap.range.start = (MINOR(mdevice->cdevice.dev) - 2) ?
> + devmem->pagemap.range.start = (MINOR(mdevice->device.devt) - 2) ?
> spm_addr_dev0 :
> spm_addr_dev1;
> devmem->pagemap.range.end = devmem->pagemap.range.start +
>
af69016dab96 had cc:stable, so I'll add cc:stable to this patch, to
help ensure that it lands in the appropriate places.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] lib: test_hmm: use device devt for coherent device range selection
2026-06-29 23:30 [PATCH] lib: test_hmm: use device devt for coherent device range selection Stanislav Kinsburskii
2026-06-30 0:06 ` Andrew Morton
@ 2026-07-06 4:29 ` Alistair Popple
1 sibling, 0 replies; 3+ messages in thread
From: Alistair Popple @ 2026-07-06 4:29 UTC (permalink / raw)
To: Stanislav Kinsburskii; +Cc: akpm, jgg, leon, linux-kernel, linux-mm
On 2026-06-30 at 09:30 +1000, Stanislav Kinsburskii <skinsburskii@gmail.com> wrote...
> Commit af69016dab96 ("lib: test_hmm: implement a device release method")
> moved the initial dmirror_allocate_chunk() call before cdev_device_add().
> That means the struct cdev has not been added yet, so cdev_add() has not
> initialized mdevice->cdevice.dev.
>
> The coherent-device range selection uses the device minor to choose between
> spm_addr_dev0 and spm_addr_dev1. Reading MINOR(mdevice->cdevice.dev) before
> cdev_add() therefore always sees an uninitialized dev_t. As a result, both
> coherent devices select the same physical range, and adding the second
> device fails due to the overlapping dev_pagemap range.
>
> Use mdevice->device.devt instead. It is initialized in
> dmirror_device_init() before dmirror_allocate_chunk() is called and is the
> same dev_t later passed to cdev_device_add().
>
> Fixes: af69016dab96 ("lib: test_hmm: implement a device release method")
> Signed-off-by: Stanislav Kinsburskii <skinsburskii@gmail.com>
> ---
> lib/test_hmm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/test_hmm.c b/lib/test_hmm.c
> index 9c59d1ceb5b5..c4adbf98fac7 100644
> --- a/lib/test_hmm.c
> +++ b/lib/test_hmm.c
> @@ -581,7 +581,7 @@ static int dmirror_allocate_chunk(struct dmirror_device *mdevice,
> devmem->pagemap.type = MEMORY_DEVICE_PRIVATE;
> break;
> case HMM_DMIRROR_MEMORY_DEVICE_COHERENT:
> - devmem->pagemap.range.start = (MINOR(mdevice->cdevice.dev) - 2) ?
> + devmem->pagemap.range.start = (MINOR(mdevice->device.devt) - 2) ?
Makes sense to me. As Andrew mentioned we should cc: stable, but I assume he
will add that so:
Reviewed-by: Alistair Popple <apopple@nvidia.com>
> spm_addr_dev0 :
> spm_addr_dev1;
> devmem->pagemap.range.end = devmem->pagemap.range.start +
>
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-06 4:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-29 23:30 [PATCH] lib: test_hmm: use device devt for coherent device range selection Stanislav Kinsburskii
2026-06-30 0:06 ` Andrew Morton
2026-07-06 4:29 ` Alistair Popple
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox