diff options
author | Matthew Wilcox (Oracle) | 2023-10-16 21:11:02 +0100 |
---|---|---|
committer | Andrew Morton | 2023-10-25 16:47:09 -0700 |
commit | 73c32e07a3977f8470b29889d30d2f808e6fee4a (patch) | |
tree | b15fe32b1668bcc4a6edc18d894f90c8bf89ca09 | |
parent | 664c87b75ef6ec3ebb97383891a6787b63925547 (diff) |
nilfs2: remove nilfs_page_get_nth_block
All users have now been converted to get_nth_block().
Link: https://lkml.kernel.org/r/20231016201114.1928083-16-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Acked-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Cc: Andreas Gruenbacher <agruenba@redhat.com>
Cc: Pankaj Raghav <p.raghav@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | fs/nilfs2/page.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/nilfs2/page.h b/fs/nilfs2/page.h index 344d71942d36..d249ea1cefff 100644 --- a/fs/nilfs2/page.h +++ b/fs/nilfs2/page.h @@ -52,10 +52,4 @@ unsigned long nilfs_find_uncommitted_extent(struct inode *inode, #define NILFS_PAGE_BUG(page, m, a...) \ do { nilfs_page_bug(page); BUG(); } while (0) -static inline struct buffer_head * -nilfs_page_get_nth_block(struct page *page, unsigned int count) -{ - return get_nth_bh(page_buffers(page), count); -} - #endif /* _NILFS_PAGE_H */ |