aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wilcox (Oracle) <willy@infradead.org>2025-07-08 18:03:48 +0100
committerJaegeuk Kim <jaegeuk@kernel.org>2025-07-22 15:57:44 +0000
commitc07de7557a5647e289287d6cf5063ebfa42afd68 (patch)
tree50fdeb762035882e097181b72f6a1ebdec65a198
parentf2fs: Convert get_next_nat_page() to get_next_nat_folio() (diff)
downloadlinux-c07de7557a5647e289287d6cf5063ebfa42afd68.tar.gz
linux-c07de7557a5647e289287d6cf5063ebfa42afd68.zip
f2fs: Pass the nat_blk to __update_nat_bits()
The page argument is only used to look up the address of the nat_blk. Since the caller already has it, pass it in instead. Also mark it const as the nat_blk isn't modified by this function. Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Reviewed-by: Chao Yu <chao@kernel.org> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-rw-r--r--fs/f2fs/node.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
index 7c8fb3590136..c22ff6203dc2 100644
--- a/fs/f2fs/node.c
+++ b/fs/f2fs/node.c
@@ -2969,11 +2969,10 @@ add_out:
}
static void __update_nat_bits(struct f2fs_sb_info *sbi, nid_t start_nid,
- struct page *page)
+ const struct f2fs_nat_block *nat_blk)
{
struct f2fs_nm_info *nm_i = NM_I(sbi);
unsigned int nat_index = start_nid / NAT_ENTRY_PER_BLOCK;
- struct f2fs_nat_block *nat_blk = page_address(page);
int valid = 0;
int i = 0;
@@ -3064,7 +3063,7 @@ static int __flush_nat_entry_set(struct f2fs_sb_info *sbi,
if (to_journal) {
up_write(&curseg->journal_rwsem);
} else {
- __update_nat_bits(sbi, start_nid, &folio->page);
+ __update_nat_bits(sbi, start_nid, nat_blk);
f2fs_folio_put(folio, true);
}