[PATCH v3] nvme: enable PCI P2PDMA support for RDMA transport

Shivaji Kant posted 1 patch 2 months, 1 week ago
drivers/nvme/host/rdma.c | 8 ++++++++
1 file changed, 8 insertions(+)
[PATCH v3] nvme: enable PCI P2PDMA support for RDMA transport
Posted by Shivaji Kant 2 months, 1 week ago
Enable BLK_FEAT_PCI_P2PDMA on the NVMe when the underlying
RDMA controller supports it.

Suggested-by: Pranjal Shrivastava <praan@google.com>
Reviewed-by: Pranjal Shrivastava <praan@google.com>
Reviewed-by: Henrique Carvalho <henrique.carvalho@suse.com>
Signed-off-by: Shivaji Kant <shivajikant@google.com>

---
v2: https://lore.kernel.org/all/20260402073001.2039625-1-shivajikant@google.com/

Changes in v3:
Dropped the reference to multiplath patch from git log as commented
by Christoph Hellwig.
---
 drivers/nvme/host/rdma.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c
index 35c0822edb2d..09eefd7c3ff4 100644
--- a/drivers/nvme/host/rdma.c
+++ b/drivers/nvme/host/rdma.c
@@ -2189,6 +2189,13 @@ static void nvme_rdma_reset_ctrl_work(struct work_struct *work)
 	nvme_rdma_reconnect_or_remove(ctrl, ret);
 }
 
+static bool nvme_rdma_supports_pci_p2pdma(struct nvme_ctrl *ctrl)
+{
+	struct nvme_rdma_ctrl *r_ctrl = to_rdma_ctrl(ctrl);
+
+	return ib_dma_pci_p2p_dma_supported(r_ctrl->device->dev);
+}
+
 static const struct nvme_ctrl_ops nvme_rdma_ctrl_ops = {
 	.name			= "rdma",
 	.module			= THIS_MODULE,
@@ -2203,6 +2210,7 @@ static const struct nvme_ctrl_ops nvme_rdma_ctrl_ops = {
 	.get_address		= nvmf_get_address,
 	.stop_ctrl		= nvme_rdma_stop_ctrl,
 	.get_virt_boundary	= nvme_get_virt_boundary,
+	.supports_pci_p2pdma	= nvme_rdma_supports_pci_p2pdma,
 };
 
 /*
-- 
2.53.0.1213.gd9a14994de-goog
Re: [PATCH v3] nvme: enable PCI P2PDMA support for RDMA transport
Posted by Keith Busch 2 months ago
On Mon, Apr 06, 2026 at 09:21:32AM +0000, Shivaji Kant wrote:
> Enable BLK_FEAT_PCI_P2PDMA on the NVMe when the underlying
> RDMA controller supports it.

Thanks, applied to nvme-7.1.
Re: [PATCH v3] nvme: enable PCI P2PDMA support for RDMA transport
Posted by Christoph Hellwig 2 months, 1 week ago
Looks good:

Reviewed-by: Christoph Hellwig <hch@lst.de>