f9cd2cf089a36cf1b8b7b17a3c9f50456eae5aea
[xfstests-dev.git] / tests / f2fs / 001
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2014 Jaegeuk Kim.  All Rights Reserved.
4 #
5 # FS QA Test No. f2fs/001
6 #
7 # Test inline_data behaviors when filesystem is full.
8 #
9 # The inline_data feature was introduced in ext4 and f2fs as follows.
10 #  ext4 : http://lwn.net/Articles/468678/
11 #  f2fs : http://lwn.net/Articles/573408/
12 #
13 # The basic idea is embedding small-sized file's data into relatively large
14 # inode space.
15 # In ext4, up to 132 bytes of data can be stored in 256 bytes-sized inode.
16 # In f2fs, up to 3.4KB of data can be embedded into 4KB-sized inode block.
17 #
18 seq=`basename $0`
19 seqres=$RESULT_DIR/$seq
20 echo "QA output created by $seq"
21
22 here=`pwd`
23 tmp=/tmp/$$
24 status=1        # failure is the default!
25 trap "_cleanup; exit \$status" 0 1 2 3 15
26
27 _cleanup()
28 {
29     cd /
30     rm -f $tmp.*
31 }
32
33 # get standard environment, filters and checks
34 . ./common/rc
35 . ./common/filter
36
37 _supported_fs f2fs
38 _supported_os Linux
39 _require_scratch
40
41 testfile=$SCRATCH_MNT/testfile
42 dummyfile=$SCRATCH_MNT/dummyfile
43
44 # build 4GB filesystem
45 _scratch_mkfs_sized $((4 * 1024 * 1024 * 1024)) > /dev/null 2>&1
46 _scratch_mount
47
48 echo "==== create small file ===="
49 $XFS_IO_PROG -t -f -c "pwrite -S 0x58 0 40" $testfile | _filter_xfs_io
50
51 # -ENOSPC should be triggered
52 echo "==== Fullfill the partition ===="
53 $XFS_IO_PROG -t -f -c "falloc 0 5g" $dummyfile | _filter_xfs_io
54
55 # -ENOSPC should be triggered without any panic
56 echo "==== change i_size & write data ===="
57 $XFS_IO_PROG -c "truncate 96" -c "pwrite -S 0x58 8192 4096" $testfile 2>&1 \
58         | _filter_xfs_io_error
59
60 echo "==== check data contents ===="
61 hexdump -C $testfile
62 _scratch_cycle_mount
63 hexdump -C $testfile
64
65 rm $testfile
66 rm $dummyfile
67
68 status=0
69 exit