Linux-NVME Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/5] nvme: a few error-path and validation fixes
@ 2026-07-31  3:20 Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 1/5] nvmet: fix NULL pointer dereference in nvmet_execute_identify_nslist() Guixin Liu
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Guixin Liu @ 2026-07-31  3:20 UTC (permalink / raw)
  To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg,
	Hannes Reinecke, nilay, Chaitanya Kulkarni, Kanchan Joshi
  Cc: linux-nvme

This series collects independent fixes found while auditing error and
command-processing paths in the NVMe host and target drivers. Each is
standalone; they only share the same subsystem.

  1. nvmet: an Identify CNS 07h (active NS list for a command set)
     dereferences req->ns, which is always NULL on that path -> NULL
     pointer oops. Also fixes the filter to test the iterated ns->csi.

  2. nvmet: nvmet_ns_enable() ignores the percpu_ref_init() return value
     and reports success to userspace when it fails, leaving the ns dead.

  3. nvme-pci: the per-NUMA-node descriptor DMA pools, created lazily on
     admin tag set allocation, are only freed in nvme_remove(); a probe
     failure after that point leaks them.

  4. nvme: nvme_query_fdp_info() trusts the device-supplied nruhsd count
     and can read past the fixed-size RUH status buffer (heap OOB read).

  5. nvme: follow-up to #4, suggested by Kanchan -- the RUH status buffer
     and the placement handle clamp used the odd S8_MAX - 1 value; raise
     the cap to the meaningful U8_MAX (bio->bi_write_stream is u8) and
     warn on overflow.

Found by code audit. #1 and #2 are functional/crash fixes; #3 is a
resource leak; #4 is device-triggered hardening; #5 tidies up the cap
introduced by #4.

A blktests regression test for #1 (Identify CNS 07h) will be sent
separately to the blktests list.

v1 -> v2:
  - Collected Reviewed-by tags from Hannes, Christoph, Kanchan and Nilay,
    thanks.
  - patch 1: added the observed NULL-deref oops splat to the commit log.
  - Added patch 5 (raise the FDP handle cap to U8_MAX and warn on
    overflow), as discussed on patch 4 with Keith, Christoph and Kanchan.

Guixin Liu (5):
  nvmet: fix NULL pointer dereference in nvmet_execute_identify_nslist()
  nvmet: propagate percpu_ref_init() failure in nvmet_ns_enable()
  nvme-pci: release descriptor pools on probe failure
  nvme: clamp FDP placement handle count to the buffer size
  nvme: raise FDP placement handle cap to U8_MAX and warn on overflow

 drivers/nvme/host/core.c        | 18 ++++++++++++++++--
 drivers/nvme/host/pci.c         |  1 +
 drivers/nvme/target/admin-cmd.c |  2 +-
 drivers/nvme/target/core.c      |  3 ++-
 4 files changed, 20 insertions(+), 4 deletions(-)


base-commit: 11028ab62899e4191e074ee364c712b77823a9c4
-- 
2.43.7



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v2 1/5] nvmet: fix NULL pointer dereference in nvmet_execute_identify_nslist()
  2026-07-31  3:20 [PATCH v2 0/5] nvme: a few error-path and validation fixes Guixin Liu
