* [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data
@ 2024-08-15 20:11 Niklas Cassel
2024-08-16 4:52 ` Christoph Hellwig
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Niklas Cassel @ 2024-08-15 20:11 UTC (permalink / raw)
To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg
Cc: kamaljit.singh1, dlemoal, Niklas Cassel, linux-nvme
When sending a RDMA_CM_REQUEST, the NVMe RDMA Transport Specification
allows you to populate the cntlid field in the RDMA_CM_REQUEST Private
Data.
The cntlid is returned by the target on completion of the first
RDMA_CM_REQUEST command (which creates the admin queue).
The cntlid field can then be populated by the host when the I/O queues
are created (using additional RDMA_CM_REQUEST commands), such that the
target can perform extra validation for additional RDMA_CM_REQUEST
commands.
This additional error code and error message is also added, such that
nvme_rdma_cm_msg() will display the proper error message if the target
fails the RDMA_CM_REQUEST command because of this extra validation.
Signed-off-by: Niklas Cassel <cassel@kernel.org>
---
drivers/nvme/host/rdma.c | 2 ++
include/linux/nvme-rdma.h | 6 +++++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c
index 2eb33842f971..e3520a91147b 100644
--- a/drivers/nvme/host/rdma.c
+++ b/drivers/nvme/host/rdma.c
@@ -1876,6 +1876,8 @@ static int nvme_rdma_route_resolved(struct nvme_rdma_queue *queue)
*/
priv.hrqsize = cpu_to_le16(queue->queue_size);
priv.hsqsize = cpu_to_le16(queue->ctrl->ctrl.sqsize);
+ /* cntlid should only be set when creating an I/O queue */
+ priv.cntlid = cpu_to_le16(ctrl->ctrl.cntlid);
}
ret = rdma_connect_locked(queue->cm_id, ¶m);
diff --git a/include/linux/nvme-rdma.h b/include/linux/nvme-rdma.h
index eb2f04d636c8..97c5f00b9aa3 100644
--- a/include/linux/nvme-rdma.h
+++ b/include/linux/nvme-rdma.h
@@ -25,6 +25,7 @@ enum nvme_rdma_cm_status {
NVME_RDMA_CM_NO_RSC = 0x06,
NVME_RDMA_CM_INVALID_IRD = 0x07,
NVME_RDMA_CM_INVALID_ORD = 0x08,
+ NVME_RDMA_CM_INVALID_CNTLID = 0x09,
};
static inline const char *nvme_rdma_cm_msg(enum nvme_rdma_cm_status status)
@@ -46,6 +47,8 @@ static inline const char *nvme_rdma_cm_msg(enum nvme_rdma_cm_status status)
return "invalid IRD";
case NVME_RDMA_CM_INVALID_ORD:
return "Invalid ORD";
+ case NVME_RDMA_CM_INVALID_CNTLID:
+ return "invalid controller ID";
default:
return "unrecognized reason";
}
@@ -64,7 +67,8 @@ struct nvme_rdma_cm_req {
__le16 qid;
__le16 hrqsize;
__le16 hsqsize;
- u8 rsvd[24];
+ __le16 cntlid;
+ u8 rsvd[22];
};
/**
--
2.46.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data
2024-08-15 20:11 [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data Niklas Cassel
@ 2024-08-16 4:52 ` Christoph Hellwig
2024-08-26 9:27 ` Niklas Cassel
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Christoph Hellwig @ 2024-08-16 4:52 UTC (permalink / raw)
To: Niklas Cassel
Cc: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg,
kamaljit.singh1, dlemoal, linux-nvme
Looks good:
Reviewed-by: Christoph Hellwig <hch@lst.de>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data
2024-08-15 20:11 [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data Niklas Cassel
2024-08-16 4:52 ` Christoph Hellwig
@ 2024-08-26 9:27 ` Niklas Cassel
2024-08-26 10:40 ` Sagi Grimberg
2024-08-26 10:40 ` Sagi Grimberg
2024-08-26 15:15 ` Keith Busch
3 siblings, 1 reply; 6+ messages in thread
From: Niklas Cassel @ 2024-08-26 9:27 UTC (permalink / raw)
To: Keith Busch, Jens Axboe, Christoph Hellwig, Sagi Grimberg
Cc: kamaljit.singh1, dlemoal, linux-nvme
On Thu, Aug 15, 2024 at 10:11:31PM +0200, Niklas Cassel wrote:
> When sending a RDMA_CM_REQUEST, the NVMe RDMA Transport Specification
> allows you to populate the cntlid field in the RDMA_CM_REQUEST Private
> Data.
>
> The cntlid is returned by the target on completion of the first
> RDMA_CM_REQUEST command (which creates the admin queue).
>
> The cntlid field can then be populated by the host when the I/O queues
> are created (using additional RDMA_CM_REQUEST commands), such that the
> target can perform extra validation for additional RDMA_CM_REQUEST
> commands.
>
> This additional error code and error message is also added, such that
> nvme_rdma_cm_msg() will display the proper error message if the target
> fails the RDMA_CM_REQUEST command because of this extra validation.
>
> Signed-off-by: Niklas Cassel <cassel@kernel.org>
> ---
> drivers/nvme/host/rdma.c | 2 ++
> include/linux/nvme-rdma.h | 6 +++++-
> 2 files changed, 7 insertions(+), 1 deletion(-)
Hello NVMe maintainers,
is there any chance of getting this picked up?
Have a nice day!
Kind regards,
Niklas
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data
2024-08-15 20:11 [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data Niklas Cassel
2024-08-16 4:52 ` Christoph Hellwig
2024-08-26 9:27 ` Niklas Cassel
@ 2024-08-26 10:40 ` Sagi Grimberg
2024-08-26 15:15 ` Keith Busch
3 siblings, 0 replies; 6+ messages in thread
From: Sagi Grimberg @ 2024-08-26 10:40 UTC (permalink / raw)
To: Niklas Cassel, Keith Busch, Jens Axboe, Christoph Hellwig
Cc: kamaljit.singh1, dlemoal, linux-nvme
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data
2024-08-26 9:27 ` Niklas Cassel
@ 2024-08-26 10:40 ` Sagi Grimberg
0 siblings, 0 replies; 6+ messages in thread
From: Sagi Grimberg @ 2024-08-26 10:40 UTC (permalink / raw)
To: Niklas Cassel, Keith Busch, Jens Axboe, Christoph Hellwig
Cc: kamaljit.singh1, dlemoal, linux-nvme
On 26/08/2024 12:27, Niklas Cassel wrote:
> On Thu, Aug 15, 2024 at 10:11:31PM +0200, Niklas Cassel wrote:
>> When sending a RDMA_CM_REQUEST, the NVMe RDMA Transport Specification
>> allows you to populate the cntlid field in the RDMA_CM_REQUEST Private
>> Data.
>>
>> The cntlid is returned by the target on completion of the first
>> RDMA_CM_REQUEST command (which creates the admin queue).
>>
>> The cntlid field can then be populated by the host when the I/O queues
>> are created (using additional RDMA_CM_REQUEST commands), such that the
>> target can perform extra validation for additional RDMA_CM_REQUEST
>> commands.
>>
>> This additional error code and error message is also added, such that
>> nvme_rdma_cm_msg() will display the proper error message if the target
>> fails the RDMA_CM_REQUEST command because of this extra validation.
>>
>> Signed-off-by: Niklas Cassel <cassel@kernel.org>
>> ---
>> drivers/nvme/host/rdma.c | 2 ++
>> include/linux/nvme-rdma.h | 6 +++++-
>> 2 files changed, 7 insertions(+), 1 deletion(-)
> Hello NVMe maintainers,
>
> is there any chance of getting this picked up?
Keith will probably pick it up for 6.12...
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data
2024-08-15 20:11 [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data Niklas Cassel
` (2 preceding siblings ...)
2024-08-26 10:40 ` Sagi Grimberg
@ 2024-08-26 15:15 ` Keith Busch
3 siblings, 0 replies; 6+ messages in thread
From: Keith Busch @ 2024-08-26 15:15 UTC (permalink / raw)
To: Niklas Cassel
Cc: Jens Axboe, Christoph Hellwig, Sagi Grimberg, kamaljit.singh1,
dlemoal, linux-nvme
On Thu, Aug 15, 2024 at 10:11:31PM +0200, Niklas Cassel wrote:
> When sending a RDMA_CM_REQUEST, the NVMe RDMA Transport Specification
> allows you to populate the cntlid field in the RDMA_CM_REQUEST Private
> Data.
>
> The cntlid is returned by the target on completion of the first
> RDMA_CM_REQUEST command (which creates the admin queue).
>
> The cntlid field can then be populated by the host when the I/O queues
> are created (using additional RDMA_CM_REQUEST commands), such that the
> target can perform extra validation for additional RDMA_CM_REQUEST
> commands.
>
> This additional error code and error message is also added, such that
> nvme_rdma_cm_msg() will display the proper error message if the target
> fails the RDMA_CM_REQUEST command because of this extra validation.
Thanks, applied to nvme-6.12.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-08-26 15:15 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-15 20:11 [PATCH] nvme-rdma: send cntlid in the RDMA_CM_REQUEST Private Data Niklas Cassel
2024-08-16 4:52 ` Christoph Hellwig
2024-08-26 9:27 ` Niklas Cassel
2024-08-26 10:40 ` Sagi Grimberg
2024-08-26 10:40 ` Sagi Grimberg
2024-08-26 15:15 ` Keith Busch
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox