aboutsummaryrefslogtreecommitdiffstats
path: root/include/rdma/ib_verbs.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2020-11-06 19:19:34 +0100
committerJason Gunthorpe <jgg@nvidia.com>2020-11-12 13:33:44 -0400
commit8ecfca68dc4cbee1272a0161e3f2fb9387dc6930 (patch)
treeee7c3fee670980ffec1b05d60a633f6e94e41918 /include/rdma/ib_verbs.h
parentRDMA/core: Remove ib_dma_{alloc,free}_coherent (diff)
downloadlinux-dev-8ecfca68dc4cbee1272a0161e3f2fb9387dc6930.tar.xz
linux-dev-8ecfca68dc4cbee1272a0161e3f2fb9387dc6930.zip
RDMA: Lift ibdev_to_node from rds to common code
Lift the ibdev_to_node from rds to common code and document it. Link: https://lore.kernel.org/r/20201106181941.1878556-4-hch@lst.de Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'include/rdma/ib_verbs.h')
-rw-r--r--include/rdma/ib_verbs.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h
index a0f9b1c133e4..3feb42ef82dc 100644
--- a/include/rdma/ib_verbs.h
+++ b/include/rdma/ib_verbs.h
@@ -4550,6 +4550,19 @@ static inline struct ib_device *rdma_device_to_ibdev(struct device *device)
}
/**
+ * ibdev_to_node - return the NUMA node for a given ib_device
+ * @dev: device to get the NUMA node for.
+ */
+static inline int ibdev_to_node(struct ib_device *ibdev)
+{
+ struct device *parent = ibdev->dev.parent;
+
+ if (!parent)
+ return NUMA_NO_NODE;
+ return dev_to_node(parent);
+}
+
+/**
* rdma_device_to_drv_device - Helper macro to reach back to driver's
* ib_device holder structure from device pointer.
*