diff options
author | David Howells <[email protected]> | 2023-09-25 13:02:58 +0100 |
---|---|---|
committer | Christian Brauner <[email protected]> | 2023-09-25 14:30:27 +0200 |
commit | 581beb4fe37d17571c87058d13d298d5458e25e9 (patch) | |
tree | dac3c7b8d786847ec39b7345402cae7096a41846 | |
parent | ce9ecca0238b140b88f43859b211c9fdfd8e5b70 (diff) |
iov_iter: Remove last_offset from iov_iter as it was for ITER_PIPE
Now that ITER_PIPE has been removed, iov_iter::last_offset is no longer
used, so remove it.
Signed-off-by: David Howells <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
cc: Alexander Viro <[email protected]>
cc: Jens Axboe <[email protected]>
cc: Christoph Hellwig <[email protected]>
cc: Christian Brauner <[email protected]>
cc: Matthew Wilcox <[email protected]>
cc: Linus Torvalds <[email protected]>
cc: David Laight <[email protected]>
cc: [email protected]
cc: [email protected]
cc: [email protected]
Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r-- | include/linux/uio.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/uio.h b/include/linux/uio.h index 42bce38a8e87..2000e42a6586 100644 --- a/include/linux/uio.h +++ b/include/linux/uio.h @@ -44,10 +44,7 @@ struct iov_iter { bool nofault; bool data_source; bool user_backed; - union { - size_t iov_offset; - int last_offset; - }; + size_t iov_offset; /* * Hack alert: overlay ubuf_iovec with iovec + count, so * that the members resolve correctly regardless of the type |