RDMA/rtrs-clt: Fix the max_send_wr setting

For each write request, we need Request, Response Memory Registration,
Local Invalidate.

Fixes: 6a98d71dae ("RDMA/rtrs: client: main functionality")
Signed-off-by: Jack Wang <jinpu.wang@ionos.com>
Reviewed-by: Md Haris Iqbal <haris.iqbal@ionos.com>
Signed-off-by: Grzegorz Prajsner <grzegorz.prajsner@ionos.com>
Link: https://lore.kernel.org/r/20231120154146.920486-7-haris.iqbal@ionos.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
This commit is contained in:
Jack Wang 2023-11-20 16:41:43 +01:00 committed by Leon Romanovsky
parent c4d32e77fc
commit 6d09f6f7d7

View File

@ -1699,7 +1699,7 @@ static int create_con_cq_qp(struct rtrs_clt_con *con)
clt_path->s.dev_ref++; clt_path->s.dev_ref++;
max_send_wr = min_t(int, wr_limit, max_send_wr = min_t(int, wr_limit,
/* QD * (REQ + RSP + FR REGS or INVS) + drain */ /* QD * (REQ + RSP + FR REGS or INVS) + drain */
clt_path->queue_depth * 3 + 1); clt_path->queue_depth * 4 + 1);
max_recv_wr = min_t(int, wr_limit, max_recv_wr = min_t(int, wr_limit,
clt_path->queue_depth * 3 + 1); clt_path->queue_depth * 3 + 1);
max_send_sge = 2; max_send_sge = 2;