]> www.infradead.org Git - users/hch/xfs.git/commitdiff
xfs: make the RT rsum_cache mandatory
authorChristoph Hellwig <hch@lst.de>
Tue, 30 Jul 2024 17:54:06 +0000 (10:54 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Thu, 1 Aug 2024 00:10:06 +0000 (17:10 -0700)
Currently the RT mount code simply ignores an allocation failure for the
rsum_cache.  The code mostly works fine with it, but not having it leads
to nasty corner cases in the growfs code that we don't really handle
well.  Switch to failing the mount if we can't allocate the memory, the
file system would not exactly be useful in such a constrained environment
to start with.

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

index 51e6e8a09838569143f4a74230e7cd9c82bc3727..ccaf3bdbe00513f6fa583ba02dc95c9fef9d4c20 100644 (file)
@@ -769,21 +769,20 @@ out_trans_cancel:
        return error;
 }
 
-static void
+static int
 xfs_alloc_rsum_cache(
-       xfs_mount_t     *mp,            /* file system mount structure */
-       xfs_extlen_t    rbmblocks)      /* number of rt bitmap blocks */
+       struct xfs_mount        *mp,
+       xfs_extlen_t            rbmblocks)
 {
        /*
         * The rsum cache is initialized to the maximum value, which is
         * trivially an upper bound on the maximum level with any free extents.
-        * We can continue without the cache if it couldn't be allocated.
         */
        mp->m_rsum_cache = kvmalloc(rbmblocks, GFP_KERNEL);
-       if (mp->m_rsum_cache)
-               memset(mp->m_rsum_cache, -1, rbmblocks);
-       else
-               xfs_warn(mp, "could not allocate realtime summary cache");
+       if (!mp->m_rsum_cache)
+               return -ENOMEM;
+       memset(mp->m_rsum_cache, -1, rbmblocks);
+       return 0;
 }
 
 /*
@@ -897,8 +896,11 @@ xfs_growfs_rt(
                return error;
 
        rsum_cache = mp->m_rsum_cache;
-       if (nrbmblocks != sbp->sb_rbmblocks)
-               xfs_alloc_rsum_cache(mp, nrbmblocks);
+       if (nrbmblocks != sbp->sb_rbmblocks) {
+               error = xfs_alloc_rsum_cache(mp, nrbmblocks);
+               if (error)
+                       return error;
+       }
 
        /*
         * Allocate a new (fake) mount/sb.
@@ -1217,7 +1219,9 @@ xfs_rtmount_inodes(
        if (error)
                goto out_rele_summary;
 
-       xfs_alloc_rsum_cache(mp, sbp->sb_rbmblocks);
+       error = xfs_alloc_rsum_cache(mp, sbp->sb_rbmblocks);
+       if (error)
+               goto out_rele_summary;
        xfs_trans_cancel(tp);
        return 0;