Lines Matching refs:raw_sit
2013 unsigned int segno, struct f2fs_sit_entry *raw_sit) in check_block_count() argument
2021 if (GET_SIT_VBLOCKS(raw_sit) > sbi->blocks_per_seg) in check_block_count()
2023 segno, GET_SIT_VBLOCKS(raw_sit)); in check_block_count()
2031 valid_blocks += get_bits_in_byte(raw_sit->valid_map[i]); in check_block_count()
2033 if (GET_SIT_VBLOCKS(raw_sit) != valid_blocks) in check_block_count()
2035 segno, GET_SIT_VBLOCKS(raw_sit), valid_blocks); in check_block_count()
2037 if (GET_SIT_TYPE(raw_sit) >= NO_CHECK_TYPE) in check_block_count()
2039 segno, GET_SIT_TYPE(raw_sit)); in check_block_count()
2043 struct f2fs_sit_entry *raw_sit) in __seg_info_from_raw_sit() argument
2045 se->valid_blocks = GET_SIT_VBLOCKS(raw_sit); in __seg_info_from_raw_sit()
2046 memcpy(se->cur_valid_map, raw_sit->valid_map, SIT_VBLOCK_MAP_SIZE); in __seg_info_from_raw_sit()
2047 se->type = GET_SIT_TYPE(raw_sit); in __seg_info_from_raw_sit()
2048 se->orig_type = GET_SIT_TYPE(raw_sit); in __seg_info_from_raw_sit()
2049 se->mtime = le64_to_cpu(raw_sit->mtime); in __seg_info_from_raw_sit()
2053 struct f2fs_sit_entry *raw_sit) in seg_info_from_raw_sit() argument
2055 __seg_info_from_raw_sit(se, raw_sit); in seg_info_from_raw_sit()