summaryrefslogtreecommitdiff
path: root/fs/btrfs/file.c
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2022-05-01 06:15:16 +0300
committerMatthew Wilcox (Oracle) <willy@infradead.org>2022-05-10 06:12:32 +0300
commitf913cff3505adb8c1e9e631535a847ac089e24c4 (patch)
treea9db845bda6872cdc1ee0cd34bf4938bda4337a3 /fs/btrfs/file.c
parent508cae6843fecc7bdf05ded340384ab70cd515e2 (diff)
downloadlinux-f913cff3505adb8c1e9e631535a847ac089e24c4.tar.xz
btrfs: Convert to release_folio
I've only converted the outer layers of the btrfs release_folio paths to use folios; the use of folios should be pushed further down into btrfs from here. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Jeff Layton <jlayton@kernel.org>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r--fs/btrfs/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 57fba5abb059..c1eadb3f715c 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -1323,7 +1323,7 @@ static int prepare_uptodate_page(struct inode *inode,
/*
* Since btrfs_read_folio() will unlock the folio before it
- * returns, there is a window where btrfs_releasepage() can be
+ * returns, there is a window where btrfs_release_folio() can be
* called to release the page. Here we check both inode
* mapping and PagePrivate() to make sure the page was not
* released.