generic/077: fall back to /usr if /lib/modules doesn't exist
[xfstests-dev.git] / tests / xfs / 187
1 #! /bin/bash
2 # FS QA Test No. 187
3 #
4 # To test out the noattr2 flag which is broken in pv#980021
5 # Given an existing attr2 filesystem, we should be able to mount
6 # as noattr2 and go back to an attr1 filesystem.
7 #
8 # Test the case where there are no more features2 bits on and
9 # so the morebitsbit should be off.
10 #
11 #-----------------------------------------------------------------------
12 # Copyright (c) 2008 Silicon Graphics, Inc.  All Rights Reserved.
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation.
17 #
18 # This program is distributed in the hope that it would be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write the Free Software Foundation,
25 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 #
27 #-----------------------------------------------------------------------
28 #
29
30 seq=`basename $0`
31 seqres=$RESULT_DIR/$seq
32 echo "QA output created by $seq"
33
34 here=`pwd`
35 tmp=/tmp/$$
36 status=1        # failure is the default!
37 trap "_cleanup; exit \$status" 0 1 2 3 15
38
39 _cleanup()
40 {
41     cd /
42     rm -f $tmp.*
43 }
44
45 _filter_version()
46 {
47         tee -a $seqres.full | tr ',' '\n' | egrep 'ATTR|MORE|LAZY'
48 }
49
50 # get standard environment, filters and checks
51 . ./common/rc
52 . ./common/filter
53 . ./common/attr
54
55 # real QA test starts here
56 _supported_fs xfs
57 _supported_os Linux
58
59 _require_scratch
60 _require_attrs
61 _require_attr_v1
62 _require_projid16bit
63
64 rm -f $seqres.full
65
66 # Reset the options so that we can control what is going on here
67 export MKFS_OPTIONS=""
68 export MOUNT_OPTIONS=""
69
70 # lazysb, attr2 and other feature bits are held in features2 and will require
71 # morebitsbit on So test with lazysb and without it to see if the morebitsbit is
72 # okay etc. If the mkfs defaults change, these need to change as well.
73 export MKFS_NO_LAZY="-l lazy-count=0 -i projid32bit=0"
74 export MKFS_LAZY="-l lazy-count=1 -i projid32bit=0"
75
76 # Make sure that when we think we are testing with morebits off
77 # that we really are.
78 _scratch_mkfs -i attr=1 $MKFS_NO_LAZY  >/dev/null 2>&1
79 $XFS_DB_PROG -c version $SCRATCH_DEV 2>&1 >$tmp.db
80 if grep -i morebits $tmp.db
81 then
82         echo ""
83         echo "Need to update test $seq so that initial subtests do not use features2"
84         echo ""
85         exit
86 fi
87
88 echo ""
89 echo "*** 1. test attr2 mkfs and then noattr2 mount ***"
90 echo ""
91 echo "attr2 fs"
92 echo ""
93 _scratch_mkfs -i attr=2 $MKFS_NO_LAZY >/dev/null 2>&1
94 $XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
95 echo ""
96 echo "noattr2 fs"
97 echo ""
98 _scratch_mount -o noattr2
99 $UMOUNT_PROG $SCRATCH_MNT
100 $XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
101
102 # adding an EA will ensure the ATTR1 flag is turned on
103 echo ""
104 echo "*** 2. test attr2 mkfs and then noattr2 mount with 1 EA ***"
105 echo ""
106 echo "attr2 fs"
107 echo ""
108 _scratch_mkfs -i attr=2 $MKFS_NO_LAZY >/dev/null 2>&1
109 $XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
110 echo ""
111 echo "noattr2 fs"
112 echo ""
113 _scratch_mount -o noattr2
114 cd $SCRATCH_MNT
115 touch testfile
116 $SETFATTR_PROG -n user.test -v 0xbabe testfile
117 $GETFATTR_PROG testfile
118 cd $here
119 $UMOUNT_PROG $SCRATCH_MNT
120 $XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
121
122 echo ""
123 echo "*** 3. test noattr2 mount and lazy sb ***"
124 echo ""
125 echo ""
126 echo "attr2 fs"
127 echo ""
128 _scratch_mkfs -i attr=2 $MKFS_LAZY >/dev/null 2>&1
129 $XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
130 echo ""
131 echo "noattr2 fs"
132 echo ""
133 _scratch_mount -o noattr2
134 cd $SCRATCH_MNT
135 touch testfile
136 cd $here
137 $UMOUNT_PROG $SCRATCH_MNT
138 $XFS_DB_PROG -r -c version $SCRATCH_DEV 2>&1 | _filter_version
139
140 # success, all done
141 status=0
142 exit