btrfs: test power failure while qgroups rescan is in progress
[xfstests-dev.git] / tests / btrfs / 166
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FSQA Test No. 166
6 #
7 # Test that if a power failure happens on a filesystem with quotas (qgroups)
8 # enabled while the quota rescan kernel thread is running, we will be able
9 # to mount the filesystem after the power failure.
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         _cleanup_flakey
21         cd /
22         rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28 . ./common/dmflakey
29
30 # real QA test starts here
31 _supported_fs btrfs
32 _supported_os Linux
33 _require_scratch
34 _require_dm_target flakey
35
36 rm -f $seqres.full
37
38 _scratch_mkfs  >>$seqres.full 2>&1
39 _require_metadata_journaling $SCRATCH_DEV
40 _init_flakey
41 _mount_flakey
42
43 # Enable qgroups on the filesystem. This will start the qgroup rescan kernel
44 # thread.
45 _run_btrfs_util_prog quota enable $SCRATCH_MNT
46
47 # Simulate a power failure, while the qgroup rescan kernel thread is running,
48 # and then mount the filesystem to check that mounting the filesystem does not
49 # fail.
50 _flakey_drop_and_remount
51
52 _unmount_flakey
53 _cleanup_flakey
54
55 echo "Silence is golden"
56 status=0
57 exit