From: Matthew Wilcox (Oracle) Date: Tue, 14 Nov 2023 08:44:31 +0000 (+0900) Subject: nilfs2: convert nilfs_btnode_create_block to use a folio X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d80cb7777e18a1c0bcd1e660e6d8fffd257862aa;p=linux.git nilfs2: convert nilfs_btnode_create_block to use a folio Saves two calls to compound_head(). Link: https://lkml.kernel.org/r/20231114084436.2755-16-konishi.ryusuke@gmail.com Signed-off-by: Matthew Wilcox (Oracle) Signed-off-by: Ryusuke Konishi Signed-off-by: Andrew Morton --- diff --git a/fs/nilfs2/btnode.c b/fs/nilfs2/btnode.c index 5710833ac1cc7..691a50410ea91 100644 --- a/fs/nilfs2/btnode.c +++ b/fs/nilfs2/btnode.c @@ -64,8 +64,8 @@ nilfs_btnode_create_block(struct address_space *btnc, __u64 blocknr) set_buffer_mapped(bh); set_buffer_uptodate(bh); - unlock_page(bh->b_page); - put_page(bh->b_page); + folio_unlock(bh->b_folio); + folio_put(bh->b_folio); return bh; }