summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2025-03-31 21:10:56 +0100
committerJaegeuk Kim <jaegeuk@kernel.org>2025-04-28 15:26:31 +0000
commit657b31b2d71cad687bbfddde99d90b879267d096 (patch)
tree60014db67204cf447ec94359b6030e8b9e104a69 /fs
parent9fdb4325e0a472607e1c67fa59850a78b2cd9870 (diff)
f2fs: Remove f2fs_get_meta_page()
All callers have now been converted to f2fs_get_meta_folio() so we can remove this wrapper. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/f2fs.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
index 39e83a8080fa..6bab955685c8 100644
--- a/fs/f2fs/f2fs.h
+++ b/fs/f2fs/f2fs.h
@@ -3936,12 +3936,6 @@ int f2fs_start_ckpt_thread(struct f2fs_sb_info *sbi);
void f2fs_stop_ckpt_thread(struct f2fs_sb_info *sbi);
void f2fs_init_ckpt_req_control(struct f2fs_sb_info *sbi);
-static inline
-struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
-{
- return &f2fs_get_meta_folio(sbi, index)->page;
-}
-
/*
* data.c
*/