@ 2026-07-31  3:20 ` Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 2/5] nvmet: propagate percpu_ref_init() failure in nvmet_ns_enable() Guixin Liu
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Guixin Liu @ 2026-07-31  3:20 UTC (permalink / raw)
  To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg,
	Hannes Reinecke, nilay, Chaitanya Kulkarni, Kanchan Joshi
  Cc: linux-nvme

When a host issues an Identify command with CNS 07h (Active Namespace ID
List for a specific I/O Command Set), nvmet_execute_identify_nslist() is
called with match_css set. The command-set filter dereferences req->ns,
but this handler never calls nvmet_req_find_ns(), so req->ns is always
NULL (nvmet_req_init() resets it to NULL). As soon as an enabled
namespace with an NSID greater than the requested value exists,
req->ns->csi dereferences a NULL pointer and oopses:

  BUG: kernel NULL pointer dereference, address: 00000000000001c4
  #PF: supervisor read access in kernel mode
  CPU: 8 PID: 57928 Comm: kworker/u130:2
  RIP: 0010:nvmet_execute_identify_nslist+0x12b/0x1c0 [nvmet]
  Call Trace:
   <TASK>
   process_one_work+0x19e/0x370
   worker_thread+0x1a6/0x310
   kthread+0xe4/0x120
   </TASK>

Besides the crash, the comparison is logically wrong: to filter the list
by command set it must test the command set of the namespace being
iterated, not a single fixed value. Use the loop variable ns->csi.

Fixes: 61c9967cd634 ("nvmet: implement active command set ns list")
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Nilay Shroff <nilay@linux.ibm.com>
---
 drivers/nvme/target/admin-cmd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nvme/target/admin-cmd.c b/drivers/nvme/target/admin-cmd.c
index 01b799e92ae6..ab6a0a98dd5d 100644
--- a/drivers/nvme/target/admin-cmd.c
+++ b/drivers/nvme/target/admin-cmd.c
@@ -958,7 +958,7 @@ static void nvmet_execute_identify_nslist(struct nvmet_req *req, bool match_css)
 	nvmet_for_each_enabled_ns(&ctrl->subsys->namespaces, idx, ns) {
 		if (ns->nsid <= min_nsid)
 			continue;
-		if (match_css && req->ns->csi != req->cmd->identify.csi)
+		if (match_css && ns->csi != req->cmd->identify.csi)
 			continue;
 		list[i++] = cpu_to_le32(ns->nsid);
 		if (i == buf_size / sizeof(__le32))
-- 
2.43.7



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 2/5] nvmet: propagate percpu_ref_init() failure in nvmet_ns_enable()
  2026-07-31  3:20 [PATCH v2 0/5] nvme: a few error-path and validation fixes Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 1/5] nvmet: fix NULL pointer dereference in nvmet_execute_identify_nslist() Guixin Liu
@ 2026-07-31  3:20 ` Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 3/5] nvme-pci: release descriptor pools on probe failure Guixin Liu
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Guixin Liu @ 2026-07-31  3:20 UTC (permalink / raw)
  To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg,
	Hannes Reinecke, nilay, Chaitanya Kulkarni, Kanchan Joshi
  Cc: linux-nvme

The return value of percpu_ref_init() is discarded. At this point ret is
0 from the preceding successful steps, so when the allocation inside
percpu_ref_init() fails the code jumps to the out_pr_exit cleanup chain
which ends with "return ret", i.e. reports success. The configfs enable
store then tells userspace the namespace was enabled even though it was
not and its backing device has already been torn down.

Capture the return value so the failure is propagated.

Fixes: 408232680707 ("nvmet: Fix crash when a namespace is disabled")
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Nilay Shroff <nilay@linux.ibm.com>
---
 drivers/nvme/target/core.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/nvme/target/core.c b/drivers/nvme/target/core.c
index 4477c4d6b1ee..c8e01dda4121 100644
--- a/drivers/nvme/target/core.c
+++ b/drivers/nvme/target/core.c
@@ -610,7 +610,8 @@ int nvmet_ns_enable(struct nvmet_ns *ns)
 			goto out_dev_put;
 	}
 
-	if (percpu_ref_init(&ns->ref, nvmet_destroy_namespace, 0, GFP_KERNEL))
+	ret = percpu_ref_init(&ns->ref, nvmet_destroy_namespace, 0, GFP_KERNEL);
+	if (ret)
 		goto out_pr_exit;
 
 	nvmet_ns_changed(subsys, ns->nsid);
-- 
2.43.7



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 3/5] nvme-pci: release descriptor pools on probe failure
  2026-07-31  3:20 [PATCH v2 0/5] nvme: a few error-path and validation fixes Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 1/5] nvmet: fix NULL pointer dereference in nvmet_execute_identify_nslist() Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 2/5] nvmet: propagate percpu_ref_init() failure in nvmet_ns_enable() Guixin Liu
