Skip to content

Commit d97505b

Browse files
yishaihrleon
authored andcommitted
RDMA/mlx5: Fix the recovery flow of the UMR QP
This patch addresses an issue in the recovery flow of the UMR QP, ensuring tasks do not get stuck, as highlighted by the call trace [1]. During recovery, before transitioning the QP to the RESET state, the software must wait for all outstanding WRs to complete. Failing to do so can cause the firmware to skip sending some flushed CQEs with errors and simply discard them upon the RESET, as per the IB specification. This race condition can result in lost CQEs and tasks becoming stuck. To resolve this, the patch sends a final WR which serves only as a barrier before moving the QP state to RESET. Once a CQE is received for that final WR, it guarantees that no outstanding WRs remain, making it safe to transition the QP to RESET and subsequently back to RTS, restoring proper functionality. Note: For the barrier WR, we simply reuse the failed and ready WR. Since the QP is in an error state, it will only receive IB_WC_WR_FLUSH_ERR. However, as it serves only as a barrier we don't care about its status. [1] INFO: task rdma_resource_l:1922 blocked for more than 120 seconds. Tainted: G W 6.12.0-rc7+ #1626 "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message. task:rdma_resource_l state:D stack:0 pid:1922 tgid:1922 ppid:1369 flags:0x00004004 Call Trace: <TASK> __schedule+0x420/0xd30 schedule+0x47/0x130 schedule_timeout+0x280/0x300 ? mark_held_locks+0x48/0x80 ? lockdep_hardirqs_on_prepare+0xe5/0x1a0 wait_for_completion+0x75/0x130 mlx5r_umr_post_send_wait+0x3c2/0x5b0 [mlx5_ib] ? __pfx_mlx5r_umr_done+0x10/0x10 [mlx5_ib] mlx5r_umr_revoke_mr+0x93/0xc0 [mlx5_ib] __mlx5_ib_dereg_mr+0x299/0x520 [mlx5_ib] ? _raw_spin_unlock_irq+0x24/0x40 ? wait_for_completion+0xfe/0x130 ? rdma_restrack_put+0x63/0xe0 [ib_core] ib_dereg_mr_user+0x5f/0x120 [ib_core] ? lock_release+0xc6/0x280 destroy_hw_idr_uobject+0x1d/0x60 [ib_uverbs] uverbs_destroy_uobject+0x58/0x1d0 [ib_uverbs] uobj_destroy+0x3f/0x70 [ib_uverbs] ib_uverbs_cmd_verbs+0x3e4/0xbb0 [ib_uverbs] ? __pfx_uverbs_destroy_def_handler+0x10/0x10 [ib_uverbs] ? __lock_acquire+0x64e/0x2080 ? mark_held_locks+0x48/0x80 ? find_held_lock+0x2d/0xa0 ? lock_acquire+0xc1/0x2f0 ? ib_uverbs_ioctl+0xcb/0x170 [ib_uverbs] ? __fget_files+0xc3/0x1b0 ib_uverbs_ioctl+0xe7/0x170 [ib_uverbs] ? ib_uverbs_ioctl+0xcb/0x170 [ib_uverbs] __x64_sys_ioctl+0x1b0/0xa70 do_syscall_64+0x6b/0x140 entry_SYSCALL_64_after_hwframe+0x76/0x7e RIP: 0033:0x7f99c918b17b RSP: 002b:00007ffc766d0468 EFLAGS: 00000246 ORIG_RAX: 0000000000000010 RAX: ffffffffffffffda RBX: 00007ffc766d0578 RCX: 00007f99c918b17b RDX: 00007ffc766d0560 RSI: 00000000c0181b01 RDI: 0000000000000003 RBP: 00007ffc766d0540 R08: 00007f99c8f99010 R09: 000000000000bd7e R10: 00007f99c94c1c70 R11: 0000000000000246 R12: 00007ffc766d0530 R13: 000000000000001c R14: 0000000040246a80 R15: 0000000000000000 </TASK> Fixes: 158e71b ("RDMA/mlx5: Add a umr recovery flow") Signed-off-by: Yishai Hadas <[email protected]> Reviewed-by: Michael Guralnik <[email protected]> Link: https://patch.msgid.link/27b51b92ec42dfb09d8096fcbd51878f397ce6ec.1737290141.git.leon@kernel.org Signed-off-by: Leon Romanovsky <[email protected]>
1 parent 2014c95 commit d97505b

File tree

1 file changed

+56
-27
lines changed
  • drivers/infiniband/hw/mlx5

1 file changed

+56
-27
lines changed

drivers/infiniband/hw/mlx5/umr.c

