mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
defrag: require extents support for ext4 defrag
The e4defrag program requires the use of fallocate, which in turn means that the file system must have extents. Enforce this requirement so we don't get test failure noise when testing ext4's ext3 compatibility. Signed-off-by: Theodore Ts'o <tytso@mit.edu> 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
d0a255e43a
commit
902223bdbb
+3
-1
@@ -27,7 +27,9 @@ _require_defrag()
|
||||
DEFRAG_PROG="$XFS_FSR_PROG"
|
||||
;;
|
||||
ext4|ext4dev)
|
||||
DEFRAG_PROG="$E4DEFRAG_PROG"
|
||||
DEFRAG_PROG="$E4DEFRAG_PROG"
|
||||
dumpe2fs -h $SCRATCH_DEV 2> /dev/null | grep -wq extent || \
|
||||
_notrun "file system does not have extents, needed for defrag"
|
||||
;;
|
||||
btrfs)
|
||||
DEFRAG_PROG="$BTRFS_UTIL_PROG filesystem defragment"
|
||||
|
||||
Reference in New Issue
Block a user