aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/jffs2/gc.c
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2022-05-01 19:39:03 -0400
committerMatthew Wilcox (Oracle) <willy@infradead.org>2022-05-09 16:28:41 -0400
commit2294f9b8793d02b265423207e55ce5b26d8960cd (patch)
treea74a8a0badfc2c93384ef8a597b68ad974425e53 /fs/jffs2/gc.c
parentmm,fs: Remove aops->readpage (diff)
downloadwireguard-linux-2294f9b8793d02b265423207e55ce5b26d8960cd.tar.xz
wireguard-linux-2294f9b8793d02b265423207e55ce5b26d8960cd.zip
jffs2: Pass the file pointer to jffs2_do_readpage_unlock()
In preparation for unifying the read_cache_page() and read_folio() implementations, make jffs2_do_readpage_unlock() get the inode from the page instead of passing it in from read_cache_page(). Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/jffs2/gc.c')
-rw-r--r--fs/jffs2/gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/gc.c b/fs/jffs2/gc.c
index 373b3b7c9f44..a53bac7569b6 100644
--- a/fs/jffs2/gc.c
+++ b/fs/jffs2/gc.c
@@ -1327,7 +1327,7 @@ static int jffs2_garbage_collect_dnode(struct jffs2_sb_info *c, struct jffs2_era
* trying to write out, read_cache_page() will not deadlock. */
mutex_unlock(&f->sem);
page = read_cache_page(inode->i_mapping, start >> PAGE_SHIFT,
- jffs2_do_readpage_unlock, inode);
+ jffs2_do_readpage_unlock, NULL);
if (IS_ERR(page)) {
pr_warn("read_cache_page() returned error: %ld\n",
PTR_ERR(page));