Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 038ab8b7 authored by Mitesh Ahuja's avatar Mitesh Ahuja Committed by Doug Ledford
Browse files

RDMA/ocrdma: Fix the request length for RDMA_QUERY_QP mailbox command to FW.



Fix ocrdma_query_qp to pass correct mailbox request length to FW.

Signed-off-by: default avatarMitesh Ahuja <mitesh.ahuja@avagotech.com>
Signed-off-by: default avatarSelvin Xavier <selvin.xavier@avagotech.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent 6f5deab0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2412,7 +2412,7 @@ int ocrdma_mbx_query_qp(struct ocrdma_dev *dev, struct ocrdma_qp *qp,
	struct ocrdma_query_qp *cmd;
	struct ocrdma_query_qp_rsp *rsp;

	cmd = ocrdma_init_emb_mqe(OCRDMA_CMD_QUERY_QP, sizeof(*cmd));
	cmd = ocrdma_init_emb_mqe(OCRDMA_CMD_QUERY_QP, sizeof(*rsp));
	if (!cmd)
		return status;
	cmd->qp_id = qp->id;
+2 −0
Original line number Diff line number Diff line
@@ -1176,6 +1176,8 @@ struct ocrdma_query_qp_rsp {
	struct ocrdma_mqe_hdr hdr;
	struct ocrdma_mbx_rsp rsp;
	struct ocrdma_qp_params params;
	u32 dpp_credits_cqid;
	u32 rbq_id;
};

enum {