On Wed, Feb 12, 2025 at 10:51:52PM -0800, Christoph Hellwig wrote: > On Wed, Feb 12, 2025 at 08:57:04AM -0500, Brian Foster wrote: > > Update iomap direct I/O to advance the iter directly rather than via > > iter.processed. Since unique subhelpers exist for various mapping > > types, advance in the commonly called iomap_dio_iter() function. > > Update the switch statement branches to fall out, advance by the > > number of bytes processed and return either success or failure. > > Can we push the advance into iomap_dio_{bio,hole,inline}_iter? > It think that would be a bit cleaner as I tried to keep them as > self-contained as possible. > > Sure, I think we can do it that way if that's preferable. I'll have to take a closer look at iomap_dio_bio_iter() as that one looks a little more involved at a glance, but TBH I suspect the worst case is we could advance in the out path and have pretty much the same behavior as this patch. Brian