From: "Darrick J. Wong" <djwong@kernel.org>
To: Chris Mason <clm@meta.com>
Cc: miklos@szeredi.hu, joannelkoong@gmail.com, bernd@bsbernd.com,
neal@gompa.dev, linux-ext4@vger.kernel.org,
linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 03/10] fuse: use the iomap cache for iomap_begin
Date: Thu, 5 Feb 2026 20:28:31 -0800 [thread overview]
Message-ID: <20260206042831.GK7686@frogsfrogsfrogs> (raw)
In-Reply-To: <20260205185327.1776495-1-clm@meta.com>
On Thu, Feb 05, 2026 at 10:52:04AM -0800, Chris Mason wrote:
> "Darrick J. Wong" <djwong@kernel.org> wrote:
> > From: Darrick J. Wong <djwong@kernel.org>
> >
> > Look inside the iomap cache to try to satisfy iomap_begin.
> >
>
> Hi everyone,
>
> I'm trying out my AI review prompts on a few more trees, and I ran it
> on the fuse-iomap-cache branch:
>
> https://git.kernel.org/pub/scm/linux/kernel/git/djwong/xfs-linux.git/log/?h=fuse-iomap-cache
>
> This was the latest email lore could find, apologies if I grabbed the wrong one.
>
> Hopefully the review below is useful, please let me know if there are places it
> has gone wildly wrong. I kept the header to make it obvious exactly which
> commit I'd run through:
>
> commit 705acf20a7890a2ba0ab24fe6bf523b99c1a1f32
> Author: Darrick J. Wong <djwong@kernel.org>
>
> fuse: use the iomap cache for iomap_begin
>
> Look inside the iomap cache to try to satisfy iomap_begin.
>
> > diff --git a/fs/fuse/fuse_iomap.c b/fs/fuse/fuse_iomap.c
> > index eade8dad8a570..cf46824dc50bf 100644
> > --- a/fs/fuse/fuse_iomap.c
> > +++ b/fs/fuse/fuse_iomap.c
>
> [ ... ]
>
> > @@ -238,9 +239,14 @@ static inline bool fuse_iomap_check_mapping(const struct inode *inode,
> > const unsigned int blocksize = i_blocksize(inode);
> > uint64_t end;
> >
> > - /* Type and flags must be known */
> > + /*
> > + * Type and flags must be known. Mapping type "retry cache" doesn't
> > + * use any of the other fields.
> > + */
> > if (BAD_DATA(!fuse_iomap_check_type(map->type)))
> > return false;
> > + if (map->type == FUSE_IOMAP_TYPE_RETRY_CACHE)
> > + return true;
> > if (BAD_DATA(!fuse_iomap_check_flags(map->flags)))
> > return false;
>
> [ ... ]
>
> > @@ -271,6 +277,14 @@ static inline bool fuse_iomap_check_mapping(const struct inode *inode,
> > if (BAD_DATA(map->addr == FUSE_IOMAP_NULL_ADDR))
> > return false;
> > break;
> > + case FUSE_IOMAP_TYPE_RETRY_CACHE:
> > + /*
> > + * We only accept cache retries if we have a cache to query.
> > + * There must not be a device addr.
> > + */
> > + if (BAD_DATA(!fuse_inode_caches_iomaps(inode)))
> > + return false;
> > + fallthrough;
> > case FUSE_IOMAP_TYPE_DELALLOC:
> > case FUSE_IOMAP_TYPE_HOLE:
> > case FUSE_IOMAP_TYPE_INLINE:
>
> Does the validation at lines 280-287 ever execute? Looking at
> fuse_iomap_check_mapping(), the early return at line 248-249 handles
> FUSE_IOMAP_TYPE_RETRY_CACHE:
>
> if (map->type == FUSE_IOMAP_TYPE_RETRY_CACHE)
> return true;
Indeed, this means we can't ever hit the RETRY_CACHE case in the switch
statement.
> This means the function returns before reaching the switch statement that
> contains the new RETRY_CACHE case. The validation check 'if (BAD_DATA(!
> fuse_inode_caches_iomaps(inode))) return false;' at lines 284-285 appears
> to be dead code because RETRY_CACHE mappings are accepted without verifying
> the inode has a cache, contradicting the comment "We only accept cache
> retries if we have a cache to query."
>
> Either the fuse_inode_caches_iomaps check should move to the early return
> path like this:
>
> if (map->type == FUSE_IOMAP_TYPE_RETRY_CACHE) {
> if (BAD_DATA(!fuse_inode_caches_iomaps(inode)))
> return false;
> return true;
> }
That's the simplest resolution to the problem; I'll go with that.
> or the early return should be removed to let RETRY_CACHE fall through to
> the switch statement validation.
Nah, we definitely don't need to proceed with more validation. Good
catch!
--D
prev parent reply other threads:[~2026-02-06 4:28 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <176169812012.1426649.16037866918992398523.stgit@frogsfrogsfrogs>
[not found] ` <176169812229.1426649.17695442505194165425.stgit@frogsfrogsfrogs>
2026-02-05 18:33 ` [PATCH 07/10] fuse: enable iomap cache management Chris Mason
2026-02-06 4:42 ` Darrick J. Wong
[not found] ` <176169812184.1426649.3326330857378130332.stgit@frogsfrogsfrogs>
2026-02-05 18:44 ` [PATCH 05/10] fuse: invalidate iomap cache after file updates Chris Mason
2026-02-06 4:38 ` Darrick J. Wong
[not found] ` <176169812141.1426649.7329768881025739080.stgit@frogsfrogsfrogs>
2026-02-05 18:52 ` [PATCH 03/10] fuse: use the iomap cache for iomap_begin Chris Mason
2026-02-06 4:28 ` Darrick J. Wong [this message]
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=20260206042831.GK7686@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=bernd@bsbernd.com \
--cc=clm@meta.com \
--cc=joannelkoong@gmail.com \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=miklos@szeredi.hu \
--cc=neal@gompa.dev \
/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