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

Commit a8789a5a authored by Colin Ian King's avatar Colin Ian King Committed by Darrick J. Wong
Browse files

xfs: fix check on struct_version for versions 4 or greater



It appears that the check for versions 4 or more is incorrect and is
off-by-one. Fix this.

Detected by CoverityScan, CID#1463775 ("Logically dead code")

Fixes: ac503a4c ("xfs: refactor the geometry structure filling function")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
parent 1da06189
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -951,7 +951,7 @@ xfs_fs_geometry(
	geo->rtsectsize = sbp->sb_blocksize;
	geo->dirblocksize = xfs_dir2_dirblock_bytes(sbp);

	if (struct_version < 3)
	if (struct_version < 4)
		return 0;

	if (xfs_sb_version_haslogv2(sbp))