Home | History | Annotate | Download | only in ext4-inode-version

Lines Matching refs:version

9 ## the Free Software Foundation; either version 2 of the License, or          ##
10 ## (at your option) any later version. ##
26 export TCID="ext4-inode-version"
31 # Test that inode version is not 32 bits with 128 inode size
34 tst_resm TINFO "Test inode version is 32 bits with 128 inode size"
50 # inode version > 0
53 version=`ext4_get_inode_version.sh tmp_file`
55 if [ $version -lt 1 ]; then
56 tst_resm TFAIL "inode version is smaller than 1"
61 # inode version is 32 bits: 0x00000000
62 version=`debugfs $EXT4_DEV -R "stat tmp_file" 2> /dev/null | grep 'Version'`
63 version=`echo $version | awk '{ print $NF }'`
64 version=`echo $version | sed 's/^0x//'`
65 len=${#version}
68 tst_resm TFAIL "inode version is not 32 bits"
79 tst_resm TPASS "32 bits inode version with 128 inode size test pass"
98 # Check the inode version after some file operation
101 tst_resm TFAIL "inode version is wrong"
126 version=`ext4_get_inode_version.sh tmp_file`
128 # echo "remount: new - $version"
129 if [ $old_version -ne $version ]; then
130 tst_resm TFAIL "inode version has changed unexpected"
134 tst_resm TPASS "inode version with 256 inode size test pass"