diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2025-03-31 21:12:14 +0100 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2025-04-28 15:26:42 +0000 |
commit | cdbe260d559a8cec03bc289588bf50a334028ae3 (patch) | |
tree | a7a94e73d2a19b86c72027d6515eb2b321088cda /fs/f2fs/node.c | |
parent | 2557c3ea4c4ee0d2bf4dd42ef366a0c4d844046b (diff) |
f2fs: Remove f2fs_get_inode_page()
All callers have now been converted to call f2fs_get_inode_folio().
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/f2fs/node.c')
-rw-r--r-- | fs/f2fs/node.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index 56d454e66db3..57b72c32bba5 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c @@ -1545,13 +1545,6 @@ struct folio *f2fs_get_inode_folio(struct f2fs_sb_info *sbi, pgoff_t ino) return __get_node_folio(sbi, ino, NULL, 0, NODE_TYPE_INODE); } -struct page *f2fs_get_inode_page(struct f2fs_sb_info *sbi, pgoff_t ino) -{ - struct folio *folio = f2fs_get_inode_folio(sbi, ino); - - return &folio->page; -} - struct folio *f2fs_get_xnode_folio(struct f2fs_sb_info *sbi, pgoff_t xnid) { return __get_node_folio(sbi, xnid, NULL, 0, NODE_TYPE_XATTR); |