From: Pavel Begunkov <[email protected]>
To: Jens Axboe <[email protected]>, [email protected]
Subject: [PATCH liburing] test: don't expect links to be partially executed
Date: Thu, 18 Feb 2021 18:30:17 +0000 [thread overview]
Message-ID: <0b73a72d85384612118173d0a26609a728316b63.1613672934.git.asml.silence@gmail.com> (raw)
When we link a buggy request, the whole link collected by that moment
may be cancelled even before it got issued. Don't expect it to be
partially executed.
Signed-off-by: Pavel Begunkov <[email protected]>
---
test/register-restrictions.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/test/register-restrictions.c b/test/register-restrictions.c
index 04a0ed9..bcae67c 100644
--- a/test/register-restrictions.c
+++ b/test/register-restrictions.c
@@ -351,13 +351,19 @@ static int test_restrictions_flags(void)
io_uring_sqe_set_flags(sqe, IOSQE_FIXED_FILE | IOSQE_IO_LINK);
sqe->user_data = 3;
+ ret = io_uring_submit(&ring);
+ if (ret != 3) {
+ fprintf(stderr, "submit: %d\n", ret);
+ return TEST_FAILED;
+ }
+
sqe = io_uring_get_sqe(&ring);
io_uring_prep_writev(sqe, 1, &vec, 1, 0);
io_uring_sqe_set_flags(sqe, IOSQE_FIXED_FILE | IOSQE_IO_DRAIN);
sqe->user_data = 4;
ret = io_uring_submit(&ring);
- if (ret != 4) {
+ if (ret != 1) {
fprintf(stderr, "submit: %d\n", ret);
return TEST_FAILED;
}
--
2.24.0
next reply other threads:[~2021-02-18 18:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-18 18:30 Pavel Begunkov [this message]
2021-02-18 20:13 ` [PATCH liburing] test: don't expect links to be partially executed 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 \
--in-reply-to=0b73a72d85384612118173d0a26609a728316b63.1613672934.git.asml.silence@gmail.com \
[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