All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] RDMA/vmw_pvrdma: Use resource ids from physical device if available
@ 2019-10-22 20:06 Adit Ranadive
  2019-10-28 16:27 ` Jason Gunthorpe
  0 siblings, 1 reply; 5+ messages in thread
From: Adit Ranadive @ 2019-10-22 20:06 UTC (permalink / raw)
  To: jgg, dledford, linux-rdma; +Cc: Bryan Tan, Pv-drivers, Adit Ranadive

From: Bryan Tan <bryantan@vmware.com>

This change allows the RDMA stack to use physical resource numbers if
they are passed up from the device. This is accomplished by separating
the concept of the QP number from the QP handle. Previously, the two
were the same, as the QP number was exposed to the guest and also used
to reference a virtual QP in the device backend.

With physical resource numbers exposed, the QP number given to the guest
is the number assigned from the physical HCA's QP, while the QP handle
is still the internal handle used to reference a virtual QP. Regardless
of whether the device is exposing physical ids, the driver will still
try to pick up the QP handle from the backend if possible. The MR keys
exposed to the guest will also be the MR keys created by the physical
HCA, instead of virtual MR keys. The distinction between handle and keys
is already present for MRs so there is no need to do anything special
here.

A new version of the create QP response has been added to the device
API to pass up the QP number and handle. The driver will also report
these to userspace in the udata response if userspace supports it
or not create the queuepair if not. I also had to do a refactor of the
destroy qp code to reuse it if we fail to copy to userspace.

Reviewed-by: Jorgen Hansen <jhansen@vmware.com>
Signed-off-by: Adit Ranadive <aditr@vmware.com>
Signed-off-by: Bryan Tan <bryantan@vmware.com>
---

Github PR for rdma-core:
 - https://github.com/linux-rdma/rdma-core/pull/581

Changes:
v1 -> v2:
 - Dropped the create qp flag
v0 -> v1:
 - Dropped the ABI version bump
 - Added a new create qp flag to indicate userspace support
 - Refactor of destroy/free qp
 - Updated commit description

 .../infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h |  15 ++-
 drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c  | 117 +++++++++++++-----
 include/uapi/rdma/vmw_pvrdma-abi.h            |   5 +
 3 files changed, 108 insertions(+), 29 deletions(-)

diff --git a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h
index 8f9749d54688..86a6c054ea26 100644
--- a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h
+++ b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_dev_api.h
@@ -58,7 +58,8 @@
 #define PVRDMA_ROCEV1_VERSION		17
 #define PVRDMA_ROCEV2_VERSION		18
 #define PVRDMA_PPN64_VERSION		19
-#define PVRDMA_VERSION			PVRDMA_PPN64_VERSION
+#define PVRDMA_QPHANDLE_VERSION		20
+#define PVRDMA_VERSION			PVRDMA_QPHANDLE_VERSION
 
 #define PVRDMA_BOARD_ID			1
 #define PVRDMA_REV_ID			1
@@ -581,6 +582,17 @@ struct pvrdma_cmd_create_qp_resp {
 	u32 max_inline_data;
 };
 
+struct pvrdma_cmd_create_qp_resp_v2 {
+	struct pvrdma_cmd_resp_hdr hdr;
+	u32 qpn;
+	u32 qp_handle;
+	u32 max_send_wr;
+	u32 max_recv_wr;
+	u32 max_send_sge;
+	u32 max_recv_sge;
+	u32 max_inline_data;
+};
+
 struct pvrdma_cmd_modify_qp {
 	struct pvrdma_cmd_hdr hdr;
 	u32 qp_handle;
@@ -663,6 +675,7 @@ union pvrdma_cmd_resp {
 	struct pvrdma_cmd_create_cq_resp create_cq_resp;
 	struct pvrdma_cmd_resize_cq_resp resize_cq_resp;
 	struct pvrdma_cmd_create_qp_resp create_qp_resp;
+	struct pvrdma_cmd_create_qp_resp_v2 create_qp_resp_v2;
 	struct pvrdma_cmd_query_qp_resp query_qp_resp;
 	struct pvrdma_cmd_destroy_qp_resp destroy_qp_resp;
 	struct pvrdma_cmd_create_srq_resp create_srq_resp;
diff --git a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c
index bca6a58a442e..0a726b48c97c 100644
--- a/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c
+++ b/drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.c
@@ -52,6 +52,9 @@
 
 #include "pvrdma.h"
 
+static void __pvrdma_destroy_qp(struct pvrdma_dev *dev,
+				struct pvrdma_qp *qp);
+
 static inline void get_cqs(struct pvrdma_qp *qp, struct pvrdma_cq **send_cq,
 			   struct pvrdma_cq **recv_cq)
 {
@@ -195,7 +198,9 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
 	union pvrdma_cmd_resp rsp;
 	struct pvrdma_cmd_create_qp *cmd = &req.create_qp;
 	struct pvrdma_cmd_create_qp_resp *resp = &rsp.create_qp_resp;
+	struct pvrdma_cmd_create_qp_resp_v2 *resp_v2 = &rsp.create_qp_resp_v2;
 	struct pvrdma_create_qp ucmd;
+	struct pvrdma_create_qp_resp qp_resp = {};
 	unsigned long flags;
 	int ret;
 	bool is_srq = !!init_attr->srq;
@@ -260,6 +265,15 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
 				goto err_qp;
 			}
 
+			/* Userspace supports qpn and qp handles? */
+			if (dev->dsr_version >= PVRDMA_QPHANDLE_VERSION &&
+			    udata->outlen != sizeof(qp_resp)) {
+				dev_warn(&dev->pdev->dev,
+					 "create queuepair not supported\n");
+				ret = -EOPNOTSUPP;
+				goto err_qp;
+			}
+
 			if (!is_srq) {
 				/* set qp->sq.wqe_cnt, shift, buf_size.. */
 				qp->rumem = ib_umem_get(udata, ucmd.rbuf_addr,
@@ -379,13 +393,35 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
 	}
 
 	/* max_send_wr/_recv_wr/_send_sge/_recv_sge/_inline_data */
-	qp->qp_handle = resp->qpn;
 	qp->port = init_attr->port_num;
-	qp->ibqp.qp_num = resp->qpn;
+
+	if (dev->dsr_version >= PVRDMA_QPHANDLE_VERSION) {
+		qp->ibqp.qp_num = resp_v2->qpn;
+		qp->qp_handle = resp_v2->qp_handle;
+	} else {
+		qp->ibqp.qp_num = resp->qpn;
+		qp->qp_handle = resp->qpn;
+	}
+
 	spin_lock_irqsave(&dev->qp_tbl_lock, flags);
 	dev->qp_tbl[qp->qp_handle % dev->dsr->caps.max_qp] = qp;
 	spin_unlock_irqrestore(&dev->qp_tbl_lock, flags);
 
+	if (!qp->is_kernel) {
+		if (udata->outlen == sizeof(qp_resp)) {
+			qp_resp.qpn = qp->ibqp.qp_num;
+			qp_resp.qp_handle = qp->qp_handle;
+
+			if (ib_copy_to_udata(udata, &qp_resp,
+					     sizeof(qp_resp))) {
+				dev_warn(&dev->pdev->dev,
+					 "failed to copy back udata\n");
+				__pvrdma_destroy_qp(dev, qp);
+				return ERR_PTR(-EINVAL);
+			}
+		}
+	}
+
 	return &qp->ibqp;
 
 err_pdir:
@@ -400,27 +436,15 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
 	return ERR_PTR(ret);
 }
 
-static void pvrdma_free_qp(struct pvrdma_qp *qp)
+static void _pvrdma_free_qp(struct pvrdma_qp *qp)
 {
+	unsigned long flags;
 	struct pvrdma_dev *dev = to_vdev(qp->ibqp.device);
-	struct pvrdma_cq *scq;
-	struct pvrdma_cq *rcq;
-	unsigned long flags, scq_flags, rcq_flags;
-
-	/* In case cq is polling */
-	get_cqs(qp, &scq, &rcq);
-	pvrdma_lock_cqs(scq, rcq, &scq_flags, &rcq_flags);
-
-	_pvrdma_flush_cqe(qp, scq);
-	if (scq != rcq)
-		_pvrdma_flush_cqe(qp, rcq);
 
 	spin_lock_irqsave(&dev->qp_tbl_lock, flags);
 	dev->qp_tbl[qp->qp_handle] = NULL;
 	spin_unlock_irqrestore(&dev->qp_tbl_lock, flags);
 
-	pvrdma_unlock_cqs(scq, rcq, &scq_flags, &rcq_flags);
-
 	if (refcount_dec_and_test(&qp->refcnt))
 		complete(&qp->free);
 	wait_for_completion(&qp->free);
@@ -435,34 +459,71 @@ static void pvrdma_free_qp(struct pvrdma_qp *qp)
 	atomic_dec(&dev->num_qps);
 }
 
-/**
- * pvrdma_destroy_qp - destroy a queue pair
- * @qp: the queue pair to destroy
- * @udata: user data or null for kernel object
- *
- * @return: 0 on success.
- */
-int pvrdma_destroy_qp(struct ib_qp *qp, struct ib_udata *udata)
+static void pvrdma_free_qp(struct pvrdma_qp *qp)
+{
+	struct pvrdma_cq *scq;
+	struct pvrdma_cq *rcq;
+	unsigned long scq_flags, rcq_flags;
+
+	/* In case cq is polling */
+	get_cqs(qp, &scq, &rcq);
+	pvrdma_lock_cqs(scq, rcq, &scq_flags, &rcq_flags);
+
+	_pvrdma_flush_cqe(qp, scq);
+	if (scq != rcq)
+		_pvrdma_flush_cqe(qp, rcq);
+
+	/*
+	 * We're now unlocking the CQs before clearing out the qp handle this
+	 * should still be safe. We have destroyed the backend QP and flushed
+	 * the CQEs so there should be no other completions for this QP.
+	 */
+	pvrdma_unlock_cqs(scq, rcq, &scq_flags, &rcq_flags);
+
+	_pvrdma_free_qp(qp);
+}
+
+static inline void _pvrdma_destroy_qp_work(struct pvrdma_dev *dev,
+					   u32 qp_handle)
 {
-	struct pvrdma_qp *vqp = to_vqp(qp);
 	union pvrdma_cmd_req req;
 	struct pvrdma_cmd_destroy_qp *cmd = &req.destroy_qp;
 	int ret;
 
 	memset(cmd, 0, sizeof(*cmd));
 	cmd->hdr.cmd = PVRDMA_CMD_DESTROY_QP;
-	cmd->qp_handle = vqp->qp_handle;
+	cmd->qp_handle = qp_handle;
 
-	ret = pvrdma_cmd_post(to_vdev(qp->device), &req, NULL, 0);
+	ret = pvrdma_cmd_post(dev, &req, NULL, 0);
 	if (ret < 0)
-		dev_warn(&to_vdev(qp->device)->pdev->dev,
+		dev_warn(&dev->pdev->dev,
 			 "destroy queuepair failed, error: %d\n", ret);
+}
 
+/**
+ * pvrdma_destroy_qp - destroy a queue pair
+ * @qp: the queue pair to destroy
+ * @udata: user data or null for kernel object
+ *
+ * @return: always 0.
+ */
+int pvrdma_destroy_qp(struct ib_qp *qp, struct ib_udata *udata)
+{
+	struct pvrdma_qp *vqp = to_vqp(qp);
+
+	_pvrdma_destroy_qp_work(to_vdev(qp->device), vqp->qp_handle);
 	pvrdma_free_qp(vqp);
 
 	return 0;
 }
 
+static void __pvrdma_destroy_qp(struct pvrdma_dev *dev,
+				struct pvrdma_qp *qp)
+{
+	_pvrdma_destroy_qp_work(dev, qp->qp_handle);
+	_pvrdma_free_qp(qp);
+}
+
 /**
  * pvrdma_modify_qp - modify queue pair attributes
  * @ibqp: the queue pair
diff --git a/include/uapi/rdma/vmw_pvrdma-abi.h b/include/uapi/rdma/vmw_pvrdma-abi.h
index 6e73f0274e41..f8b638c73371 100644
--- a/include/uapi/rdma/vmw_pvrdma-abi.h
+++ b/include/uapi/rdma/vmw_pvrdma-abi.h
@@ -179,6 +179,11 @@ struct pvrdma_create_qp {
 	__aligned_u64 qp_addr;
 };
 
+struct pvrdma_create_qp_resp {
+	__u32 qpn;
+	__u32 qp_handle;
+};
+
 /* PVRDMA masked atomic compare and swap */
 struct pvrdma_ex_cmp_swap {
 	__aligned_u64 swap_val;
-- 
2.18.1


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

* Re: [PATCH v2] RDMA/vmw_pvrdma: Use resource ids from physical device if available
  2019-10-22 20:06 [PATCH v2] RDMA/vmw_pvrdma: Use resource ids from physical device if available Adit Ranadive
@ 2019-10-28 16:27 ` Jason Gunthorpe
  2019-10-28 16:46   ` Adit Ranadive
  0 siblings, 1 reply; 5+ messages in thread
From: Jason Gunthorpe @ 2019-10-28 16:27 UTC (permalink / raw)
  To: Adit Ranadive; +Cc: dledford, linux-rdma, Bryan Tan, Pv-drivers

On Tue, Oct 22, 2019 at 08:06:50PM +0000, Adit Ranadive wrote:
> @@ -195,7 +198,9 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
>  	union pvrdma_cmd_resp rsp;
>  	struct pvrdma_cmd_create_qp *cmd = &req.create_qp;
>  	struct pvrdma_cmd_create_qp_resp *resp = &rsp.create_qp_resp;
> +	struct pvrdma_cmd_create_qp_resp_v2 *resp_v2 = &rsp.create_qp_resp_v2;
>  	struct pvrdma_create_qp ucmd;
> +	struct pvrdma_create_qp_resp qp_resp = {};
>  	unsigned long flags;
>  	int ret;
>  	bool is_srq = !!init_attr->srq;
> @@ -260,6 +265,15 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
>  				goto err_qp;
>  			}
>  
> +			/* Userspace supports qpn and qp handles? */
> +			if (dev->dsr_version >= PVRDMA_QPHANDLE_VERSION &&
> +			    udata->outlen != sizeof(qp_resp)) {

Is != really what you want? Or is <= better? != means you can't ever
make qp_resp bigger.

> +	if (!qp->is_kernel) {
> +		if (udata->outlen == sizeof(qp_resp)) {

Same comment, this really should be min()? Didn't I mention that already?

Jason

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

* Re: [PATCH v2] RDMA/vmw_pvrdma: Use resource ids from physical device if available
  2019-10-28 16:27 ` Jason Gunthorpe
