28 lines
1 KiB
Diff
28 lines
1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Christian Ebner <c.ebner@proxmox.com>
|
|
Date: Wed, 2 Oct 2024 15:24:31 +0200
|
|
Subject: [PATCH] netfs: reset subreq iov iter before tail clean
|
|
|
|
Make sure the iter is at the correct location when cleaning up tail
|
|
bytes for incomplete read subrequests.
|
|
|
|
Fixes: 92b6cc5d ("netfs: Add iov_iters to (sub)requests to describe various buffers")
|
|
Closes: https://bugzilla.kernel.org/show_bug.cgi?id=219237
|
|
|
|
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
|
|
---
|
|
fs/netfs/io.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/fs/netfs/io.c b/fs/netfs/io.c
|
|
index d6ada4eba74455aad26273a63247356a3910dc4e..500119285346be28a87698dd6ac66b5e276a6c66 100644
|
|
--- a/fs/netfs/io.c
|
|
+++ b/fs/netfs/io.c
|
|
@@ -528,6 +528,7 @@ void netfs_subreq_terminated(struct netfs_io_subrequest *subreq,
|
|
|
|
incomplete:
|
|
if (test_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags)) {
|
|
+ netfs_reset_subreq_iter(rreq, subreq);
|
|
netfs_clear_unread(subreq);
|
|
subreq->transferred = subreq->len;
|
|
goto complete;
|