diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2023-11-14 09:44:29 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-12-11 02:21:29 +0100 |
commit | 319a12c0462061e1435e32dfbdf57304938e9f90 (patch) | |
tree | 906cde585e22b917ada1d95a5810223903a6a1c0 /fs/nilfs2 | |
parent | nilfs2: convert nilfs_mdt_create_block to use a folio (diff) | |
download | linux-319a12c0462061e1435e32dfbdf57304938e9f90.tar.xz linux-319a12c0462061e1435e32dfbdf57304938e9f90.zip |
nilfs2: convert nilfs_mdt_submit_block to use a folio
Saves two calls to compound_head().
Link: https://lkml.kernel.org/r/20231114084436.2755-14-konishi.ryusuke@gmail.com
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/nilfs2')
-rw-r--r-- | fs/nilfs2/mdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nilfs2/mdt.c b/fs/nilfs2/mdt.c index 7e4dcff2c94b..e45c01a559c0 100644 --- a/fs/nilfs2/mdt.c +++ b/fs/nilfs2/mdt.c @@ -158,8 +158,8 @@ nilfs_mdt_submit_block(struct inode *inode, unsigned long blkoff, blk_opf_t opf, *out_bh = bh; failed_bh: - unlock_page(bh->b_page); - put_page(bh->b_page); + folio_unlock(bh->b_folio); + folio_put(bh->b_folio); brelse(bh); failed: return ret; |