Skip to content

Commit ec2d264

Browse files
committed
Merge tag 'xfs-6.8-merge-4' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
Pull xfs fix from Chandan Babu: - Fix per-inode space accounting bug * tag 'xfs-6.8-merge-4' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux: xfs: fix backwards logic in xfs_bmap_alloc_account
2 parents 8cb1bb1 + d61b40b commit ec2d264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/xfs/libxfs/xfs_bmap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3277,7 +3277,7 @@ xfs_bmap_alloc_account(
32773277
struct xfs_bmalloca *ap)
32783278
{
32793279
bool isrt = XFS_IS_REALTIME_INODE(ap->ip) &&
3280-
(ap->flags & XFS_BMAPI_ATTRFORK);
3280+
!(ap->flags & XFS_BMAPI_ATTRFORK);
32813281
uint fld;
32823282

32833283
if (ap->flags & XFS_BMAPI_COWFORK) {

0 commit comments

Comments
 (0)