linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] RDMA/rxe: Remove useless parameters for update_state()
@ 2022-04-12  2:29 Li Zhijian
  2022-04-12  2:29 ` [PATCH 2/3] RDMA/rxe: Update wqe_index for each wqe error completion Li Zhijian
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Li Zhijian @ 2022-04-12  2:29 UTC (permalink / raw)
  To: zyjzyj2000, jgg, linux-rdma; +Cc: linux-kernel, Li Zhijian

wqe was not used by update_state() so far.

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

Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
---
 drivers/infiniband/sw/rxe/rxe_req.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/infiniband/sw/rxe/rxe_req.c b/drivers/infiniband/sw/rxe/rxe_req.c
index 5f7348b11268..bf7493bab9b9 100644
--- a/drivers/infiniband/sw/rxe/rxe_req.c
+++ b/drivers/infiniband/sw/rxe/rxe_req.c
@@ -525,8 +525,7 @@ static void rollback_state(struct rxe_send_wqe *wqe,
 	qp->req.psn    = rollback_psn;
 }
 
-static void update_state(struct rxe_qp *qp, struct rxe_send_wqe *wqe,
-			 struct rxe_pkt_info *pkt)
+static void update_state(struct rxe_qp *qp, struct rxe_pkt_info *pkt)
 {
 	qp->req.opcode = pkt->opcode;
 
@@ -753,7 +752,7 @@ int rxe_requester(void *arg)
 		goto err;
 	}
 
-	update_state(qp, wqe, &pkt);
+	update_state(qp, &pkt);
 
 	goto next_wqe;
 
-- 
2.31.1




^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-04-25 19:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-12  2:29 [PATCH 1/3] RDMA/rxe: Remove useless parameters for update_state() Li Zhijian
2022-04-12  2:29 ` [PATCH 2/3] RDMA/rxe: Update wqe_index for each wqe error completion Li Zhijian
2022-04-12  2:29 ` [PATCH 3/3] RDMA/rxe: Generate error completion for error requester state Li Zhijian
2022-04-22  1:07 ` [PATCH 1/3] RDMA/rxe: Remove useless parameters for update_state() lizhijian
2022-04-23  0:56   ` Jason Gunthorpe
2022-04-25 19:52 ` Jason Gunthorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).