RDMA/bnxt_re: Return error for SRQ resize
[ Upstream commit 3687b450c5f32e80f179ce4b09e0454da1449eac ]
SRQ resize is not supported in the driver. But driver is not
returning error from bnxt_re_modify_srq() for SRQ resize.
Fixes: 37cb11acf1
("RDMA/bnxt_re: Add SRQ support for Broadcom adapters")
Signed-off-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Signed-off-by: Selvin Xavier <selvin.xavier@broadcom.com>
Link: https://lore.kernel.org/r/1705985677-15551-5-git-send-email-selvin.xavier@broadcom.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
3fa240bb6b
commit
179bb08834
@@ -1711,7 +1711,7 @@ int bnxt_re_modify_srq(struct ib_srq *ib_srq, struct ib_srq_attr *srq_attr,
|
|||||||
switch (srq_attr_mask) {
|
switch (srq_attr_mask) {
|
||||||
case IB_SRQ_MAX_WR:
|
case IB_SRQ_MAX_WR:
|
||||||
/* SRQ resize is not supported */
|
/* SRQ resize is not supported */
|
||||||
break;
|
return -EINVAL;
|
||||||
case IB_SRQ_LIMIT:
|
case IB_SRQ_LIMIT:
|
||||||
/* Change the SRQ threshold */
|
/* Change the SRQ threshold */
|
||||||
if (srq_attr->srq_limit > srq->qplib_srq.max_wqe)
|
if (srq_attr->srq_limit > srq->qplib_srq.max_wqe)
|
||||||
@@ -1726,13 +1726,12 @@ int bnxt_re_modify_srq(struct ib_srq *ib_srq, struct ib_srq_attr *srq_attr,
|
|||||||
/* On success, update the shadow */
|
/* On success, update the shadow */
|
||||||
srq->srq_limit = srq_attr->srq_limit;
|
srq->srq_limit = srq_attr->srq_limit;
|
||||||
/* No need to Build and send response back to udata */
|
/* No need to Build and send response back to udata */
|
||||||
break;
|
return 0;
|
||||||
default:
|
default:
|
||||||
ibdev_err(&rdev->ibdev,
|
ibdev_err(&rdev->ibdev,
|
||||||
"Unsupported srq_attr_mask 0x%x", srq_attr_mask);
|
"Unsupported srq_attr_mask 0x%x", srq_attr_mask);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int bnxt_re_query_srq(struct ib_srq *ib_srq, struct ib_srq_attr *srq_attr)
|
int bnxt_re_query_srq(struct ib_srq *ib_srq, struct ib_srq_attr *srq_attr)
|
||||||
|
Reference in New Issue
Block a user