diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-01 05:01:08 +0200 |
---|---|---|
committer | Matthew Wilcox (Oracle) <willy@infradead.org> | 2022-05-10 05:12:32 +0200 |
commit | 8597447dc565a6a3fa7bc503674452b7ae2b914c (patch) | |
tree | 5bb8c5711201a0c5d6f7c8bacb5d171a36916c72 /fs/zonefs | |
parent | fs: Add aops->release_folio (diff) | |
download | linux-8597447dc565a6a3fa7bc503674452b7ae2b914c.tar.xz linux-8597447dc565a6a3fa7bc503674452b7ae2b914c.zip |
iomap: Convert to release_folio
Change all the filesystems which used iomap_releasepage to use the
new function.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Diffstat (limited to 'fs/zonefs')
-rw-r--r-- | fs/zonefs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/zonefs/super.c b/fs/zonefs/super.c index c3a38f711b24..b1a428f860b3 100644 --- a/fs/zonefs/super.c +++ b/fs/zonefs/super.c @@ -197,7 +197,7 @@ static const struct address_space_operations zonefs_file_aops = { .writepage = zonefs_writepage, .writepages = zonefs_writepages, .dirty_folio = filemap_dirty_folio, - .releasepage = iomap_releasepage, + .release_folio = iomap_release_folio, .invalidate_folio = iomap_invalidate_folio, .migratepage = iomap_migrate_page, .is_partially_uptodate = iomap_is_partially_uptodate, |