iov_iter: add helper to save iov_iter state
authorJens Axboe <axboe@kernel.dk>
Fri, 10 Sep 2021 17:18:36 +0000 (11:18 -0600)
committerJens Axboe <axboe@kernel.dk>
Fri, 10 Sep 2021 19:13:02 +0000 (13:13 -0600)
commit72132b5d3edd74aa93552f2cb928cc2069164e5f
treefbfb49ca4fb7b7265e8d18353ab2852dbf9bc59b
parentd6c338a741295c04ed84679153448b2fffd2c9cf
iov_iter: add helper to save iov_iter state

In an ideal world, when someone is passed an iov_iter and returns X bytes,
then X bytes would have been consumed/advanced from the iov_iter. But we
have use cases that always consume the entire iterator, a few examples
of that are iomap and bdev O_DIRECT. This means we cannot rely on the
state of the iov_iter once we've called ->read_iter() or ->write_iter().

This would be easier if we didn't always have to deal with truncate of
the iov_iter, as rewinding would be trivial without that. We recently
added a commit to track the truncate state, but that grew the iov_iter
by 8 bytes and wasn't the best solution.

Implement a helper to save enough of the iov_iter state to sanely restore
it after we've called the read/write iterator helpers. This currently
only works for IOVEC/BVEC/KVEC as that's all we need, support for other
iterator types are left as an exercise for the reader.

Link: https://lore.kernel.org/linux-fsdevel/CAHk-=wiacKV4Gh-MYjteU0LwNBSGpWrK-Ov25HdqB1ewinrFPg@mail.gmail.com/
Signed-off-by: Jens Axboe <axboe@kernel.dk>
include/linux/uio.h
lib/iov_iter.c