generic/077: fall back to /usr if /lib/modules doesn't exist
[xfstests-dev.git] / tests / xfs / 295
1 #! /bin/bash
2 # FS QA Test No. 295
3 #
4 # Test xfs_logprint w/ multiply-logged inodes & continued transactions
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2013 Red Hat, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22 #
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35     cd /
36     rm -f $tmp.*
37 }
38
39 # get standard environment, filters and checks
40 . ./common/rc
41 . ./common/filter
42
43 # real QA test starts here
44
45 # Modify as appropriate.
46 _supported_fs xfs
47 _supported_os IRIX Linux
48 _require_scratch
49
50 rm -f $seqres.full
51
52 _scratch_mkfs -l size=2560b >/dev/null 2>&1
53
54 # Should yield a multiply-logged inode, thanks to xattr
55 # Old logprint says this, then coredumps:
56 #       xlog_print_trans_inode: illegal inode type
57 _scratch_mount
58 echo hello > $SCRATCH_MNT/hello; setfattr -n user.name -v value $SCRATCH_MNT/hello
59 _scratch_unmount
60 _scratch_xfs_logprint 2>&1 >> $seqres.full
61
62 # Now go for a continued transaction
63 # The trick here is to get a transaction which is exactly the size of a
64 # xfs_inode_log_format_32_t or xfs_inode_log_format_64_t
65 # Prior to the bugfix, this was parsed like an inode due to the size
66 # match, not as a continued transaction.  If that happens we'll see:
67 #       xfs_logprint: unknown log operation type (494e)
68
69 _scratch_mkfs -l size=2560b >/dev/null 2>&1
70 _scratch_mount
71 for I in `seq 0 8192`; do
72         echo a >> $SCRATCH_MNT/cat
73         touch $SCRATCH_MNT/tmp$I
74 done
75 _scratch_unmount
76 _scratch_xfs_logprint 2>&1 >> $seqres.full
77
78 # success, all done
79 status=0
80 exit