xfs: skip tests that rely on allocation behaviors of the data device
[xfstests-dev.git] / tests / xfs / 205
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2009 Dave Chinner
4 #
5 # FS QA Test No. 205
6 #
7 # Test out ENOSPC flushing on small filesystems.
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1        # failure is the default!
16
17 # get standard environment, filters and checks
18 . ./common/rc
19 . ./common/filter
20
21 # real QA test starts here
22 _supported_fs xfs
23 _supported_os Linux
24
25 # single AG will cause xfs_repair to fail checks.
26 _require_scratch_nocheck
27 _require_no_rtinherit
28
29 rm -f $seqres.full
30
31 fsblksz=1024
32 _scratch_mkfs_xfs -d size=$((32768*fsblksz)) -b size=$fsblksz >> $seqres.full 2>&1
33 _scratch_mount
34
35 # fix the reserve block pool to a known size so that the enospc calculations
36 # work out correctly.
37 _scratch_resvblks 1024 >> $seqres.full 2>&1
38
39 # on a 16MB filesystem, there's 32768x$fsblkszbyte blocks. used is:
40 #       - 4944 in the log,
41 #       - 32+1 for the root inode cluster
42 #       - 4 for the AG header
43 #       - 2 for free space btrees
44 #       - 4 for the AGFL
45 #       - min(%5, 1024) = 1024 blocks for the reserve pool
46 #       - about 15 blocks I can't account for right now.
47 # That leaves ~26,745 blocks free to use.
48 #
49 # Writing the following three files fill the fs almost exactly.
50 #
51 # $ df -k /mnt/scratch
52 # Filesystem           1K-blocks      Used Available Use% Mounted on
53 # /dev/ubdc                13912     13908         4 100% /mnt/scratch
54 #
55 blks=$(( ($(_get_available_space $SCRATCH_MNT) / $fsblksz) - 15 ))
56 test $blks -gt 1100 || _notrun "not enough space"
57 b1=$(echo $blks | sed -e 's/[0-9][0-9][0-9]$/000/g')
58 # in case b2 begins with '0' as '098' and being treated as octal number, force
59 # it to be 10 based
60 b2=$((10#$(echo $blks | sed -e 's/^[0-9][0-9]//g')))
61 echo "blks: $blks b1: $b1 b2: $b2" >> $seqres.full
62 dd if=/dev/zero of=$SCRATCH_MNT/fred bs=$fsblksz count=$((b1 - 1000)) 2>&1 | _filter_dd
63 dd if=/dev/zero of=$SCRATCH_MNT/fred2 bs=$fsblksz count=$b2 2>&1 | _filter_dd
64 dd if=/dev/zero of=$SCRATCH_MNT/fred3 bs=$fsblksz count=$((blks - (b1 + b2))) 2>&1 | _filter_dd
65 rm -f $SCRATCH_MNT/fred*
66
67 echo "*** one file"
68 # now try a single file of that size
69 dd if=/dev/zero of=$SCRATCH_MNT/fred bs=$fsblksz count=$blks 2>&1 | _filter_dd
70 #rm -f $SCRATCH_MNT/fred*
71
72 echo "*** one file, a few bytes at a time"
73 # now try a single file of that size
74 dd if=/dev/zero of=$SCRATCH_MNT/fred bs=15 count=$[blks/15*$fsblksz] 2>&1 | _filter_dd
75 echo space: $(_get_available_space $SCRATCH_MNT) >> $seqres.full
76
77 # success, all done
78 echo "*** done"
79 status=0