2023-04-05 10:25:52

by David Howells

[permalink] [raw]
Subject: [PATCH] iov_iter: Remove last_offset member

Hi Jens,

Can you add this to the block tree?

David
---
iov_iter: Remove last_offset member

With the removal of ITER_PIPE, the last_offset member of struct iov_iter is
no longer used, so remove it and un-unionise the remaining member.

Signed-off-by: David Howells <[email protected]>
Reviewed-by: Jeff Layton <[email protected]>
cc: Jens Axboe <[email protected]>
cc: Matthew Wilcox <[email protected]>
cc: Alexander Viro <[email protected]>
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
---
include/linux/uio.h | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/include/linux/uio.h b/include/linux/uio.h
index 74598426edb4..2d8a70cb9b26 100644
--- a/include/linux/uio.h
+++ b/include/linux/uio.h
@@ -43,10 +43,7 @@ struct iov_iter {
bool nofault;
bool data_source;
bool user_backed;
- union {
- size_t iov_offset;
- int last_offset;
- };
+ size_t iov_offset;
size_t count;
union {
const struct iovec *iov;


2023-04-05 13:38:12

by Jens Axboe

[permalink] [raw]
Subject: Re: [PATCH] iov_iter: Remove last_offset member


On Wed, 05 Apr 2023 11:15:16 +0100, David Howells wrote:
> Can you add this to the block tree?
>
> David
>
>

Applied, thanks!

[1/1] iov_iter: Remove last_offset member
commit: 867e1cbba73ea240f9417439479df7eb74b1299c

Best regards,
--
Jens Axboe