Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'xfs-5.9-fixes-2' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux

Pull xfs fix from Darrick Wong:
"Fix a broken metadata verifier that would incorrectly validate attr
fork extents of a realtime file against the realtime volume"

* tag 'xfs-5.9-fixes-2' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux:
xfs: fix xfs_bmap_validate_extent_raw when checking attr fork of rt files

+1 -1
+1 -1
fs/xfs/libxfs/xfs_bmap.c
··· 6226 6226 6227 6227 isrt = XFS_IS_REALTIME_INODE(ip); 6228 6228 endfsb = irec->br_startblock + irec->br_blockcount - 1; 6229 - if (isrt) { 6229 + if (isrt && whichfork == XFS_DATA_FORK) { 6230 6230 if (!xfs_verify_rtbno(mp, irec->br_startblock)) 6231 6231 return __this_address; 6232 6232 if (!xfs_verify_rtbno(mp, endfsb))