aboutsummaryrefslogtreecommitdiffstats
path: root/fs/afs/write.c
diff options
context:
space:
mode:
authorYue Hu <huyue2@coolpad.com>2022-04-06 11:50:17 +0800
committerDavid Howells <dhowells@redhat.com>2022-04-08 23:54:37 +0100
commit2c547f299827c12244d613eb2ee3616d88f56088 (patch)
treea0fb919271bf9e5451cb280cb7c7bcb0bd8503ac /fs/afs/write.c
parentdocs: filesystems: caching/backend-api.rst: fix an object withdrawn API (diff)
downloadlinux-dev-2c547f299827c12244d613eb2ee3616d88f56088.tar.xz
linux-dev-2c547f299827c12244d613eb2ee3616d88f56088.zip
fscache: Remove the cookie parameter from fscache_clear_page_bits()
The cookie is not used at all, remove it and update the usage in io.c and afs/write.c (which is the only user outside of fscache currently) at the same time. [DH: Amended the documentation also] Signed-off-by: Yue Hu <huyue2@coolpad.com> Signed-off-by: David Howells <dhowells@redhat.com> cc: linux-cachefs@redhat.com Link: https://listman.redhat.com/archives/linux-cachefs/2022-April/006659.html
Diffstat (limited to 'fs/afs/write.c')
-rw-r--r--fs/afs/write.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/afs/write.c b/fs/afs/write.c
index 6bcf1475511b..4763132ca57e 100644
--- a/fs/afs/write.c
+++ b/fs/afs/write.c
@@ -616,8 +616,7 @@ static ssize_t afs_write_back_from_locked_folio(struct address_space *mapping,
_debug("write discard %x @%llx [%llx]", len, start, i_size);
/* The dirty region was entirely beyond the EOF. */
- fscache_clear_page_bits(afs_vnode_cache(vnode),
- mapping, start, len, caching);
+ fscache_clear_page_bits(mapping, start, len, caching);
afs_pages_written_back(vnode, start, len);
ret = 0;
}