2015-06-05 16:26:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# test zero-log
|
|
|
|
|
|
|
|
source $TOP/tests/common
|
|
|
|
|
|
|
|
check_prereq mkfs.btrfs
|
|
|
|
check_prereq btrfs
|
2015-07-27 12:24:31 +00:00
|
|
|
prepare_test_dev
|
2015-06-05 16:26:32 +00:00
|
|
|
|
|
|
|
get_log_root()
|
|
|
|
{
|
|
|
|
local image
|
|
|
|
|
|
|
|
image="$1"
|
2016-10-26 14:41:32 +00:00
|
|
|
$TOP/btrfs inspect-internal dump-super "$image" | \
|
2015-06-05 16:26:32 +00:00
|
|
|
grep '^log_root\>' | awk '{print $2}'
|
|
|
|
}
|
|
|
|
get_log_root_level() {
|
|
|
|
local image
|
|
|
|
|
|
|
|
image="$1"
|
2016-10-26 14:41:32 +00:00
|
|
|
$TOP/btrfs inspect-internal dump-super "$image" | \
|
2015-06-05 16:26:32 +00:00
|
|
|
grep '^log_root_level' | awk '{print $2}'
|
|
|
|
}
|
|
|
|
|
|
|
|
test_zero_log()
|
|
|
|
{
|
|
|
|
# FIXME: we need an image with existing log_root
|
|
|
|
run_check $SUDO_HELPER $TOP/mkfs.btrfs -f \
|
|
|
|
--rootdir $TOP/Documentation \
|
|
|
|
$TEST_DEV
|
2016-10-26 14:41:32 +00:00
|
|
|
run_check $TOP/btrfs inspect-internal dump-super $TEST_DEV
|
2015-06-05 16:26:32 +00:00
|
|
|
if [ "$1" = 'standalone' ]; then
|
|
|
|
run_check $TOP/btrfs rescue zero-log $TEST_DEV
|
|
|
|
else
|
|
|
|
run_check $TOP/btrfs-zero-log $TEST_DEV
|
|
|
|
fi
|
|
|
|
log_root=$(get_log_root $TEST_DEV)
|
|
|
|
log_root_level=$(get_log_root $TEST_DEV)
|
|
|
|
if [ "$log_root" != 0 ]; then
|
|
|
|
_fail "FAIL: log_root not reset"
|
|
|
|
fi
|
|
|
|
if [ "$log_root_level" != 0 ]; then
|
|
|
|
_fail "FAIL: log_root_level not reset"
|
|
|
|
fi
|
2016-10-26 14:41:32 +00:00
|
|
|
run_check $TOP/btrfs inspect-internal dump-super $TEST_DEV
|
2015-06-05 16:26:32 +00:00
|
|
|
run_check $SUDO_HELPER $TOP/btrfs check $TEST_DEV
|
|
|
|
}
|
|
|
|
|
|
|
|
test_zero_log standalone
|
|
|
|
test_zero_log internal
|