2015-07-16 15:47:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Test getting the minimum size a filesystem can be resized to and verify we
|
|
|
|
# are able to resize (shrink) it to that size.
|
|
|
|
#
|
|
|
|
|
2018-02-08 06:34:19 +00:00
|
|
|
source "$TEST_TOP/common"
|
2015-07-16 15:47:13 +00:00
|
|
|
|
|
|
|
check_prereq mkfs.btrfs
|
2016-01-12 14:16:11 +00:00
|
|
|
check_prereq btrfs
|
|
|
|
|
2015-07-16 15:47:13 +00:00
|
|
|
setup_root_helper
|
|
|
|
|
2015-07-20 15:31:43 +00:00
|
|
|
# Optionally take id of the device to shrink
|
2015-07-16 15:47:13 +00:00
|
|
|
shrink_test()
|
|
|
|
{
|
2018-03-23 15:34:30 +00:00
|
|
|
min_size=$(run_check_stdout $SUDO_HELPER "$TOP/btrfs" inspect-internal min-dev-size ${1:+--id "$1"} "$TEST_MNT")
|
|
|
|
min_size=$(echo "$min_size" | cut -d ' ' -f 1)
|
2019-07-24 13:53:18 +00:00
|
|
|
_log "min size = ${min_size}"
|
2015-07-20 15:31:43 +00:00
|
|
|
if [ -z "$min_size" ]; then
|
|
|
|
_fail "Failed to parse minimum size"
|
|
|
|
fi
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check $SUDO_HELPER "$TOP/btrfs" filesystem resize "$min_size" "$TEST_MNT"
|
2015-07-16 15:47:13 +00:00
|
|
|
}
|
|
|
|
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check truncate -s 20G "$IMAGE"
|
|
|
|
run_check "$TOP/mkfs.btrfs" -f "$IMAGE"
|
|
|
|
run_check $SUDO_HELPER mount "$IMAGE" "$TEST_MNT"
|
|
|
|
run_check $SUDO_HELPER chmod a+rw "$TEST_MNT"
|
2015-07-16 15:47:13 +00:00
|
|
|
|
|
|
|
# Create 7 data block groups, each with a size of 1Gb.
|
|
|
|
for ((i = 1; i <= 7; i++)); do
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check fallocate -l 1G "$TEST_MNT/foo$i"
|
2015-07-16 15:47:13 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# Make sure they are persisted (all the chunk, device and block group items
|
|
|
|
# added to the chunk/dev/extent trees).
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check "$TOP/btrfs" filesystem sync "$TEST_MNT"
|
2015-07-16 15:47:13 +00:00
|
|
|
|
|
|
|
# Now remove 3 of those 1G files. This will result in 3 block groups becoming
|
|
|
|
# unused, which will be automatically deleted by the cleaner kthread, and this
|
|
|
|
# will result in 3 holes (unallocated space) in the device (each with a size
|
|
|
|
# of 1Gb).
|
|
|
|
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check rm -f "$TEST_MNT/foo2"
|
|
|
|
run_check rm -f "$TEST_MNT/foo4"
|
|
|
|
run_check rm -f "$TEST_MNT/foo6"
|
2015-07-16 15:47:13 +00:00
|
|
|
|
|
|
|
# Sync once to wake up the cleaner kthread which will delete the unused block
|
|
|
|
# groups - it could have been sleeping when they became unused. Then wait a bit
|
|
|
|
# to allow the cleaner kthread to delete them and then finally ensure the
|
|
|
|
# transaction started by the cleaner kthread is committed.
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check "$TOP/btrfs" filesystem sync "$TEST_MNT"
|
2015-07-16 15:47:13 +00:00
|
|
|
sleep 3
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check "$TOP/btrfs" filesystem sync "$TEST_MNT"
|
2015-07-16 15:47:13 +00:00
|
|
|
|
|
|
|
# Now attempt to get the minimum size we can resize the filesystem to and verify
|
|
|
|
# the resize operation succeeds. This size closely matches the sum of the size
|
|
|
|
# of all the allocated device extents.
|
|
|
|
for ((i = 1; i <= 3; i++)); do
|
|
|
|
shrink_test
|
|
|
|
done
|
|
|
|
|
|
|
|
# Now convert metadata and system chunks to the single profile and check we are
|
|
|
|
# still able to get a correct minimum size and shrink to that size.
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check $SUDO_HELPER "$TOP/btrfs" balance start -mconvert=single \
|
|
|
|
-sconvert=single -f "$TEST_MNT"
|
2015-07-16 15:47:13 +00:00
|
|
|
for ((i = 1; i <= 3; i++)); do
|
2015-07-20 15:31:43 +00:00
|
|
|
shrink_test 1
|
2015-07-16 15:47:13 +00:00
|
|
|
done
|
|
|
|
|
2018-03-23 15:34:30 +00:00
|
|
|
run_check $SUDO_HELPER umount "$TEST_MNT"
|