fsx/fsstress: round blocksize properly
[xfstests-dev.git] / tests / generic / 530
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0+
3 # Copyright (c) 2019 Oracle, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 530
6 #
7 # Stress test creating a lot of unlinked O_TMPFILE files and recovering them
8 # after a crash, checking that we don't blow up the filesystem.  This is sort
9 # of a performance test for the xfs unlinked inode backref patchset, but it
10 # applies to most other filesystems.
11 #
12 # Use only a single CPU to test the single threaded situation.
13 #
14 seq=`basename $0`
15 seqres=$RESULT_DIR/$seq
16 echo "QA output created by $seq"
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 testfile=$TEST_DIR/$seq.txt
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24         cd /
25         rm -f $tmp.*
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30
31 # real QA test starts here
32 _supported_fs generic
33 _require_scratch
34 _require_scratch_shutdown
35 _require_metadata_journaling
36 _require_test_program "t_open_tmpfiles"
37
38 rm -f $seqres.full
39 _scratch_mkfs >> $seqres.full 2>&1
40 _scratch_mount
41
42 # Set ULIMIT_NOFILE to min(file-max / 2, 50000 files per LOAD_FACTOR)
43 # so that this test doesn't take forever or OOM the box
44 max_files=$((50000 * LOAD_FACTOR))
45 max_allowable_files=$(( $(cat /proc/sys/fs/file-max) / 2 ))
46 test $max_allowable_files -gt 0 && test $max_files -gt $max_allowable_files && \
47         max_files=$max_allowable_files
48 ulimit -n $max_files
49
50 # Open a lot of unlinked files
51 echo create >> $seqres.full
52 $here/src/t_open_tmpfiles $SCRATCH_MNT $(_scratch_shutdown_handle) >> $seqres.full
53
54 # Unmount to prove that we can clean it all
55 echo umount >> $seqres.full
56 before=$(date +%s)
57 _scratch_unmount
58 after=$(date +%s)
59 echo "Unmount took $((after - before))s." >> $seqres.full
60
61 # Mount so that we can run the usual checks
62 echo silence is golden
63 _scratch_mount
64 status=0
65 exit