btrfs: fsync after hole punching with no-holes mode
[xfstests-dev.git] / tests / btrfs / 089
1 #! /bin/bash
2 # FS QA Test 089
3 #
4 # Test deleting the default subvolume, making sure that submounts under it are
5 # not unmounted prematurely. This is a regression test for Linux commit "Btrfs:
6 # don't invalidate root dentry when subvolume deletion fails".
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2015 Omar Sandoval.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37         cd /
38         rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44 . ./common/filter.btrfs
45
46 # real QA test starts here
47
48 # Modify as appropriate.
49 _supported_fs btrfs
50 _supported_os Linux
51 _require_scratch
52
53 rm -f $seqres.full
54
55 _scratch_mkfs >>$seqres.full 2>&1
56 _scratch_mount
57
58 # Create a new subvolume and make it the default subvolume.
59 $BTRFS_UTIL_PROG subvolume create "$SCRATCH_MNT/testvol" >>$seqres.full 2>&1 \
60         || _fail "couldn't create subvol"
61 testvol_id=$(_btrfs_get_subvolid "$SCRATCH_MNT" testvol)
62 $BTRFS_UTIL_PROG subvolume set-default $testvol_id "$SCRATCH_MNT" >>$seqres.full 2>&1 \
63         || _fail "couldn't set default"
64
65 # Bind-mount a directory under the default subvolume.
66 mkdir "$SCRATCH_MNT/testvol/testdir"
67 mkdir "$SCRATCH_MNT/testvol/mnt"
68 mount --bind "$SCRATCH_MNT/testvol/testdir" "$SCRATCH_MNT/testvol/mnt"
69
70 # Now attempt to delete the default subvolume.
71 $BTRFS_UTIL_PROG subvolume delete "$SCRATCH_MNT/testvol" >>$seqres.full 2>&1
72
73 # Unmount the bind mount, which should still be alive.
74 $UMOUNT_PROG "$SCRATCH_MNT/testvol/mnt"
75
76 echo "Silence is golden"
77 status=0
78 exit