Lines Matching refs:raw_sit
2162 unsigned int segno, struct f2fs_sit_entry *raw_sit) in check_block_count() argument
2170 if (GET_SIT_VBLOCKS(raw_sit) > sbi->blocks_per_seg) in check_block_count()
2172 segno, GET_SIT_VBLOCKS(raw_sit)); in check_block_count()
2180 valid_blocks += get_bits_in_byte(raw_sit->valid_map[i]); in check_block_count()
2182 if (GET_SIT_VBLOCKS(raw_sit) != valid_blocks) in check_block_count()
2184 segno, GET_SIT_VBLOCKS(raw_sit), valid_blocks); in check_block_count()
2186 if (GET_SIT_TYPE(raw_sit) >= NO_CHECK_TYPE) in check_block_count()
2188 segno, GET_SIT_TYPE(raw_sit)); in check_block_count()
2192 struct f2fs_sit_entry *raw_sit) in __seg_info_from_raw_sit() argument
2194 se->valid_blocks = GET_SIT_VBLOCKS(raw_sit); in __seg_info_from_raw_sit()
2195 memcpy(se->cur_valid_map, raw_sit->valid_map, SIT_VBLOCK_MAP_SIZE); in __seg_info_from_raw_sit()
2196 se->type = GET_SIT_TYPE(raw_sit); in __seg_info_from_raw_sit()
2197 se->orig_type = GET_SIT_TYPE(raw_sit); in __seg_info_from_raw_sit()
2198 se->mtime = le64_to_cpu(raw_sit->mtime); in __seg_info_from_raw_sit()
2202 struct f2fs_sit_entry *raw_sit) in seg_info_from_raw_sit() argument
2204 __seg_info_from_raw_sit(se, raw_sit); in seg_info_from_raw_sit()