xfs: force file creation to the data device for certain layout tests
[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
24 # single AG will cause xfs_repair to fail checks.
25 _require_scratch_nocheck
26
27 rm -f $seqres.full
28
29 # Disable the scratch rt device to avoid test failures relating to the rt
30 # bitmap consuming all the free space in our small data device.
31 unset SCRATCH_RTDEV
32
33 fsblksz=1024
34 _scratch_mkfs_xfs -d size=$((32768*fsblksz)) -b size=$fsblksz >> $seqres.full 2>&1
35 _scratch_mount
36
37 # fix the reserve block pool to a known size so that the enospc calculations
38 # work out correctly.
39 _scratch_resvblks 1024 >> $seqres.full 2>&1
40
41 # on a 16MB filesystem, there's 32768x$fsblkszbyte blocks. used is:
42 #       - 4944 in the log,
43 #       - 32+1 for the root inode cluster
44 #       - 4 for the AG header
45 #       - 2 for free space btrees
46 #       - 4 for the AGFL
47 #       - min(%5, 1024) = 1024 blocks for the reserve pool
48 #       - about 15 blocks I can't account for right now.
49 # That leaves ~26,745 blocks free to use.
50 #
51 # Writing the following three files fill the fs almost exactly.
52 #
53 # $ df -k /mnt/scratch
54 # Filesystem           1K-blocks      Used Available Use% Mounted on
55 # /dev/ubdc                13912     13908         4 100% /mnt/scratch
56 #
57 blks=$(( ($(_get_available_space $SCRATCH_MNT) / $fsblksz) - 15 ))
58 test $blks -gt 1100 || _notrun "not enough space"
59 b1=$(echo $blks | sed -e 's/[0-9][0-9][0-9]$/000/g')
60 # in case b2 begins with '0' as '098' and being treated as octal number, force
61 # it to be 10 based
62 b2=$((10#$(echo $blks | sed -e 's/^[0-9][0-9]//g')))
63 echo "blks: $blks b1: $b1 b2: $b2" >> $seqres.full
64 dd if=/dev/zero of=$SCRATCH_MNT/fred bs=$fsblksz count=$((b1 - 1000)) 2>&1 | _filter_dd
65 dd if=/dev/zero of=$SCRATCH_MNT/fred2 bs=$fsblksz count=$b2 2>&1 | _filter_dd
66 dd if=/dev/zero of=$SCRATCH_MNT/fred3 bs=$fsblksz count=$((blks - (b1 + b2))) 2>&1 | _filter_dd
67 rm -f $SCRATCH_MNT/fred*
68
69 echo "*** one file"
70 # now try a single file of that size
71 dd if=/dev/zero of=$SCRATCH_MNT/fred bs=$fsblksz count=$blks 2>&1 | _filter_dd
72 #rm -f $SCRATCH_MNT/fred*
73
74 echo "*** one file, a few bytes at a time"
75 # now try a single file of that size
76 dd if=/dev/zero of=$SCRATCH_MNT/fred bs=15 count=$[blks/15*$fsblksz] 2>&1 | _filter_dd
77 echo space: $(_get_available_space $SCRATCH_MNT) >> $seqres.full
78
79 # success, all done
80 echo "*** done"
81 status=0