linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* side effect from "aio: don't zero entire aio_kiocb aio_get_req"
@ 2019-02-02  2:29 Mike Marshall
  2019-02-02 16:35 ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Mike Marshall @ 2019-02-02  2:29 UTC (permalink / raw)
  To: Al Viro, Jens Axboe, linux-fsdevel, Mike Marshall,
	Christoph Hellwig, Martin Brandenburg

We've been working on our Orangefs page cache patch with blinders on,
and last week I took our patch set which was based on 4.19-rc7
and applied it to 5.0-rc3.

In the process I ran vanilla rc3, and rc3 plus an Orangefs related
patch set that Christoph Hellwig sent in, through the
suite of xfstests.

It turns out that a patch from one of Jens Axboe's patch sets
that came, I think, in the 5.0 merge window triggered a BUG_ON in Orangefs'
file.c. The particular patch is "aio: don't zero entire aio_kiocb aio_get_req".

This code is in Orangefs file.c in a couple of places:

BUG_ON(iocb->private);

Anywho... I can easily fix the Orangefs problem by removing the two
BUG_ON statements, I've researched how they got there and they
are vestigial, just the kind of thing that Linus hates :-).

The bigger question is that maybe there is other code in other filesystems
that checks iocb->private without failing in a way that is as obvious
as BUG_ON. I don't see any upstream code with grep other than a few
lines in ext4/inode.c that might be affected.

As a test, I "fixed" the Orangefs problem with this:

[hubcap@vm1 linux]# git diff
diff --git a/fs/aio.c b/fs/aio.c
index b906ff70c90f..2605a4b1a3c9 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -1020,6 +1020,7 @@ static inline struct aio_kiocb
*aio_get_req(struct kioctx *ctx)
        if (unlikely(!req))
                return NULL;

+       req->rw.private = NULL;
        percpu_ref_get(&ctx->reqs);
        req->ki_ctx = ctx;
        INIT_LIST_HEAD(&req->ki_list);

So, the real fix for Orangefs is getting rid of the two BUG_ON lines,
and I'll do that, I just wanted to bring this up in case it matters
to anyone else...

-Mike

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-02-02 17:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-02  2:29 side effect from "aio: don't zero entire aio_kiocb aio_get_req" Mike Marshall
2019-02-02 16:35 ` Jens Axboe
2019-02-02 16:36   ` Jens Axboe
2019-02-02 17:03     ` Mike Marshall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).