Lines changed: 56 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -231,30 +231,6 @@ void mlx5r_umr_cleanup(struct mlx5_ib_dev *dev)
231231
ib_dealloc_pd(dev->umrc.pd);
232232
}
233233

234-
static int mlx5r_umr_recover(struct mlx5_ib_dev *dev)
235-
{
236-
struct umr_common *umrc = &dev->umrc;
237-
struct ib_qp_attr attr;
238-
int err;
239-
240-
attr.qp_state = IB_QPS_RESET;
241-
err = ib_modify_qp(umrc->qp, &attr, IB_QP_STATE);
242-
if (err) {
243-
mlx5_ib_dbg(dev, "Couldn't modify UMR QP\n");
244-
goto err;
245-
}
246-
247-
err = mlx5r_umr_qp_rst2rts(dev, umrc->qp);
248-
if (err)
249-
goto err;
250-
251-
umrc->state = MLX5_UMR_STATE_ACTIVE;
252-
return 0;
253-
254-
err:
255-
umrc->state = MLX5_UMR_STATE_ERR;
256-
return err;
257-
}
258234

259235
static int mlx5r_umr_post_send(struct ib_qp *ibqp, u32 mkey, struct ib_cqe *cqe,
260236
struct mlx5r_umr_wqe *wqe, bool with_data)
@@ -302,6 +278,61 @@ static int mlx5r_umr_post_send(struct ib_qp *ibqp, u32 mkey, struct ib_cqe *cqe,
302278
return err;
303279
}
304280

281+
static int mlx5r_umr_recover(struct mlx5_ib_dev *dev, u32 mkey,
282+
struct mlx5r_umr_context *umr_context,
283+
struct mlx5r_umr_wqe *wqe, bool with_data)
284+
{
285+
struct umr_common *umrc = &dev->umrc;
286+
struct ib_qp_attr attr;
287+
int err;
288+
289+
mutex_lock(&umrc->lock);
290+
/* Preventing any further WRs to be sent now */
291+
if (umrc->state != MLX5_UMR_STATE_RECOVER) {
292+
mlx5_ib_warn(dev, "UMR recovery encountered an unexpected state=%d\n",
293+
umrc->state);
294+
umrc->state = MLX5_UMR_STATE_RECOVER;
295+
}
296+
mutex_unlock(&umrc->lock);
297+
298+
/* Sending a final/barrier WR (the failed one) and wait for its completion.
299+
* This will ensure that all the previous WRs got a completion before
300+
* we set the QP state to RESET.
301+
*/
302+
err = mlx5r_umr_post_send(umrc->qp, mkey, &umr_context->cqe, wqe,
303+
with_data);
304+
if (err) {
305+
mlx5_ib_warn(dev, "UMR recovery post send failed, err %d\n", err);
306+
goto err;
307+
}
308+
309+
/* Since the QP is in an error state, it will only receive
310+
* IB_WC_WR_FLUSH_ERR. However, as it serves only as a barrier
311+
* we don't care about its status.
312+
*/
313+
wait_for_completion(&umr_context->done);
314+
315+
attr.qp_state = IB_QPS_RESET;
316+
err = ib_modify_qp(umrc->qp, &attr, IB_QP_STATE);
317+
if (err) {
318+
mlx5_ib_warn(dev, "Couldn't modify UMR QP to RESET, err=%d\n", err);
319+
goto err;
320+
}
321+
322+
err = mlx5r_umr_qp_rst2rts(dev, umrc->qp);
323+
if (err) {
324+
mlx5_ib_warn(dev, "Couldn't modify UMR QP to RTS, err=%d\n", err);
325+
goto err;
326+
}
327+
328+
umrc->state = MLX5_UMR_STATE_ACTIVE;
329+
return 0;
330+
331+
err:
332+
umrc->state = MLX5_UMR_STATE_ERR;
333+
return err;
334+
}
335+
305336
static void mlx5r_umr_done(struct ib_cq *cq, struct ib_wc *wc)
306337
{
307338
struct mlx5_ib_umr_context *context =
@@ -366,9 +397,7 @@ static int mlx5r_umr_post_send_wait(struct mlx5_ib_dev *dev, u32 mkey,
366397
mlx5_ib_warn(dev,
367398
"reg umr failed (%u). Trying to recover and resubmit the flushed WQEs, mkey = %u\n",
368399
umr_context.status, mkey);
369-
mutex_lock(&umrc->lock);
370-
err = mlx5r_umr_recover(dev);
371-
mutex_unlock(&umrc->lock);
400+
err = mlx5r_umr_recover(dev, mkey, &umr_context, wqe, with_data);
372401
if (err)
373402
mlx5_ib_warn(dev, "couldn't recover UMR, err %d\n",
374403
err);

0 commit comments

Comments
 (0)