Commit 1dd70ea3 authored by Yuval Shaia's avatar Yuval Shaia Committed by Doug Ledford

IB/vmw_pvrdma: Remove unused qp_type

Remove the unused qp_type parameter from function's args
Signed-off-by: default avatarYuval Shaia <yuval.shaia@oracle.com>
Reviewed-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Acked-by: default avatarAdit Ranadive <aditr@vmware.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 6c6e51a6
...@@ -151,7 +151,7 @@ static int pvrdma_set_rq_size(struct pvrdma_dev *dev, ...@@ -151,7 +151,7 @@ static int pvrdma_set_rq_size(struct pvrdma_dev *dev,
} }
static int pvrdma_set_sq_size(struct pvrdma_dev *dev, struct ib_qp_cap *req_cap, static int pvrdma_set_sq_size(struct pvrdma_dev *dev, struct ib_qp_cap *req_cap,
enum ib_qp_type type, struct pvrdma_qp *qp) struct pvrdma_qp *qp)
{ {
if (req_cap->max_send_wr > dev->dsr->caps.max_qp_wr || if (req_cap->max_send_wr > dev->dsr->caps.max_qp_wr ||
req_cap->max_send_sge > dev->dsr->caps.max_sge) { req_cap->max_send_sge > dev->dsr->caps.max_sge) {
...@@ -276,8 +276,7 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd, ...@@ -276,8 +276,7 @@ struct ib_qp *pvrdma_create_qp(struct ib_pd *pd,
qp->is_kernel = true; qp->is_kernel = true;
ret = pvrdma_set_sq_size(to_vdev(pd->device), ret = pvrdma_set_sq_size(to_vdev(pd->device),
&init_attr->cap, &init_attr->cap, qp);
init_attr->qp_type, qp);
if (ret) if (ret)
goto err_qp; goto err_qp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment