generic/233,270: unlimit the max locked memory size for io_uring
[xfstests-dev.git] / tests / btrfs / 065
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2014 Red Hat Inc. All rights reserved.
4 #
5 # FSQA Test No. btrfs/065
6 #
7 # Run btrfs subvolume create/mount/umount/delete and device replace
8 # operation simultaneously, with fsstress running in background.
9 #
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 here=`pwd`
15 tmp=/tmp/$$
16 status=1
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21         cd /
22         rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28
29 # real QA test starts here
30 _supported_fs btrfs
31 # we check scratch dev after each loop
32 _require_scratch_nocheck
33 _require_scratch_dev_pool 5
34 _require_scratch_dev_pool_equal_size
35 _btrfs_get_profile_configs replace
36
37 rm -f $seqres.full
38
39 run_test()
40 {
41         local mkfs_opts=$1
42         local saved_scratch_dev_pool=$SCRATCH_DEV_POOL
43         local subvol_mnt=$TEST_DIR/$seq.mnt
44         local stop_file=$TEST_DIR/$seq.stop.$$
45
46         echo "Test $mkfs_opts" >>$seqres.full
47
48         # remove the last device from the SCRATCH_DEV_POOL list so
49         # _scratch_pool_mkfs won't use all devices in pool
50         local last_dev="`echo $SCRATCH_DEV_POOL | $AWK_PROG '{print $NF}'`"
51         SCRATCH_DEV_POOL=`echo $SCRATCH_DEV_POOL | sed -e "s# *$last_dev *##"`
52         _scratch_pool_mkfs $mkfs_opts >>$seqres.full 2>&1
53         # make sure we created btrfs with desired options
54         if [ $? -ne 0 ]; then
55                 echo "mkfs $mkfs_opts failed"
56                 SCRATCH_DEV_POOL=$saved_scratch_dev_pool
57                 return
58         fi
59         _scratch_mount >>$seqres.full 2>&1
60         SCRATCH_DEV_POOL=$saved_scratch_dev_pool
61
62         args=`_scale_fsstress_args -p 20 -n 100 $FSSTRESS_AVOID -d $SCRATCH_MNT/stressdir`
63         echo "Run fsstress $args" >>$seqres.full
64         $FSSTRESS_PROG $args >/dev/null 2>&1 &
65         fsstress_pid=$!
66
67         # make sure the stop sign is not there
68         rm -f $stop_file
69         echo -n "Start subvolume worker: " >>$seqres.full
70         _btrfs_stress_subvolume $SCRATCH_DEV $SCRATCH_MNT subvol_$$ $subvol_mnt $stop_file >/dev/null 2>&1 &
71         subvol_pid=$!
72         echo "$subvol_pid" >>$seqres.full
73
74         echo -n "Start replace worker: " >>$seqres.full
75         _btrfs_stress_replace $SCRATCH_MNT >>$seqres.full 2>&1 &
76         replace_pid=$!
77         echo "$replace_pid" >>$seqres.full
78
79         echo "Wait for fsstress to exit and kill all background workers" >>$seqres.full
80         wait $fsstress_pid
81
82         touch $stop_file
83         kill $replace_pid
84         wait
85         # wait for the replace operation to finish
86         while ps aux | grep "replace start" | grep -qv grep; do
87                 sleep 1
88         done
89
90         echo "Scrub the filesystem" >>$seqres.full
91         $BTRFS_UTIL_PROG scrub start -B $SCRATCH_MNT >>$seqres.full 2>&1
92         if [ $? -ne 0 ]; then
93                 echo "Scrub find errors in \"$mkfs_opts\" test" | tee -a $seqres.full
94         fi
95
96         # in case the subvolume is still mounted
97         $UMOUNT_PROG $subvol_mnt >/dev/null 2>&1
98         _scratch_unmount
99         # we called _require_scratch_nocheck instead of _require_scratch
100         # do check after test for each profile config
101         _check_scratch_fs
102 }
103
104 echo "Silence is golden"
105 for t in "${_btrfs_profile_configs[@]}"; do
106         run_test "$t"
107 done
108
109 status=0
110 exit