mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 01:59:54 +00:00
fsck.f2fs: fix alignment on multi-partition support
commit cc57f2c7da
category: bugfix
issue: #I6VAS0
CVE: NA
Signed-off-by: DongSenhao <dongsenhao2@huawei.com>
---------------------------------------
- mkfs.f2fs -s 4 -c second_dev first_dev
- fsck.f2fs first
Info: Segments per section = 1
Info: Sections per zone = 1
Info: sector size = 512
Info: total sectors = 69668488 (34017 MB)
Segment count (19128) mismatch with total segments from devices (19130) Can't find a valid F2FS superblock at 0x0
Segment count (19128) mismatch with total segments from devices (19130) Can't find a valid F2FS superblock at 0x1
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: dongsenhao <dongsenhao2@huawei.com>
This commit is contained in:
parent
117b4bfe64
commit
3a346afe9f
@ -793,7 +793,7 @@ static int verify_sb_chksum(struct f2fs_super_block *sb)
|
||||
int sanity_check_raw_super(struct f2fs_super_block *sb, enum SB_ADDR sb_addr)
|
||||
{
|
||||
unsigned int blocksize;
|
||||
unsigned int segment_count, segs_per_sec, secs_per_zone;
|
||||
unsigned int segment_count, segs_per_sec, secs_per_zone, segs_per_zone;
|
||||
unsigned int total_sections, blocks_per_seg;
|
||||
|
||||
if ((get_sb(feature) & F2FS_FEATURE_SB_CHKSUM) &&
|
||||
@ -845,6 +845,7 @@ int sanity_check_raw_super(struct f2fs_super_block *sb, enum SB_ADDR sb_addr)
|
||||
segs_per_sec = get_sb(segs_per_sec);
|
||||
secs_per_zone = get_sb(secs_per_zone);
|
||||
total_sections = get_sb(section_count);
|
||||
segs_per_zone = segs_per_sec * secs_per_zone;
|
||||
|
||||
/* blocks_per_seg should be 512, given the above check */
|
||||
blocks_per_seg = 1 << get_sb(log_blocks_per_seg);
|
||||
@ -883,7 +884,7 @@ int sanity_check_raw_super(struct f2fs_super_block *sb, enum SB_ADDR sb_addr)
|
||||
dev_segs += le32_to_cpu(sb->devs[i].total_segments);
|
||||
i++;
|
||||
}
|
||||
if (segment_count != dev_segs) {
|
||||
if (segment_count != dev_segs / segs_per_zone * segs_per_zone) {
|
||||
MSG(0, "Segment count (%u) mismatch with total segments from devices (%u)",
|
||||
segment_count, dev_segs);
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user