@ 2026-07-31  3:20 ` Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 4/5] nvme: clamp FDP placement handle count to the buffer size Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 5/5] nvme: raise FDP placement handle cap to U8_MAX and warn on overflow Guixin Liu
  4 siblings, 0 replies; 8+ messages in thread
From: Guixin Liu @ 2026-07-31  3:20 UTC (permalink / raw)
  To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg,
	Hannes Reinecke, nilay, Chaitanya Kulkarni, Kanchan Joshi
  Cc: linux-nvme

The per-NUMA-node descriptor DMA pools are created lazily from
nvme_init_hctx_common() once the admin tag set is allocated, but they are
only destroyed in nvme_remove() via nvme_release_descriptor_pools(). Any
probe failure after the admin tag set has been allocated unwinds through
the out_disable label and nvme_pci_free_ctrl(), neither of which releases
the pools, leaking the dma_pool objects.

Release the descriptor pools in the out_disable error path. It must not
be added to nvme_pci_free_ctrl(), as that would double-free against
nvme_remove() on the normal teardown path.

Fixes: d977506f8863 ("nvme-pci: make PRP list DMA pools per-NUMA-node")
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Kanchan Joshi <joshi.k@samsung.com>
Reviewed-by: Nilay Shroff <nilay@linux.ibm.com>
---
 drivers/nvme/host/pci.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 69932d640b53..f1b24a53aa02 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -3838,6 +3838,7 @@ static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 	nvme_dev_remove_admin(dev);
 	nvme_dbbuf_dma_free(dev);
 	nvme_free_queues(dev, 0);
+	nvme_release_descriptor_pools(dev);
 out_release_iod_mempool:
 	mempool_destroy(dev->dmavec_mempool);
 out_dev_unmap:
-- 
2.43.7



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 4/5] nvme: clamp FDP placement handle count to the buffer size
  2026-07-31  3:20 [PATCH v2 0/5] nvme: a few error-path and validation fixes Guixin Liu
                   ` (2 preceding siblings ...)
  2026-07-31  3:20 ` [PATCH v2 3/5] nvme-pci: release descriptor pools on probe failure Guixin Liu
@ 2026-07-31  3:20 ` Guixin Liu
  2026-07-31  3:20 ` [PATCH v2 5/5] nvme: raise FDP placement handle cap to U8_MAX and warn on overflow Guixin Liu
  4 siblings, 0 replies; 8+ messages in thread
From: Guixin Liu @ 2026-07-31  3:20 UTC (permalink / raw)
  To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg,
	Hannes Reinecke, nilay, Chaitanya Kulkarni, Kanchan Joshi
  Cc: linux-nvme

nvme_query_fdp_info() allocates the RUH status buffer for at most
S8_MAX - 1 descriptors and caps the io-mgmt-receive transfer to that
size. head->nr_plids, however, is taken verbatim from the device-supplied
nruhsd field, which can be up to 65535. If a non-conformant or malicious
device reports more descriptors than the buffer holds, the copy loop
reads past the end of the ruhs buffer (heap out-of-bounds read).

Clamp nr_plids to the number of descriptors the buffer can actually hold.

Fixes: 30b5f20bb2dd ("nvme: register fdp parameters with the block layer")
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Kanchan Joshi <joshi.k@samsung.com>
Reviewed-by: Nilay Shroff <nilay@linux.ibm.com>
---
 drivers/nvme/host/core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 453c1f0b2dd0..b1f444cd3daf 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -2358,6 +2358,7 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
 	}
 
 	head->nr_plids = le16_to_cpu(ruhs->nruhsd);
+	head->nr_plids = min_t(u16, head->nr_plids, S8_MAX - 1);
 	if (!head->nr_plids)
 		goto free;
 
-- 
2.43.7



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 5/5] nvme: raise FDP placement handle cap to U8_MAX and warn on overflow
  2026-07-31  3:20 [PATCH v2 0/5] nvme: a few error-path and validation fixes Guixin Liu
                   ` (3 preceding siblings ...)
  2026-07-31  3:20 ` [PATCH v2 4/5] nvme: clamp FDP placement handle count to the buffer size Guixin Liu
@ 2026-07-31  3:20 ` Guixin Liu
  2026-07-31 16:36   ` Kanchan Joshi
  4 siblings, 1 reply; 8+ messages in thread
From: Guixin Liu @ 2026-07-31  3:20 UTC (permalink / raw)
  To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg,
	Hannes Reinecke, nilay, Chaitanya Kulkarni, Kanchan Joshi
  Cc: linux-nvme

The RUH status buffer and the placement-handle clamp used S8_MAX - 1
(126) as the maximum descriptor count. That value was picked only so the
io-mgmt-receive result fit in a page, not because of any protocol or
driver restriction.

The meaningful upper bound is U8_MAX: write hints (bio->bi_write_stream)
are u8, so placement handles beyond U8_MAX can never be selected. Size
the buffer and clamp nr_plids to U8_MAX, and emit a dev_warn() when the
device reports more handles than the driver tracks so the truncation is
observable.

Suggested-by: Kanchan Joshi <joshi.k@samsung.com>
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
---
 drivers/nvme/host/core.c | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index b1f444cd3daf..19c2fcc0923b 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -33,6 +33,13 @@
 
 #define NVME_MINORS		(1U << MINORBITS)
 
+/*
+ * Write hints (bio->bi_write_stream) are u8, so FDP placement handles beyond
+ * U8_MAX can never be selected. Cap the handle count to bound both the RUH
+ * status buffer and the per-head plids array.
+ */
+#define NVME_MAX_PLIDS		U8_MAX
+
 struct nvme_ns_info {
 	struct nvme_ns_ids ids;
 	u32 nsid;
@@ -2318,6 +2325,7 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
 	struct nvme_fdp_config fdp;
 	struct nvme_command c = {};
 	size_t size;
+	u16 nr_plids;
 	int i, ret;
 
 	/*
@@ -2342,7 +2350,7 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
 	if (!info->runs)
 		return ret;
 
-	size = struct_size(ruhs, ruhsd, S8_MAX - 1);
+	size = struct_size(ruhs, ruhsd, NVME_MAX_PLIDS);
 	ruhs = kzalloc(size, GFP_KERNEL);
 	if (!ruhs)
 		return -ENOMEM;
@@ -2357,8 +2365,13 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
 		goto free;
 	}
 
-	head->nr_plids = le16_to_cpu(ruhs->nruhsd);
-	head->nr_plids = min_t(u16, head->nr_plids, S8_MAX - 1);
+	nr_plids = le16_to_cpu(ruhs->nruhsd);
+	if (nr_plids > NVME_MAX_PLIDS)
+		dev_warn(ctrl->device,
+			 "FDP RUH status reports %u placement handles, capping at %u\n",
+			 nr_plids, NVME_MAX_PLIDS);
+
+	head->nr_plids = min_t(u16, nr_plids, NVME_MAX_PLIDS);
 	if (!head->nr_plids)
 		goto free;
 
-- 
2.43.7



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 5/5] nvme: raise FDP placement handle cap to U8_MAX and warn on overflow
  2026-07-31  3:20 ` [PATCH v2 5/5] nvme: raise FDP placement handle cap to U8_MAX and warn on overflow Guixin Liu
