]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
xfs: short circuit xfs_growfs_data_private() if delta is zero
authorEric Sandeen <sandeen@redhat.com>
Wed, 27 Mar 2024 00:12:27 +0000 (17:12 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Apr 2024 13:28:48 +0000 (15:28 +0200)
commit 84712492e6dab803bf595fb8494d11098b74a652 upstream.

Although xfs_growfs_data() doesn't call xfs_growfs_data_private()
if in->newblocks == mp->m_sb.sb_dblocks, xfs_growfs_data_private()
further massages the new block count so that we don't i.e. try
to create a too-small new AG.

This may lead to a delta of "0" in xfs_growfs_data_private(), so
we end up in the shrink case and emit the EXPERIMENTAL warning
even if we're not changing anything at all.

Fix this by returning straightaway if the block delta is zero.

(nb: in older kernels, the result of entering the shrink case
with delta == 0 may actually let an -ENOSPC escape to userspace,
which is confusing for users.)

Fixes: fb2fc1720185 ("xfs: support shrinking unused space in the last AG")
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
Signed-off-by: Catherine Hoang <catherine.hoang@oracle.com>
Acked-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/xfs/xfs_fsops.c

index 7cb75cb6b8e9b47c4df2ab912f2851eee7b10c4d..80811d16dde00f1ee472515143f2ffd7bdce2b30 100644 (file)
@@ -134,6 +134,10 @@ xfs_growfs_data_private(
        if (delta < 0 && nagcount < 2)
                return -EINVAL;
 
+       /* No work to do */
+       if (delta == 0)
+               return 0;
+
        oagcount = mp->m_sb.sb_agcount;
        /* allocate the new per-ag structures */
        if (nagcount > oagcount) {