From: lizetao <[email protected]>
To: Jens Axboe <[email protected]>, Pavel Begunkov <[email protected]>
Cc: "[email protected]" <[email protected]>
Subject: [PATCH] test/defer: fix deadlock when io_uring_submit fail
Date: Wed, 15 Jan 2025 13:10:06 +0000 [thread overview]
Message-ID: <[email protected]> (raw)
While performing fault injection testing, a bug report was triggered:
FAULT_INJECTION: forcing a failure.
name fail_usercopy, interval 1, probability 0, space 0, times 0
CPU: 12 UID: 0 PID: 18795 Comm: defer.t Tainted: G O 6.13.0-rc6-gf2a0a37b174b #17
Tainted: [O]=OOT_MODULE
Hardware name: linux,dummy-virt (DT)
Call trace:
show_stack+0x20/0x38 (C)
dump_stack_lvl+0x78/0x90
dump_stack+0x1c/0x28
should_fail_ex+0x544/0x648
should_fail+0x14/0x20
should_fail_usercopy+0x1c/0x28
get_timespec64+0x7c/0x258
__io_timeout_prep+0x31c/0x798
io_link_timeout_prep+0x1c/0x30
io_submit_sqes+0x59c/0x1d50
__arm64_sys_io_uring_enter+0x8dc/0xfa0
invoke_syscall+0x74/0x270
el0_svc_common.constprop.0+0xb4/0x240
do_el0_svc+0x48/0x68
el0_svc+0x38/0x78
el0t_64_sync_handler+0xc8/0xd0
el0t_64_sync+0x198/0x1a0
The deadlock stack is as follows:
io_cqring_wait+0xa64/0x1060
__arm64_sys_io_uring_enter+0x46c/0xfa0
invoke_syscall+0x74/0x270
el0_svc_common.constprop.0+0xb4/0x240
do_el0_svc+0x48/0x68
el0_svc+0x38/0x78
el0t_64_sync_handler+0xc8/0xd0
el0t_64_sync+0x198/0x1a0
This is because after the submission fails, the defer.t testcase is still waiting to submit the failed request, resulting in an eventual deadlock.
Solve the problem by telling wait_cqes the number of requests to wait for.
Fixes: 6f6de47d6126 ("test/defer: Test deferring with drain and links")
Signed-off-by: Li Zetao <[email protected]>
---
test/defer.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/test/defer.c b/test/defer.c index b0770ef..2447be0 100644
--- a/test/defer.c
+++ b/test/defer.c
@@ -69,12 +69,12 @@ err:
return 1;
}
-static int wait_cqes(struct test_context *ctx)
+static int wait_cqes(struct test_context *ctx, int num)
{
int ret, i;
struct io_uring_cqe *cqe;
- for (i = 0; i < ctx->nr; i++) {
+ for (i = 0; i < num; i++) {
ret = io_uring_wait_cqe(ctx->ring, &cqe);
if (ret < 0) {
@@ -105,7 +105,7 @@ static int test_canceled_userdata(struct io_uring *ring)
goto err;
}
- if (wait_cqes(&ctx))
+ if (wait_cqes(&ctx, ret))
goto err;
for (i = 0; i < nr; i++) {
@@ -139,7 +139,7 @@ static int test_thread_link_cancel(struct io_uring *ring)
goto err;
}
- if (wait_cqes(&ctx))
+ if (wait_cqes(&ctx, ret))
goto err;
for (i = 0; i < nr; i++) {
@@ -185,7 +185,7 @@ static int test_drain_with_linked_timeout(struct io_uring *ring)
goto err;
}
- if (wait_cqes(&ctx))
+ if (wait_cqes(&ctx, ret))
goto err;
free_context(&ctx);
@@ -212,7 +212,7 @@ static int run_drained(struct io_uring *ring, int nr)
goto err;
}
- if (wait_cqes(&ctx))
+ if (wait_cqes(&ctx, ret))
goto err;
free_context(&ctx);
--
2.33.0
next reply other threads:[~2025-01-15 13:10 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-15 13:10 lizetao [this message]
2025-01-16 14:51 ` [PATCH] test/defer: fix deadlock when io_uring_submit fail Jens Axboe
2025-01-18 9:42 ` lizetao
2025-01-18 15:43 ` Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox