Commit 37c995ed authored by Minghao Chi's avatar Minghao Chi Committed by Jason Gunthorpe

RDMA/ocrdma: Remove unneeded variable

Return status directly from function called.

Link: https://lore.kernel.org/r/20211215055421.441375-1-chi.minghao@zte.com.cnReported-by: default avatarZeal Robot <zealci@zte.com.cn>
Signed-off-by: default avatarMinghao Chi <chi.minghao@zte.com.cn>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent c8f476da
...@@ -1846,12 +1846,10 @@ int ocrdma_modify_srq(struct ib_srq *ibsrq, ...@@ -1846,12 +1846,10 @@ int ocrdma_modify_srq(struct ib_srq *ibsrq,
int ocrdma_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr) int ocrdma_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr)
{ {
int status;
struct ocrdma_srq *srq; struct ocrdma_srq *srq;
srq = get_ocrdma_srq(ibsrq); srq = get_ocrdma_srq(ibsrq);
status = ocrdma_mbx_query_srq(srq, srq_attr); return ocrdma_mbx_query_srq(srq, srq_attr);
return status;
} }
int ocrdma_destroy_srq(struct ib_srq *ibsrq, struct ib_udata *udata) int ocrdma_destroy_srq(struct ib_srq *ibsrq, struct ib_udata *udata)
...@@ -1962,7 +1960,6 @@ static int ocrdma_build_inline_sges(struct ocrdma_qp *qp, ...@@ -1962,7 +1960,6 @@ static int ocrdma_build_inline_sges(struct ocrdma_qp *qp,
static int ocrdma_build_send(struct ocrdma_qp *qp, struct ocrdma_hdr_wqe *hdr, static int ocrdma_build_send(struct ocrdma_qp *qp, struct ocrdma_hdr_wqe *hdr,
const struct ib_send_wr *wr) const struct ib_send_wr *wr)
{ {
int status;
struct ocrdma_sge *sge; struct ocrdma_sge *sge;
u32 wqe_size = sizeof(*hdr); u32 wqe_size = sizeof(*hdr);
...@@ -1974,8 +1971,7 @@ static int ocrdma_build_send(struct ocrdma_qp *qp, struct ocrdma_hdr_wqe *hdr, ...@@ -1974,8 +1971,7 @@ static int ocrdma_build_send(struct ocrdma_qp *qp, struct ocrdma_hdr_wqe *hdr,
sge = (struct ocrdma_sge *)(hdr + 1); sge = (struct ocrdma_sge *)(hdr + 1);
} }
status = ocrdma_build_inline_sges(qp, hdr, sge, wr, wqe_size); return ocrdma_build_inline_sges(qp, hdr, sge, wr, wqe_size);
return status;
} }
static int ocrdma_build_write(struct ocrdma_qp *qp, struct ocrdma_hdr_wqe *hdr, static int ocrdma_build_write(struct ocrdma_qp *qp, struct ocrdma_hdr_wqe *hdr,
......
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