diff options
| author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2025-03-31 21:11:58 +0100 |
|---|---|---|
| committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2025-04-28 15:26:40 +0000 |
| commit | 0999f98e6c2132fb771f5d3efa3168b6f28394d7 (patch) | |
| tree | e50b2dc185078f77ebc46062f709079af4e57543 /fs/f2fs/node.c | |
| parent | f2fs: Use a folio in read_xattr_block() (diff) | |
| download | linux-0999f98e6c2132fb771f5d3efa3168b6f28394d7.tar.gz linux-0999f98e6c2132fb771f5d3efa3168b6f28394d7.zip | |
f2fs: Remove f2fs_get_xnode_page()
All callers have now been converted to call f2fs_get_xnode_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 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index 4ad7e5c9fd66..b535e0a27f75 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c @@ -1557,14 +1557,6 @@ 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); } -struct page *f2fs_get_xnode_page(struct f2fs_sb_info *sbi, pgoff_t xnid) -{ - struct folio *folio = __get_node_folio(sbi, xnid, NULL, 0, - NODE_TYPE_XATTR); - - return &folio->page; -} - static struct folio *f2fs_get_node_folio_ra(struct folio *parent, int start) { struct f2fs_sb_info *sbi = F2FS_F_SB(parent); |
