Commit ec2d264a authored by Linus Torvalds's avatar Linus Torvalds
Browse files

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
parents 8cb1bb17 d61b40bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3277,7 +3277,7 @@ xfs_bmap_alloc_account(
	struct xfs_bmalloca	*ap)
{
	bool			isrt = XFS_IS_REALTIME_INODE(ap->ip) &&
					(ap->flags & XFS_BMAPI_ATTRFORK);
					!(ap->flags & XFS_BMAPI_ATTRFORK);
	uint			fld;

	if (ap->flags & XFS_BMAPI_COWFORK) {