]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
xfs: cleanup fdblock/frextent accounting in xfs_bmap_del_extent_delay
authorChristoph Hellwig <hch@lst.de>
Mon, 29 Jul 2024 23:22:42 +0000 (16:22 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Tue, 30 Jul 2024 00:01:01 +0000 (17:01 -0700)
Source kernel commit: 7e77d57a1fea5f6bfe166210385ba9f227a606d1

The code to account fdblocks and frextents in xfs_bmap_del_extent_delay
is a bit weird in that it accounts frextents before the iext tree
manipulations and fdblocks after it.  Given that the iext tree
manipulations cannot fail currently that's not really a problem, but
still odd.  Move the frextent manipulation to the end, and use a
fdblocks variable to account of the unconditional indirect blocks and
the data blocks only freed for !RT.  This prepares for following
updates in the area and already makes the code more readable.

Also remove the !isrt assert given that this code clearly handles
rt extents correctly, and we'll soon reinstate delalloc support for
RT inodes.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
libxfs/xfs_bmap.c

index 1319f1c90b56fc17ee74674aef38b8277c26d7cc..5de8c72a84d83d850ab672197f6892e2a218a974 100644 (file)
@@ -4913,6 +4913,7 @@ xfs_bmap_del_extent_delay(
        xfs_fileoff_t           del_endoff, got_endoff;
        xfs_filblks_t           got_indlen, new_indlen, stolen;
        uint32_t                state = xfs_bmap_fork_to_state(whichfork);
+       uint64_t                fdblocks;
        int                     error = 0;
        bool                    isrt;
 
@@ -4928,15 +4929,11 @@ xfs_bmap_del_extent_delay(
        ASSERT(got->br_startoff <= del->br_startoff);
        ASSERT(got_endoff >= del_endoff);
 
-       if (isrt)
-               xfs_add_frextents(mp, xfs_rtb_to_rtx(mp, del->br_blockcount));
-
        /*
         * Update the inode delalloc counter now and wait to update the
         * sb counters as we might have to borrow some blocks for the
         * indirect block accounting.
         */
-       ASSERT(!isrt);
        error = xfs_quota_unreserve_blkres(ip, del->br_blockcount);
        if (error)
                return error;
@@ -5013,12 +5010,15 @@ xfs_bmap_del_extent_delay(
 
        ASSERT(da_old >= da_new);
        da_diff = da_old - da_new;
-       if (!isrt)
-               da_diff += del->br_blockcount;
-       if (da_diff) {
-               xfs_add_fdblocks(mp, da_diff);
-               xfs_mod_delalloc(mp, -da_diff);
-       }
+       fdblocks = da_diff;
+
+       if (isrt)
+               xfs_add_frextents(mp, xfs_rtb_to_rtx(mp, del->br_blockcount));
+       else
+               fdblocks += del->br_blockcount;
+
+       xfs_add_fdblocks(mp, fdblocks);
+       xfs_mod_delalloc(mp, -(int64_t)fdblocks);
        return error;
 }