LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] afs: Fix afs_launder_page() to set correct start file position
@ 2021-08-19 12:12 David Howells
0 siblings, 0 replies; 2+ messages in thread
From: David Howells @ 2021-08-19 12:12 UTC (permalink / raw)
To: torvalds
Cc: Jeffrey Altman, linux-afs, dhowells, marc.dionne, linux-fsdevel,
linux-kernel
Fix afs_launder_page() to set the starting position of the StoreData RPC at
the offset into the page at which the modified data starts instead of at
the beginning of the page (the iov_iter is correctly offset).
The offset got lost during the conversion to passing an iov_iter into
afs_store_data().
Fixes: bd80d8a80e12 ("afs: Use ITER_XARRAY for writing")
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeffrey Altman <jaltman@auristor.com>
cc: linux-afs@lists.infradead.org
Link: https://lore.kernel.org/r/162880783179.3421678.7795105718190440134.stgit@warthog.procyon.org.uk/
---
fs/afs/write.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/afs/write.c b/fs/afs/write.c
index fb7d5c1cabde..fff4c7d88e0d 100644
--- a/fs/afs/write.c
+++ b/fs/afs/write.c
@@ -950,8 +950,8 @@ int afs_launder_page(struct page *page)
iov_iter_bvec(&iter, WRITE, bv, 1, bv[0].bv_len);
trace_afs_page_dirty(vnode, tracepoint_string("launder"), page);
- ret = afs_store_data(vnode, &iter, (loff_t)page->index * PAGE_SIZE,
- true);
+ ret = afs_store_data(vnode, &iter,
+ (loff_t)page->index * PAGE_SIZE + f, true);
}
trace_afs_page_dirty(vnode, tracepoint_string("laundered"), page);
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] afs: Fix afs_launder_page() to set correct start file position
@ 2021-08-12 22:37 David Howells
0 siblings, 0 replies; 2+ messages in thread
From: David Howells @ 2021-08-12 22:37 UTC (permalink / raw)
To: linux-afs; +Cc: dhowells, marc.dionne, linux-fsdevel, linux-kernel
Fix afs_launder_page() to set the starting position of the StoreData RPC at
the offset into the page at which the modified data starts instead of at
the beginning of the page (the iov_iter is correctly offset).
The offset got lost during the conversion to passing an iov_iter into
afs_store_data().
Fixes: bd80d8a80e12 ("afs: Use ITER_XARRAY for writing")
Signed-off-by: David Howells <dhowells@redhat.com>
---
fs/afs/write.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/afs/write.c b/fs/afs/write.c
index fb7d5c1cabde..fff4c7d88e0d 100644
--- a/fs/afs/write.c
+++ b/fs/afs/write.c
@@ -950,8 +950,8 @@ int afs_launder_page(struct page *page)
iov_iter_bvec(&iter, WRITE, bv, 1, bv[0].bv_len);
trace_afs_page_dirty(vnode, tracepoint_string("launder"), page);
- ret = afs_store_data(vnode, &iter, (loff_t)page->index * PAGE_SIZE,
- true);
+ ret = afs_store_data(vnode, &iter,
+ (loff_t)page->index * PAGE_SIZE + f, true);
}
trace_afs_page_dirty(vnode, tracepoint_string("laundered"), page);
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-08-19 12:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-19 12:12 [PATCH] afs: Fix afs_launder_page() to set correct start file position David Howells
-- strict thread matches above, loose matches on Subject: below --
2021-08-12 22:37 David Howells
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).