From: Eryu Guan <guan@eryu.me>
To: zlang@redhat.com
Cc: Eric Sandeen <sandeen@redhat.com>, fstests@vger.kernel.org
Subject: Re: [PATCH] ltp/fsstress: don't fail on io_uring ENOSYS
Date: Sun, 31 Jan 2021 22:30:07 +0800 [thread overview]
Message-ID: <20210131143007.GD2350@desktop> (raw)
In-Reply-To: <20210129081043.GT14354@localhost.localdomain>
On Fri, Jan 29, 2021 at 04:10:44PM +0800, Zorro Lang wrote:
> On Thu, Jan 28, 2021 at 03:31:40PM -0600, Eric Sandeen wrote:
> > We might have URING #defined at build time, but be running on a kernel
> > which does not support it.
> >
> > For that reason, we should not exit with an error if
> > io_uring_queue_init() fails with ENOSYS. We can just note the lack of
> > support and skip all future io_uring operations.
> >
> > Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> > ---
> >
> > diff --git a/ltp/fsstress.c b/ltp/fsstress.c
> > index 22df5e38..73751935 100644
> > --- a/ltp/fsstress.c
> > +++ b/ltp/fsstress.c
> > @@ -35,6 +35,7 @@ io_context_t io_ctx;
> > #include <liburing.h>
> > #define URING_ENTRIES 1
> > struct io_uring ring;
> > +bool have_io_uring; /* to indicate runtime availability */
> > #endif
> > #include <sys/syscall.h>
> > #include <sys/xattr.h>
> > @@ -706,9 +707,15 @@ int main(int argc, char **argv)
> > }
> > #endif
> > #ifdef URING
> > + have_io_uring = true;
> > + /* If ENOSYS, just ignore uring, other errors are fatal. */
>
> Yes, I thought about if we should do this since rhel8 kernel removed io_uring
> support from kernel, but left userspace liburing. But if we do this for io_uring,
> should we do the same check the others which can be disabled from kernel? Likes: AIO?
io_uring is a relative new interface, and it's quite possible that some
distros don't support it. aio has been there for a long time, and is
very unlikely disabled. If we really need to do the same check for aio,
we could do it in another patch I guess.
Thanks,
Eryu
next prev parent reply other threads:[~2021-01-31 15:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-28 21:31 [PATCH] ltp/fsstress: don't fail on io_uring ENOSYS Eric Sandeen
2021-01-29 8:10 ` Zorro Lang
2021-01-31 14:30 ` Eryu Guan [this message]
2021-01-31 16:18 ` Zorro Lang
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=20210131143007.GD2350@desktop \
--to=guan@eryu.me \
--cc=fstests@vger.kernel.org \
--cc=sandeen@redhat.com \
--cc=zlang@redhat.com \
/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