On Wed, Jan 21, 2026 at 05:04:40PM -0800, Darrick J. Wong wrote: > > if (dio->flags & IOMAP_DIO_BOUNCE) > > - ret = bio_iov_iter_bounce(bio, dio->submit.iter); > > + ret = bio_iov_iter_bounce(bio, dio->submit.iter, UINT_MAX); > > Nitpicking here, but shouldn't this be SIZE_MAX?
bi_size can't store more than UINT_MAX, so I think this is correct.
