Skip to content

Commit 7bd7523

Browse files
Eric Whitneytytso
authored andcommitted
ext4: fix bigalloc cluster freeing when hole punching under load
Ext4 may not free clusters correctly when punching holes in bigalloc file systems under high load conditions. If it's not possible to extend and restart the journal in ext4_ext_rm_leaf() when preparing to remove blocks from a punched region, a retry of the entire punch operation is triggered in ext4_ext_remove_space(). This causes a partial cluster to be set to the first cluster in the extent found to the right of the punched region. However, if the punch operation prior to the retry had made enough progress to delete one or more extents and a partial cluster candidate for freeing had already been recorded, the retry would overwrite the partial cluster. The loss of this information makes it impossible to correctly free the original partial cluster in all cases. This bug can cause generic/476 to fail when run as part of xfstests-bld's bigalloc and bigalloc_1k test cases. The failure is reported when e2fsck detects bad iblocks counts greater than expected in units of whole clusters and also detects a number of negative block bitmap differences equal to the iblocks discrepancy in cluster units. Signed-off-by: Eric Whitney <enwlinux@gmail.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
1 parent bc1d69d commit 7bd7523

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

fs/ext4/extents.c

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2956,14 +2956,17 @@ int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
29562956
if (err < 0)
29572957
goto out;
29582958

2959-
} else if (sbi->s_cluster_ratio > 1 && end >= ex_end) {
2959+
} else if (sbi->s_cluster_ratio > 1 && end >= ex_end &&
2960+
partial.state == initial) {
29602961
/*
2961-
* If there's an extent to the right its first cluster
2962-
* contains the immediate right boundary of the
2963-
* truncated/punched region. Set partial_cluster to
2964-
* its negative value so it won't be freed if shared
2965-
* with the current extent. The end < ee_block case
2966-
* is handled in ext4_ext_rm_leaf().
2962+
* If we're punching, there's an extent to the right.
2963+
* If the partial cluster hasn't been set, set it to
2964+
* that extent's first cluster and its state to nofree
2965+
* so it won't be freed should it contain blocks to be
2966+
* removed. If it's already set (tofree/nofree), we're
2967+
* retrying and keep the original partial cluster info
2968+
* so a cluster marked tofree as a result of earlier
2969+
* extent removal is not lost.
29672970
*/
29682971
lblk = ex_end + 1;
29692972
err = ext4_ext_search_right(inode, path, &lblk, &pblk,

0 commit comments

Comments
 (0)