iov_iter: Remove last_offset member

Message ID 2933618.1680689716@warthog.procyon.org.uk
State New
Headers
Series iov_iter: Remove last_offset member |

Commit Message

David Howells April 5, 2023, 10:15 a.m. UTC
  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 <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
cc: Jens Axboe <axboe@kernel.dk>
cc: Matthew Wilcox <willy@infradead.org>
cc: Alexander Viro <viro@zeniv.linux.org.uk>
cc: linux-nfs@vger.kernel.org
cc: linux-fsdevel@vger.kernel.org
cc: linux-mm@kvack.org
cc: netdev@vger.kernel.org
---
 include/linux/uio.h |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
  

Comments

Jens Axboe April 5, 2023, 1:37 p.m. UTC | #1
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,
  

Patch

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;