@ 2026-07-31 16:36   ` Kanchan Joshi
  2026-08-04  2:20     ` Guixin Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Kanchan Joshi @ 2026-07-31 16:36 UTC (permalink / raw)
  To: Guixin Liu, Keith Busch, Jens Axboe, Christoph Hellwig,
	Sagi Grimberg, Hannes Reinecke, nilay, Chaitanya Kulkarni
  Cc: linux-nvme

On 7/31/2026 8:50 AM, Guixin Liu wrote:
> @@ -2342,7 +2350,7 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
>   	if (!info->runs)
>   		return ret;
>   
> -	size = struct_size(ruhs, ruhsd, S8_MAX - 1);
> +	size = struct_size(ruhs, ruhsd, NVME_MAX_PLIDS);
>   	ruhs = kzalloc(size, GFP_KERNEL);
>   	if (!ruhs)
>   		return -ENOMEM;
> @@ -2357,8 +2365,13 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
>   		goto free;
>   	}
>   
> -	head->nr_plids = le16_to_cpu(ruhs->nruhsd);
> -	head->nr_plids = min_t(u16, head->nr_plids, S8_MAX - 1);
> +	nr_plids = le16_to_cpu(ruhs->nruhsd);
> +	if (nr_plids > NVME_MAX_PLIDS)

