diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-04-30 23:15:16 -0400 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-09 23:12:32 -0400 |
commit | f913cff3505adb8c1e9e631535a847ac089e24c4 (patch) | |
tree | a9db845bda6872cdc1ee0cd34bf4938bda4337a3 /fs/btrfs/file.c | |
parent | 508cae6843fecc7bdf05ded340384ab70cd515e2 (diff) |
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.c | 2 |
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. |