xfs: fix xfs_bmap_validate_extent_raw when checking attr fork of rt files
[ Upstream commit d0c20d38af135b2b4b90aa59df7878ef0c8fbef4 ]
The realtime flag only applies to the data fork, so don't use the
realtime block number checks on the attr fork of a realtime file.
Fixes: 30b0984d91 ("xfs: refactor bmap record validation")
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2a7241fe4d
commit
ab2413892e
@@ -6130,7 +6130,7 @@ xfs_bmap_validate_extent(
|
|||||||
|
|
||||||
isrt = XFS_IS_REALTIME_INODE(ip);
|
isrt = XFS_IS_REALTIME_INODE(ip);
|
||||||
endfsb = irec->br_startblock + irec->br_blockcount - 1;
|
endfsb = irec->br_startblock + irec->br_blockcount - 1;
|
||||||
if (isrt) {
|
if (isrt && whichfork == XFS_DATA_FORK) {
|
||||||
if (!xfs_verify_rtbno(mp, irec->br_startblock))
|
if (!xfs_verify_rtbno(mp, irec->br_startblock))
|
||||||
return __this_address;
|
return __this_address;
|
||||||
if (!xfs_verify_rtbno(mp, endfsb))
|
if (!xfs_verify_rtbno(mp, endfsb))
|
||||||
|
|||||||
Reference in New Issue
Block a user