]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
xfs: improve the xg_active_ref check in xfs_group_free
authorChristoph Hellwig <hch@lst.de>
Wed, 16 Jul 2025 13:03:19 +0000 (15:03 +0200)
committerCarlos Maiolino <cem@kernel.org>
Thu, 24 Jul 2025 15:30:14 +0000 (17:30 +0200)
Split up the XFS_IS_CORRUPT statement so that it immediately shows
if the reference counter overflowed or underflowed.

I ran into this quite a bit when developing the zoned allocator, and had
to reapply the patch for some work recently.  We might as well just apply
it upstream given that freeing group is far removed from performance
critical code.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
fs/xfs/libxfs/xfs_group.c

index 20ad7c30948974ae90dcbe5dd9cec60fede631a7..792f76d2e2a0cda8c351753516bcfdcff5536da8 100644 (file)
@@ -172,7 +172,8 @@ xfs_group_free(
 
        /* drop the mount's active reference */
        xfs_group_rele(xg);
-       XFS_IS_CORRUPT(mp, atomic_read(&xg->xg_active_ref) != 0);
+       XFS_IS_CORRUPT(mp, atomic_read(&xg->xg_active_ref) > 0);
+       XFS_IS_CORRUPT(mp, atomic_read(&xg->xg_active_ref) < 0);
        kfree_rcu_mightsleep(xg);
 }