@ 2019-10-28 16:46   ` Adit Ranadive
  2019-10-28 16:58     ` Jason Gunthorpe
  0 siblings, 1 reply; 5+ messages in thread
From: Adit Ranadive @ 2019-10-28 16:46 UTC (permalink / raw)
  To: Jason Gunthorpe; +Cc: dledford, linux-rdma, Bryan Tan, Pv-drivers

On 10/28/19 9:27 AM, Jason Gunthorpe wrote:
> On Tue, Oct 22, 2019 at 08:06:50PM +0000, Adit Ranadive wrote:
>> @@ -195,7 +198,9 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
>>  	union pvrdma_cmd_resp rsp;
>>  	struct pvrdma_cmd_create_qp *cmd = &req.create_qp;
>>  	struct pvrdma_cmd_create_qp_resp *resp = &rsp.create_qp_resp;
>> +	struct pvrdma_cmd_create_qp_resp_v2 *resp_v2 = &rsp.create_qp_resp_v2;
>>  	struct pvrdma_create_qp ucmd;
>> +	struct pvrdma_create_qp_resp qp_resp = {};
>>  	unsigned long flags;
>>  	int ret;
>>  	bool is_srq = !!init_attr->srq;
>> @@ -260,6 +265,15 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
>>  				goto err_qp;
>>  			}
>>  
>> +			/* Userspace supports qpn and qp handles? */
>> +			if (dev->dsr_version >= PVRDMA_QPHANDLE_VERSION &&
>> +			    udata->outlen != sizeof(qp_resp)) {
> 
> Is != really what you want? Or is <= better? != means you can't ever
> make qp_resp bigger.

I thought about using != or < before sending the patch. Since we removed
the flag anyways using != here made sense to be more strict about what's
acceptable. I'm not sure if we'll ever make it bigger.

> 
>> +	if (!qp->is_kernel) {
>> +		if (udata->outlen == sizeof(qp_resp)) {
> 
> Same comment, this really should be min()? Didn't I mention that already?
>

Why? I didn't add the min since I used != above anyways.

> Jason
> 


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

* Re: [PATCH v2] RDMA/vmw_pvrdma: Use resource ids from physical device if available
  2019-10-28 16:46   ` Adit Ranadive
@ 2019-10-28 16:58     ` Jason Gunthorpe
  2019-10-28 17:06       ` Adit Ranadive
  0 siblings, 1 reply; 5+ messages in thread
From: Jason Gunthorpe @ 2019-10-28 16:58 UTC (permalink / raw)
  To: Adit Ranadive; +Cc: dledford, linux-rdma, Bryan Tan, Pv-drivers

On Mon, Oct 28, 2019 at 04:46:09PM +0000, Adit Ranadive wrote:
> On 10/28/19 9:27 AM, Jason Gunthorpe wrote:
> > On Tue, Oct 22, 2019 at 08:06:50PM +0000, Adit Ranadive wrote:
> >> @@ -195,7 +198,9 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
> >>  	union pvrdma_cmd_resp rsp;
> >>  	struct pvrdma_cmd_create_qp *cmd = &req.create_qp;
> >>  	struct pvrdma_cmd_create_qp_resp *resp = &rsp.create_qp_resp;
> >> +	struct pvrdma_cmd_create_qp_resp_v2 *resp_v2 = &rsp.create_qp_resp_v2;
> >>  	struct pvrdma_create_qp ucmd;
> >> +	struct pvrdma_create_qp_resp qp_resp = {};
> >>  	unsigned long flags;
> >>  	int ret;
> >>  	bool is_srq = !!init_attr->srq;
> >> @@ -260,6 +265,15 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
> >>  				goto err_qp;
> >>  			}
> >>  
> >> +			/* Userspace supports qpn and qp handles? */
> >> +			if (dev->dsr_version >= PVRDMA_QPHANDLE_VERSION &&
> >> +			    udata->outlen != sizeof(qp_resp)) {
> > 
> > Is != really what you want? Or is <= better? != means you can't ever
> > make qp_resp bigger.
> 
> I thought about using != or < before sending the patch. Since we removed
> the flag anyways using != here made sense to be more strict about what's
> acceptable. I'm not sure if we'll ever make it bigger.

It is a big gamble you will never need to add new entries to this
struct forever more. Better to be safe, IMHO.

Jason

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

* Re: [PATCH v2] RDMA/vmw_pvrdma: Use resource ids from physical device if available
  2019-10-28 16:58     ` Jason Gunthorpe
@ 2019-10-28 17:06       ` Adit Ranadive
  0 siblings, 0 replies; 5+ messages in thread
From: Adit Ranadive @ 2019-10-28 17:06 UTC (permalink / raw)
  To: Jason Gunthorpe; +Cc: dledford, linux-rdma, Bryan Tan, Pv-drivers

On 10/28/19 9:58 AM, Jason Gunthorpe wrote:
> On Mon, Oct 28, 2019 at 04:46:09PM +0000, Adit Ranadive wrote:
>> On 10/28/19 9:27 AM, Jason Gunthorpe wrote:
>>> On Tue, Oct 22, 2019 at 08:06:50PM +0000, Adit Ranadive wrote:
>>>> @@ -195,7 +198,9 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
>>>>  	union pvrdma_cmd_resp rsp;
>>>>  	struct pvrdma_cmd_create_qp *cmd = &req.create_qp;
>>>>  	struct pvrdma_cmd_create_qp_resp *resp = &rsp.create_qp_resp;
>>>> +	struct pvrdma_cmd_create_qp_resp_v2 *resp_v2 = &rsp.create_qp_resp_v2;
>>>>  	struct pvrdma_create_qp ucmd;
>>>> +	struct pvrdma_create_qp_resp qp_resp = {};
>>>>  	unsigned long flags;
>>>>  	int ret;
>>>>  	bool is_srq = !!init_attr->srq;
>>>> @@ -260,6 +265,15 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
>>>>  				goto err_qp;
>>>>  			}
>>>>  
>>>> +			/* Userspace supports qpn and qp handles? */
>>>> +			if (dev->dsr_version >= PVRDMA_QPHANDLE_VERSION &&
>>>> +			    udata->outlen != sizeof(qp_resp)) {
>>>
>>> Is != really what you want? Or is <= better? != means you can't ever
>>> make qp_resp bigger.
>>
>> I thought about using != or < before sending the patch. Since we removed
>> the flag anyways using != here made sense to be more strict about what's
>> acceptable. I'm not sure if we'll ever make it bigger.
> 
> It is a big gamble you will never need to add new entries to this
> struct forever more. Better to be safe, IMHO.
> 

Okay. Will send a v3 for this.


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

end of thread, other threads:[~2019-10-28 17:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-22 20:06 [PATCH v2] RDMA/vmw_pvrdma: Use resource ids from physical device if available Adit Ranadive
2019-10-28 16:27 ` Jason Gunthorpe
2019-10-28 16:46   ` Adit Ranadive
2019-10-28 16:58     ` Jason Gunthorpe
2019-10-28 17:06       ` Adit Ranadive

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.