RDMA/rxe: Remove useless parameters for update_state()

wqe was not used by update_state() so far.

Commit aaaf62e066 ("RDMA/rxe: Remove useless argument for
update_state()") just did a partial fixes.

Link: https://lore.kernel.org/r/20220412022903.574238-1-lizhijian@fujitsu.com
Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
This commit is contained in:
Li Zhijian 2022-04-12 10:29:01 +08:00 committed by Jason Gunthorpe
parent c8a02e38f8
commit 0f328c7034
1 changed files with 2 additions and 3 deletions

View File

@ -525,8 +525,7 @@ static void rollback_state(struct rxe_send_wqe *wqe,
qp->req.psn = rollback_psn; qp->req.psn = rollback_psn;
} }
static void update_state(struct rxe_qp *qp, struct rxe_send_wqe *wqe, static void update_state(struct rxe_qp *qp, struct rxe_pkt_info *pkt)
struct rxe_pkt_info *pkt)
{ {
qp->req.opcode = pkt->opcode; qp->req.opcode = pkt->opcode;
@ -753,7 +752,7 @@ next_wqe:
goto err; goto err;
} }
update_state(qp, wqe, &pkt); update_state(qp, &pkt);
goto next_wqe; goto next_wqe;