aboutsummaryrefslogtreecommitdiff
path: root/fs/f2fs/super.c
diff options
context:
space:
mode:
authorGravatar Yangtao Li <tiny.windzz@gmail.com> 2020-12-07 18:59:33 +0800
committerGravatar Jaegeuk Kim <jaegeuk@kernel.org> 2020-12-08 14:25:40 -0800
commitb9ec10948ff66f33e52d6617eae3c960cfd90638 (patch)
tree88555dc545143b68582e5b1dab92180745b7a484 /fs/f2fs/super.c
parentf2fs: introduce max_io_bytes, a sysfs entry, to limit bio size (diff)
downloadlinux-b9ec10948ff66f33e52d6617eae3c960cfd90638.tar.gz
linux-b9ec10948ff66f33e52d6617eae3c960cfd90638.tar.bz2
linux-b9ec10948ff66f33e52d6617eae3c960cfd90638.zip
f2fs: convert to F2FS_*_INO macro
Use F2FS_ROOT_INO, F2FS_NODE_INO and F2FS_META_INO macro for better code readability. Signed-off-by: Yangtao Li <tiny.windzz@gmail.com> Signed-off-by: Shaohua Liu <liush@allwinnertech.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/super.c')
-rw-r--r--fs/f2fs/super.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
index c6a3365f4844..b49eec7758d8 100644
--- a/fs/f2fs/super.c
+++ b/fs/f2fs/super.c
@@ -3102,9 +3102,9 @@ static void init_sb_info(struct f2fs_sb_info *sbi)
sbi->total_node_count =
(le32_to_cpu(raw_super->segment_count_nat) / 2)
* sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
- sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
- sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
- sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
+ F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino);
+ F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
+ F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
sbi->cur_victim_sec = NULL_SECNO;
sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
sbi->next_victim_seg[FG_GC] = NULL_SEGNO;