Re: [PATCH 2/2] iomap: submit read bio after each extent
Joanne Koong <[email protected]> Fri, 26 Jun 2026 07:51:18 -0700
| Newsgroups | dev.linux.lists.ntfs3,dev.linux.lists.fuse-devel,org.kernel.vger.linux-fsdevel,org.kernel.vger.linux-xfs,org.ozlabs.lists.linux-erofs |
|---|---|
| Message-ID | <CAJnrk1aJbQ0092f=wcTu8v62rdxZ7-NxyF-1vp2e42oSEo6LBA@mail.gmail.com> |
On Thu, Jun 25, 2026 at 11:16 PM Christoph Hellwig <[email protected]> wrote: > > On Fri, Jun 26, 2026 at 06:33:19AM +0200, Christoph Hellwig wrote: > > On Thu, Jun 25, 2026 at 11:32:40AM -0700, Joanne Koong wrote: > > > Yes, that works. I think that's a good idea. fuse only needs > > > submit_read logic for readahead. The change would just be: > > > > A nice, I'll fold that in. > > Btw, can I get a signoff from you for this? It looks like splitting > this into a separate patch actually works better. If you have a > preferred commit log I'd take that as well instead of mine. > > This is what I'm currently testing: > > https://git.infradead.org/?p=users/hch/misc.git;a=shortlog;h=refs/heads/iomap-read-submit-bio The submit_read logic is only needed for readahead. We can remove the + if (data.ia) + fuse_send_readpages(data.ia, data.file, data.nr_bytes, + data.fc->async_read); change to fuse_read_folio(). Signed-off-by: Joanne Koong <[email protected]> Thanks, Joanne