mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
reflink: fix fragmentation tests to work on >4k block size filesystems
For tests that only overwrite part of a file, only consider the number of extents in the *rewritten* blocks when deciding if the FS fragmentation performance is satisfactory. (Also slip in a fix for xfs/127 so that it formats correctly when we specify big blocksizes via MKFS_OPTIONS.) Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
committed by
Dave Chinner
parent
64f56fd899
commit
3907442866
+1
-1
@@ -125,7 +125,7 @@ new_extents=$(_count_extents $testdir/file2)
|
||||
echo "old extents: $old_extents" >> $seqres.full
|
||||
echo "new extents: $new_extents" >> $seqres.full
|
||||
echo "maximum extents: $internal_blks" >> $seqres.full
|
||||
test $new_extents -lt $((internal_blks / 12)) || echo "file2 not sufficiently fragmented"
|
||||
test $new_extents -le $((2 * nr / bufnr)) || echo "file2 more fragmented than expected"
|
||||
|
||||
# success, all done
|
||||
status=0
|
||||
|
||||
Reference in New Issue
Block a user