I'd move this check down; after if (!head->nr_plids) part below.

> +		dev_warn(ctrl->device,
> +			 "FDP RUH status reports %u placement handles, capping at %u\n",
> +			 nr_plids, NVME_MAX_PLIDS);
> +
> +	head->nr_plids = min_t(u16, nr_plids, NVME_MAX_PLIDS);

And will keep this in above if block, alongside dev_warn(). And kill 
that min_t with a simple
	head->nr_plids = NVME_MAX_PLIDS;

>   	if (!head->nr_plids)
>   		goto free;
>   

Modulo these nits
Reviewed-by: Kanchan Joshi <joshi.k@samsung.com>



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 5/5] nvme: raise FDP placement handle cap to U8_MAX and warn on overflow
  2026-07-31 16:36   ` Kanchan Joshi
@ 2026-08-04  2:20     ` Guixin Liu
  0 siblings, 0 replies; 8+ messages in thread
From: Guixin Liu @ 2026-08-04  2:20 UTC (permalink / raw)
  To: Kanchan Joshi, Keith Busch, Jens Axboe, Christoph Hellwig,
	Sagi Grimberg, Hannes Reinecke, nilay, Chaitanya Kulkarni
  Cc: linux-nvme



在 2026/8/1 00:36, Kanchan Joshi 写道:
> On 7/31/2026 8:50 AM, Guixin Liu wrote:
>> @@ -2342,7 +2350,7 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
>>    	if (!info->runs)
>>    		return ret;
>>    
>> -	size = struct_size(ruhs, ruhsd, S8_MAX - 1);
>> +	size = struct_size(ruhs, ruhsd, NVME_MAX_PLIDS);
>>    	ruhs = kzalloc(size, GFP_KERNEL);
>>    	if (!ruhs)
>>    		return -ENOMEM;
>> @@ -2357,8 +2365,13 @@ static int nvme_query_fdp_info(struct nvme_ns *ns, struct nvme_ns_info *info)
>>    		goto free;
>>    	}
>>    
>> -	head->nr_plids = le16_to_cpu(ruhs->nruhsd);
>> -	head->nr_plids = min_t(u16, head->nr_plids, S8_MAX - 1);
>> +	nr_plids = le16_to_cpu(ruhs->nruhsd);
>> +	if (nr_plids > NVME_MAX_PLIDS)
> I'd move this check down; after if (!head->nr_plids) part below.
>
>> +		dev_warn(ctrl->device,
>> +			 "FDP RUH status reports %u placement handles, capping at %u\n",
>> +			 nr_plids, NVME_MAX_PLIDS);
>> +
>> +	head->nr_plids = min_t(u16, nr_plids, NVME_MAX_PLIDS);
> And will keep this in above if block, alongside dev_warn(). And kill
> that min_t with a simple
> 	head->nr_plids = NVME_MAX_PLIDS;
>
>>    	if (!head->nr_plids)
>>    		goto free;
>>    
> Modulo these nits
> Reviewed-by: Kanchan Joshi <joshi.k@samsung.com>
Changed in v3, thanks.

Best Regards,
Guixin Liu



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2026-08-04  2:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-31  3:20 [PATCH v2 0/5] nvme: a few error-path and validation fixes Guixin Liu
2026-07-31  3:20 ` [PATCH v2 1/5] nvmet: fix NULL pointer dereference in nvmet_execute_identify_nslist() Guixin Liu
2026-07-31  3:20 ` [PATCH v2 2/5] nvmet: propagate percpu_ref_init() failure in nvmet_ns_enable() Guixin Liu
2026-07-31  3:20 ` [PATCH v2 3/5] nvme-pci: release descriptor pools on probe failure Guixin Liu
2026-07-31  3:20 ` [PATCH v2 4/5] nvme: clamp FDP placement handle count to the buffer size Guixin Liu
2026-07-31  3:20 ` [PATCH v2 5/5] nvme: raise FDP placement handle cap to U8_MAX and warn on overflow Guixin Liu
2026-07-31 16:36   ` Kanchan Joshi
2026-08-04  2:20     ` Guixin Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox