Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f3cdb55 authored by Artem Bityutskiy's avatar Artem Bityutskiy
Browse files

UBI: bugfix in max_sqnum calculation



Do not zero max_sqnum after a new volume has been found.

Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent 76eafe47
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -222,7 +222,6 @@ static struct ubi_scan_volume *add_volume(struct ubi_scan_info *si, int vol_id,
		return ERR_PTR(-ENOMEM);
		return ERR_PTR(-ENOMEM);


	sv->highest_lnum = sv->leb_count = 0;
	sv->highest_lnum = sv->leb_count = 0;
	si->max_sqnum = 0;
	sv->vol_id = vol_id;
	sv->vol_id = vol_id;
	sv->root = RB_ROOT;
	sv->root = RB_ROOT;
	sv->used_ebs = be32_to_cpu(vid_hdr->used_ebs);
	sv->used_ebs = be32_to_cpu(vid_hdr->used_ebs);