| From a0b1a902708be3b6c827bda8eb173ce94b2f34e3 Mon Sep 17 00:00:00 2001 |
| From: Israel Rukshin <israelr@mellanox.com> |
| Date: Wed, 15 May 2019 13:49:31 +0300 |
| Subject: [PATCH] RDMA/core: Fix doc typo |
| |
| commit 91f571293e26af3e17e209eed89e2d5777192819 upstream. |
| |
| Use the correct function names. |
| |
| Fixes: c4367a26357b ("IB: Pass uverbs_attr_bundle down ib_x destroy path") |
| Signed-off-by: Israel Rukshin <israelr@mellanox.com> |
| Reviewed-by: Max Gurtovoy <maxg@mellanox.com> |
| Signed-off-by: Jason Gunthorpe <jgg@mellanox.com> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/drivers/infiniband/core/cq.c b/drivers/infiniband/core/cq.c |
| index a24c900fbdf6..d17e7af352fd 100644 |
| --- a/drivers/infiniband/core/cq.c |
| +++ b/drivers/infiniband/core/cq.c |
| @@ -113,7 +113,7 @@ static void ib_cq_completion_workqueue(struct ib_cq *cq, void *private) |
| } |
| |
| /** |
| - * __ib_alloc_cq - allocate a completion queue |
| + * __ib_alloc_cq_user - allocate a completion queue |
| * @dev: device to allocate the CQ for |
| * @private: driver private data, accessible from cq->cq_context |
| * @nr_cqe: number of CQEs to allocate |
| @@ -193,7 +193,7 @@ struct ib_cq *__ib_alloc_cq_user(struct ib_device *dev, void *private, |
| EXPORT_SYMBOL(__ib_alloc_cq_user); |
| |
| /** |
| - * ib_free_cq - free a completion queue |
| + * ib_free_cq_user - free a completion queue |
| * @cq: completion queue to free. |
| * @udata: User data or NULL for kernel object |
| */ |
| diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c |
| index e43c8b9388f7..bca9877033a7 100644 |
| --- a/drivers/infiniband/core/verbs.c |
| +++ b/drivers/infiniband/core/verbs.c |
| @@ -316,7 +316,7 @@ struct ib_pd *__ib_alloc_pd(struct ib_device *device, unsigned int flags, |
| EXPORT_SYMBOL(__ib_alloc_pd); |
| |
| /** |
| - * ib_dealloc_pd - Deallocates a protection domain. |
| + * ib_dealloc_pd_user - Deallocates a protection domain. |
| * @pd: The protection domain to deallocate. |
| * @udata: Valid user data or NULL for kernel object |
| * |
| @@ -1972,7 +1972,7 @@ int ib_dereg_mr_user(struct ib_mr *mr, struct ib_udata *udata) |
| EXPORT_SYMBOL(ib_dereg_mr_user); |
| |
| /** |
| - * ib_alloc_mr() - Allocates a memory region |
| + * ib_alloc_mr_user() - Allocates a memory region |
| * @pd: protection domain associated with the region |
| * @mr_type: memory region type |
| * @max_num_sg: maximum sg entries available for registration. |
| -- |
| 2.27.0 |
| |