btrfs: make nospace_cache related test cases to work with latest v2 cache
[xfstests-dev.git] / tests / btrfs / 102
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2015 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FSQA Test No. 102
6 #
7 # Regression test for an ENOSPC issue when attempting to write to a file in
8 # a filesystem without any data block groups allocated.
9 #
10 . ./common/preamble
11 _begin_fstest auto quick metadata enospc balance
12
13 # Import common functions.
14 . ./common/filter
15
16 # real QA test starts here
17 _supported_fs btrfs
18 _require_scratch
19
20 _scratch_mkfs >>$seqres.full 2>&1
21
22 # Mount our filesystem without space caches enabled so that we do not get any
23 # space used from the initial data block group that mkfs creates (space caches
24 # used space from data block groups).
25 _scratch_mount $(_btrfs_no_v1_cache_opt)
26
27 # Need an fs with at least 2Gb to make sure mkfs.btrfs does not create an fs
28 # using mixed block groups (used both for data and metadata). We really need
29 # to have dedicated block groups for data to reproduce the issue and mkfs.btrfs
30 # defaults to mixed block groups only for small filesystems (up to 1Gb).
31 _require_fs_space $SCRATCH_MNT $((2 * 1024 * 1024))
32
33 # Run balance with the purpose of deleting the unused data block group that
34 # mkfs created. We could also wait for the background kthread to automatically
35 # delete the unused block group, but we do not have a way to make it run and
36 # wait for it to complete, so just do a balance instead of some unreliable sleep
37 _run_btrfs_balance_start -dusage=0 $SCRATCH_MNT >> $seqres.full
38
39 # Now unmount the filesystem, mount it again (either with or with space caches
40 # enabled, it does not matter to trigger the problem) and attempt to create a
41 # file with some data - this used to fail with ENOSPC because there were no
42 # data block groups when the filesystem was mounted and the data space info
43 # object was marked as full when initialized (because it had 0 total bytes),
44 # which prevented the file write path from attempting to allocate a data block
45 # group and fail immediately with ENOSPC.
46 _scratch_cycle_mount
47 echo "hello world" > $SCRATCH_MNT/foobar
48
49 echo "Silence is golden"
50 status=0
51 exit