X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Ftests%2Fsanityn.sh;h=294b4966bf4a2c7699ceff047f96eda44d033312;hb=b63efc864794860f84f852ba3c89390676b18070;hp=56eac963c410a847978fcc1793a1429162696810;hpb=de7fe0875bf906416bbcbc650cd30895cb3aaffd;p=fs%2Flustre-release.git diff --git a/lustre/tests/sanityn.sh b/lustre/tests/sanityn.sh index 56eac96..294b4966 100644 --- a/lustre/tests/sanityn.sh +++ b/lustre/tests/sanityn.sh @@ -3,8 +3,8 @@ set -e ONLY=${ONLY:-"$*"} -# bug number for skipped test: 3192 15528/3811 16929 9977 15528/11549 18080 -ALWAYS_EXCEPT=" 14b 19 22 28 29 35 $SANITYN_EXCEPT" +# bug number for skipped test: 3192 LU-1205 15528/3811 16929 9977 15528/11549 18080 +ALWAYS_EXCEPT=" 14b 18c 19 22 28 29 35 $SANITYN_EXCEPT" # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! # bug number for skipped test: 12652 12652 @@ -22,16 +22,14 @@ PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH SIZE=${SIZE:-40960} CHECKSTAT=${CHECKSTAT:-"checkstat -v"} -GETSTRIPE=${GETSTRIPE:-lfs getstripe} -SETSTRIPE=${SETSTRIPE:-lstripe} MCREATE=${MCREATE:-mcreate} OPENFILE=${OPENFILE:-openfile} OPENUNLINK=${OPENUNLINK:-openunlink} +export MULTIOP=${MULTIOP:-multiop} export TMP=${TMP:-/tmp} MOUNT_2=${MOUNT_2:-"yes"} CHECK_GRANT=${CHECK_GRANT:-"yes"} GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""} -TSTUSR=${TSTUSR:-"quota_usr"} SAVE_PWD=$PWD @@ -273,7 +271,7 @@ test_14a() { cp -p `which multiop` $DIR1/d14/multiop || error "cp failed" MULTIOP_PROG=$DIR1/d14/multiop multiop_bg_pause $TMP/test14.junk O_c || return 1 MULTIOP_PID=$! - multiop $DIR2/d14/multiop Oc && error "expected error, got success" + $MULTIOP $DIR2/d14/multiop Oc && error "expected error, got success" kill -USR1 $MULTIOP_PID || return 2 wait $MULTIOP_PID || return 3 rm $TMP/test14.junk $DIR1/d14/multiop || error "removing multiop" @@ -324,17 +322,41 @@ run_test 14d "chmod of executing file is still possible ========" test_15() { # bug 974 - ENOSPC echo "PATH=$PATH" sh oos2.sh $MOUNT1 $MOUNT2 + wait_delete_completed grant_error=`dmesg | grep "> available"` [ -z "$grant_error" ] || error "$grant_error" } run_test 15 "test out-of-space with multiple writers ===========" +COUNT=${COUNT:-2500} +# The FSXNUM reduction for ZFS is needed until ORI-487 is fixed. +# We don't want to skip it entirely, but ZFS is VERY slow and cannot +# pass a 2500 operation dual-mount run within the time limit. +if [ "$(facet_fstype ost1)" = "zfs" ]; then + FSXNUM=$((COUNT / 5)) + FSXP=1 +elif [ "$SLOW" = "yes" ]; then + FSXNUM=$((COUNT * 5)) + FSXP=500 +else + FSXNUM=$COUNT + FSXP=100 +fi + test_16() { - rm -f $MOUNT1/fsxfile - lfs setstripe $MOUNT1/fsxfile -c -1 # b=10919 - fsx -c 50 -p 100 -N 2500 -l $((SIZE * 256)) -S 0 $MOUNT1/fsxfile $MOUNT2/fsxfile + local file1=$DIR1/$tfile + local file2=$DIR2/$tfile + + # to allocate grant because it may run out due to test_15. + lfs setstripe -c -1 $file1 + dd if=/dev/zero of=$file1 bs=$STRIPE_BYTES count=$OSTCOUNT oflag=sync + dd if=/dev/zero of=$file2 bs=$STRIPE_BYTES count=$OSTCOUNT oflag=sync + rm -f $file1 + + lfs setstripe -c -1 $file1 # b=10919 + fsx -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -S 0 $file1 $file2 } -run_test 16 "2500 iterations of dual-mount fsx =================" +run_test 16 "$FSXNUM iterations of dual-mount fsx" test_17() { # bug 3513, 3667 remote_ost_nodsh && skip "remote OST with nodsh" && return @@ -352,32 +374,49 @@ test_17() { # bug 3513, 3667 run_test 17 "resource creation/LVB creation race ===============" test_18() { - $LUSTRE/tests/mmap_sanity -d $MOUNT1 -m $MOUNT2 + # turn e.g. ALWAYS_EXCEPT="18c" into "-e 3" + local idx + local excepts= + for idx in {a..z}; do + local ptr=EXCEPT_ALWAYS_18$idx + [ x${!ptr} = xtrue ] || continue + + excepts="$excepts -e $(($(printf %d \'$idx)-96))" + done + + $LUSTRE/tests/mmap_sanity -d $MOUNT1 -m $MOUNT2 $excepts sync; sleep 1; sync } run_test 18 "mmap sanity check =================================" test_19() { # bug3811 - [ -d /proc/fs/lustre/obdfilter ] || return 0 + local node=$(facet_active_host ost1) + + # check whether obdfilter is cache capable at all + if ! get_obdfilter_param $node '' read_cache_enable >/dev/null; then + echo "not cache-capable obdfilter" + return 0 + fi - MAX=`lctl get_param -n obdfilter.*.readcache_max_filesize | head -n 1` - lctl set_param -n obdfilter.*OST*.readcache_max_filesize=4096 - dd if=/dev/urandom of=$TMP/f19b bs=512k count=32 - SUM=`cksum $TMP/f19b | cut -d" " -f 1,2` - cp $TMP/f19b $DIR1/f19b + local MAX=$(get_obdfilter_param $node '' readcache_max_filesize | \ + head -n 1) + set_obdfilter_param $node '' readcache_max_filesize 4096 + dd if=/dev/urandom of=$TMP/$tfile bs=512k count=32 + local SUM=$(cksum $TMP/$tfile | cut -d" " -f 1,2) + cp $TMP/$tfile $DIR1/$tfile for i in `seq 1 20`; do - [ $((i % 5)) -eq 0 ] && log "test_18 loop $i" + [ $((i % 5)) -eq 0 ] && log "$testname loop $i" cancel_lru_locks osc > /dev/null - cksum $DIR1/f19b | cut -d" " -f 1,2 > $TMP/sum1 & \ - cksum $DIR2/f19b | cut -d" " -f 1,2 > $TMP/sum2 + cksum $DIR1/$tfile | cut -d" " -f 1,2 > $TMP/sum1 & \ + cksum $DIR2/$tfile | cut -d" " -f 1,2 > $TMP/sum2 wait - [ "`cat $TMP/sum1`" = "$SUM" ] || \ - error "$DIR1/f19b `cat $TMP/sum1` != $SUM" - [ "`cat $TMP/sum2`" = "$SUM" ] || \ - error "$DIR2/f19b `cat $TMP/sum2` != $SUM" + [ "$(cat $TMP/sum1)" = "$SUM" ] || \ + error "$DIR1/$tfile $(cat $TMP/sum1) != $SUM" + [ "$(cat $TMP/sum2)" = "$SUM" ] || \ + error "$DIR2/$tfile $(cat $TMP/sum2) != $SUM" done - lctl set_param -n obdfilter.*OST*.readcache_max_filesize=$MAX - rm $DIR1/f19b + set_obdfilter_param $node '' readcache_max_filesize $MAX + rm $DIR1/$tfile } run_test 19 "test concurrent uncached read races ===============" @@ -385,9 +424,9 @@ test_20() { mkdir $DIR1/d20 cancel_lru_locks osc CNT=$((`lctl get_param -n llite.*.dump_page_cache | wc -l`)) - multiop $DIR1/f20 Ow8190c - multiop $DIR2/f20 Oz8194w8190c - multiop $DIR1/f20 Oz0r8190c + $MULTIOP $DIR1/f20 Ow8190c + $MULTIOP $DIR2/f20 Oz8194w8190c + $MULTIOP $DIR1/f20 Oz0r8190c cancel_lru_locks osc CNTD=$((`lctl get_param -n llite.*.dump_page_cache | wc -l` - $CNT)) [ $CNTD -gt 0 ] && \ @@ -460,7 +499,7 @@ run_test 24a "lfs df [-ih] [path] test =========================" test_24b() { touch $DIR1/$tfile - fsnum=`lfs df | grep -c "filesystem summary:"` + fsnum=$(lfs_df | grep -c "summary") [ $fsnum -eq 2 ] || error "lfs df shows $fsnum != 2 filesystems." } run_test 24b "lfs df should show both filesystems ===============" @@ -536,8 +575,8 @@ test_28() { # bug 9977 ECHO_UUID="ECHO_osc1_UUID" tOST=`$LCTL dl | | awk '/-osc-|OSC.*MNT/ { print $4 }' | head -1` - lfs setstripe $DIR1/$tfile -s 1048576 -i 0 -c 2 - tOBJID=`lfs getstripe $DIR1/$tfile |grep "^[[:space:]]\+1" |awk '{print $2}'` + $LFS setstripe $DIR1/$tfile -S 1048576 -i 0 -c 2 + tOBJID=`$LFS getstripe $DIR1/$tfile | awk '$1 == 1 {print $2}'` dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2 $LCTL <<-EOF @@ -546,7 +585,7 @@ test_28() { # bug 9977 setup $tOST EOF - tECHOID=`$LCTL dl | grep $ECHO_UUID | awk '{print $1}'` + tECHOID=`$LCTL dl | grep $ECHO_UUID | awk '{ print $1 }'` $LCTL --device $tECHOID destroy "${tOBJID}:0" $LCTL <<-EOF @@ -606,8 +645,13 @@ test_31a() { run_test 31a "voluntary cancel / blocking ast race==============" test_31b() { - remote_ost || { skip "local OST" && return 0; } - remote_ost_nodsh && skip "remote OST w/o dsh" && return 0 + remote_ost || { skip "local OST" && return 0; } + remote_ost_nodsh && skip "remote OST w/o dsh" && return 0 + + # make sure there is no local locks due to destroy + wait_mds_ost_sync || error "wait_mds_ost_sync()" + wait_delete_completed || error "wait_delete_completed()" + mkdir -p $DIR1/$tdir || error "Creating dir $DIR1/$tdir" lfs setstripe $DIR/$tdir/$tfile -i 0 -c 1 cp /etc/hosts $DIR/$tdir/$tfile @@ -890,40 +934,46 @@ test_35() { # bug 17645 run_test 35 "-EINTR cp_ast vs. bl_ast race does not evict client" test_36() { #bug 16417 - local SIZE - local SIZE_B - local i + local SIZE + local SIZE_B + local i - mkdir -p $DIR1/$tdir - $LFS setstripe -c -1 $DIR1/$tdir - i=0 - SIZE=50 - let SIZE_B=SIZE*1024*1024 - - while [ $i -le 10 ]; do - lctl mark "start test" - local before=$($LFS df | awk '{if ($1 ~/^filesystem/) {print $5; exit} }') - dd if=/dev/zero of=$DIR1/$tdir/file000 bs=1M count=$SIZE - sync - sleep 1 - local after_dd=$($LFS df | awk '{if ($1 ~/^filesystem/) {print $5; exit} }') - multiop_bg_pause $DIR2/$tdir/file000 O_r${SIZE_B}c || return 3 - read_pid=$! - rm -f $DIR1/$tdir/file000 - kill -USR1 $read_pid - wait $read_pid - sleep 1 - local after=$($LFS df | awk '{if ($1 ~/^filesystem/) {print $5; exit} }') - echo "*** cycle($i) *** before($before):after_dd($after_dd):after($after)" - # this free space! not used - if [ $after_dd -ge $after ]; then - error "space leaked" - return 1; - fi - let i=i+1 - done + mkdir -p $DIR1/$tdir + $LFS setstripe -c -1 $DIR1/$tdir + i=0 + SIZE=50 + let SIZE_B=SIZE*1024*1024 + + while [ $i -le 10 ]; do + lctl mark "start test" + local before=$($LFS df | awk '{ if ($1 ~/^filesystem/) \ + { print $5; exit} }') + dd if=/dev/zero of=$DIR1/$tdir/$tfile bs=1M count=$SIZE || + error "dd $DIR1/$tdir/$tfile ${SIZE}MB failed" + sync # sync data from client cache + sync_all_data # sync data from server cache (delayed allocation) + sleep 1 + local after_dd=$($LFS df | awk '{ if ($1 ~/^filesystem/) \ + { print $5; exit} }') + multiop_bg_pause $DIR2/$tdir/$tfile O_r${SIZE_B}c || return 3 + read_pid=$! + rm -f $DIR1/$tdir/$tfile + kill -USR1 $read_pid + wait $read_pid + wait_delete_completed + local after=$($LFS df | awk '{ if ($1 ~/^filesystem/) \ + { print $5; exit} }') + echo "*** cycle($i) *** before($before) after_dd($after_dd)" \ + "after($after)" + # this free space! not used + if [ $after_dd -ge $after ]; then + error "space leaked" + return 1; + fi + let i=i+1 + done } -run_test 36 "handle ESTALE/open-unlink corectly" +run_test 36 "handle ESTALE/open-unlink correctly" test_37() { # bug 18695 mkdir -p $DIR1/$tdir @@ -1193,7 +1243,7 @@ run_test 40e "pdirops: rename and others ==============" test_41a() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 mkdir $DIR2/$tfile && error "mkdir must fail" @@ -1206,10 +1256,10 @@ run_test 41a "pdirops: create vs mkdir ==============" test_41b() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 - multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } rm -r $DIR1/* return 0 @@ -1220,7 +1270,7 @@ test_41c() { touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 link $DIR2/$tfile-2 $DIR2/$tfile && error "link must fail" @@ -1233,7 +1283,7 @@ run_test 41c "pdirops: create vs link ==============" test_41d() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 rm $DIR2/$tfile || error "unlink must succeed" @@ -1247,7 +1297,7 @@ test_41e() { touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 mv $DIR2/$tfile-2 $DIR2/$tfile || error "rename must succeed" @@ -1260,7 +1310,7 @@ run_test 41e "pdirops: create and rename (tgt) ==============" test_41f() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 mv $DIR2/$tfile $DIR2/$tfile-2 || error "rename must succeed" @@ -1273,7 +1323,7 @@ run_test 41f "pdirops: create and rename (src) ==============" test_41g() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 stat $DIR2/$tfile > /dev/null || error "stat must succeed" @@ -1286,7 +1336,7 @@ run_test 41g "pdirops: create vs getattr ==============" test_41h() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 - multiop $DIR1/$tfile oO_CREAT:O_RDWR:c & + $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c & PID1=$! sleep 1 ls -lia $DIR2/ > /dev/null @@ -1316,7 +1366,7 @@ test_42b() { mkdir $DIR1/$tfile & PID1=$! sleep 1 - multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } rm -r $DIR1/* return 0 @@ -1425,7 +1475,7 @@ test_43b() { rm $DIR1/$tfile & PID1=$! sleep 1 - multiop $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed" + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed" check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } rm -r $DIR1/* return 0 @@ -1540,7 +1590,7 @@ test_44b() { mv $DIR1/$tfile-2 $DIR1/$tfile & PID1=$! sleep 1 - multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } rm -r $DIR1/* return 0 @@ -1657,7 +1707,7 @@ test_45b() { mv $DIR1/$tfile $DIR1/$tfile-2 & PID1=$! sleep 1 - multiop $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed" + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed" check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } rm -r $DIR1/* return 0 @@ -1772,7 +1822,7 @@ test_46b() { link $DIR1/$tfile-2 $DIR1/$tfile & PID1=$! sleep 1 - multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } rm -r $DIR1/* return 0 @@ -1879,6 +1929,8 @@ test_50() { run_test 50 "osc lvb attrs: enqueue vs. CP AST ==============" test_60() { + [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.0) ]] || + { skip "Need MDS version at least 2.3.0"; return; } # Create a file mkdir -p $DIR1/$tdir file1=$DIR1/$tdir/file @@ -1918,7 +1970,7 @@ test_60() { error "chmod should not change data version: $version5 != $version6" # Chown do not change version - chown $TSTUSR $file2 || error "Could not chown $TSTUSR $file2" + chown $RUNAS_ID $file2 || error "Could not chown $RUNAS_ID $file2" version7=$($LFS data_version $file1) [ "$version5" == "$version7" ] || error "chown should not change data version: $version5 != $version7" @@ -1929,6 +1981,6 @@ log "cleanup: ======================================================" [ "$(mount | grep $MOUNT2)" ] && umount $MOUNT2 -complete $(basename $0) $SECONDS +complete $SECONDS check_and_cleanup_lustre exit_status