X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;ds=sidebyside;f=lustre%2Ftests%2Fsanityn.sh;h=c251532868b32bfdb7a3e639c87480b1d17b1a98;hb=7c99f67d9d39e8a037e830cf08a9df305e6d8da2;hp=586fbce5bf735806b0639dbe38722eb58f4c4ba3;hpb=62b57e34d9a0df1ce4b82650d7e328db5d048b39;p=fs%2Flustre-release.git diff --git a/lustre/tests/sanityn.sh b/lustre/tests/sanityn.sh index 586fbce..c251532 100755 --- a/lustre/tests/sanityn.sh +++ b/lustre/tests/sanityn.sh @@ -3,45 +3,35 @@ set -e ONLY=${ONLY:-"$*"} -# bug number for skipped test: 9977/LU-7105 -# LU-7105 -ALWAYS_EXCEPT=" 28 $SANITYN_EXCEPT" -# UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! - -SRCDIR=$(dirname $0) -PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH SIZE=${SIZE:-40960} -CHECKSTAT=${CHECKSTAT:-"checkstat -v"} 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:-""} -SAVE_PWD=$PWD - -export NAME=${NAME:-local} - -LUSTRE=${LUSTRE:-`dirname $0`/..} +LUSTRE=${LUSTRE:-$(dirname $0)/..} . $LUSTRE/tests/test-framework.sh -CLEANUP=${CLEANUP:-:} -SETUP=${SETUP:-:} init_test_env $@ -. ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh} init_logging +ALWAYS_EXCEPT="$SANITYN_EXCEPT " +# bug number for skipped test: LU-7105 +ALWAYS_EXCEPT+=" 28" +# UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT! + if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then -# bug number for skipped test: - ALWAYS_EXCEPT="$ALWAYS_EXCEPT " -# LU-2829 / LU-2887 - make allowances for ZFS slowness + # LU-2829 / LU-2887 - make allowances for ZFS slowness TEST33_NFILES=${TEST33_NFILES:-1000} fi + # 23 (min)" [ "$SLOW" = "no" ] && EXCEPT_SLOW="33a" +build_test_filter + FAIL_ON_ERROR=false SETUP=${SETUP:-:} @@ -62,8 +52,6 @@ dd if=/dev/urandom of=$SAMPLE_FILE bs=1M count=1 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS -build_test_filter - test_1() { touch $DIR1/$tfile [ -f $DIR2/$tfile ] || error "Check create" @@ -316,65 +304,52 @@ test_14aa() { MULTIPID=$! $DIR2/$tdir/$tfile && error || true - kill -USR1 $MULTIPID - wait $MULTIPID || return 2 + kill $MULTIPID } run_test 14aa "execution of file open for write returns -ETXTBSY" test_14ab() { test_mkdir $DIR1/$tdir - cp -p $(which multiop) $DIR1/$tdir/multiop || error "cp failed" - MULTIOP_PROG=$DIR1/$tdir/multiop multiop_bg_pause $TMP/$tfile O_c || - return 1 - MULTIOP_PID=$! - $MULTIOP $DIR2/$tdir/multiop Oc && error "expected error, got success" - kill -USR1 $MULTIOP_PID || return 2 - wait $MULTIOP_PID || return 3 - rm $TMP/$tfile $DIR1/$tdir/multiop || error "removing multiop" + cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed" + $DIR1/$tdir/sleep 60 & + SLEEP_PID=$! + $MULTIOP $DIR2/$tdir/sleep Oc && error "expected error, got success" + kill $SLEEP_PID } run_test 14ab "open(RDWR) of executing file returns -ETXTBSY" test_14b() { # bug 3192, 7040 test_mkdir $DIR1/$tdir - cp -p $(which multiop) $DIR1/$tdir/multiop || error "cp failed" - MULTIOP_PROG=$DIR1/$tdir/multiop multiop_bg_pause $TMP/$tfile O_c || - return 1 - MULTIOP_PID=$! - $TRUNCATE $DIR2/$tdir/multiop 0 && kill -9 $MULTIOP_PID && \ + cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed" + $DIR1/$tdir/sleep 60 & + SLEEP_PID=$! + $TRUNCATE $DIR2/$tdir/sleep 60 && kill -9 $SLEEP_PID && \ error "expected truncate error, got success" - kill -USR1 $MULTIOP_PID || return 2 - wait $MULTIOP_PID || return 3 - cmp $(which multiop) $DIR1/$tdir/multiop || error "binary changed" - rm $TMP/$tfile $DIR1/$tdir/multiop || error "removing multiop" + kill $SLEEP_PID + cmp $(which sleep) $DIR1/$tdir/sleep || error "binary changed" } run_test 14b "truncate of executing file returns -ETXTBSY ======" test_14c() { # bug 3430, 7040 test_mkdir $DIR1/$tdir - cp -p $(which multiop) $DIR1/$tdir/multiop || error "cp failed" - MULTIOP_PROG=$DIR1/$tdir/multiop multiop_bg_pause $TMP/$tfile O_c || - return 1 - MULTIOP_PID=$! - cp /etc/hosts $DIR2/$tdir/multiop && error "expected error, got success" - kill -USR1 $MULTIOP_PID || return 2 - wait $MULTIOP_PID || return 3 - cmp $(which multiop) $DIR1/$tdir/multiop || error "binary changed" - rm $TMP/$tfile $DIR1/$tdir/multiop || error "removing multiop" + cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed" + $DIR1/$tdir/sleep 60 & + SLEEP_PID=$! + cp /etc/hosts $DIR2/$tdir/sleep && error "expected error, got success" + kill $SLEEP_PID + cmp $(which sleep) $DIR1/$tdir/sleep || error "binary changed" } run_test 14c "open(O_TRUNC) of executing file return -ETXTBSY ==" test_14d() { # bug 10921 test_mkdir $DIR1/$tdir - cp -p $(which multiop) $DIR1/$tdir/multiop || error "cp failed" - MULTIOP_PROG=$DIR1/$tdir/multiop multiop_bg_pause $TMP/$tfile O_c || - return 1 - MULTIOP_PID=$! + cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed" + $DIR1/$tdir/sleep 60 & + SLEEP_PID=$! log chmod - chmod 600 $DIR1/$tdir/multiop || error "chmod failed" - kill -USR1 $MULTIOP_PID || return 2 - wait $MULTIOP_PID || return 3 - cmp $(which multiop) $DIR1/$tdir/multiop || error "binary changed" - rm $TMP/$tfile $DIR1/$tdir/multiop || error "removing multiop" + chmod 600 $DIR1/$tdir/sleep || error "chmod failed" + kill $SLEEP_PID + cmp $(which sleep) $DIR1/$tdir/sleep || error "binary changed" } run_test 14d "chmod of executing file is still possible ========" @@ -382,7 +357,7 @@ test_15() { # bug 974 - ENOSPC echo "PATH=$PATH" sh oos2.sh $MOUNT1 $MOUNT2 wait_delete_completed - grant_error=`dmesg | grep "> available"` + grant_error=$(dmesg | grep "< tot_grant") [ -z "$grant_error" ] || error "$grant_error" } run_test 15 "test out-of-space with multiple writers ===========" @@ -429,18 +404,21 @@ run_test 16a "$FSXNUM iterations of dual-mount fsx" test_16b() { local file1=$DIR1/$tfile local file2=$DIR2/$tfile + local stripe_size=($($LFS getstripe -S $DIR)) # 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 + dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync || + error "dd failed writing to file=$file1" + dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync || + error "dd failed writing to file=$file2" rm -f $file1 lfs setstripe -c -1 $file1 # b=10919 # -o is set to 8192 because writes < 1 page and between 1 and 2 pages # create a mix of tiny writes & normal writes fsx -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -o 8192 -S 0 $file1 \ - $file2 + $file2 || error "fsx with tiny write failed." } run_test 16b "$FSXNUM iterations of dual-mount fsx at small size" @@ -1283,7 +1261,7 @@ test_35() { # bug 17645 for g in $gen; do if ! test "$g" -eq "${generation[count]}"; then list=$(lctl list_param mdc.$FSNAME-MDT*-mdc-*.import) - local c = 0 + local c=0 for imp in $list; do if [ $c = $count ]; then break @@ -1472,13 +1450,32 @@ test_39d() { # LU-7310 } run_test 39d "sync write should update mtime" +pdo_sched() { + # how long 40-47 take with specific delay + # sleep 0.1 # 78s + # sleep 0.2 # 103s + # sleep 0.3 # 124s + sleep 0.5 # 164s +} + +# for pdo testing, we must cancel MDT-MDT locks as well as client locks to +# avoid unexpected delays due to previous tests +pdo_lru_clear() { + cancel_lru_locks mdc + do_nodes $(comma_list $(mdts_nodes)) \ + $LCTL set_param -n ldlm.namespaces.*mdt*.lru_size=clear + do_nodes $(comma_list $(mdts_nodes)) \ + $LCTL get_param ldlm.namespaces.*mdt*.lock_unused_count \ + ldlm.namespaces.*mdt*.lock_count | grep -v '=0' +} + # check that pid exists hence second operation wasn't blocked by first one # if it is so then there is no conflict, return 0 # else second operation is conflicting with first one, return 1 check_pdo_conflict() { local pid=$1 local conflict=0 - sleep 1 # to ensure OP1 is finished on client if OP2 is blocked by OP1 + pdo_sched # to ensure OP1 is finished on client if OP2 is blocked by OP1 if [[ `ps --pid $pid | wc -l` == 1 ]]; then conflict=1 echo "Conflict" @@ -1492,12 +1489,12 @@ check_pdo_conflict() { # test 40: check non-blocking operations test_40a() { remote_mds_nodsh && skip "remote MDS with nodsh" && return + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 touch $DIR2 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 + PID1=$!; pdo_sched touch $DIR2/$tfile-2 check_pdo_conflict $PID1 || error "create is blocked" mkdir $DIR2/$tfile-3 @@ -1514,6 +1511,7 @@ test_40a() { # all operations above shouldn't wait the first one check_pdo_conflict $PID1 || error "parallel operation is blocked" + do_facet $SINGLEMDS lctl set_param fail_loc=0 wait $PID1 rm -rf $DIR/$tfile* return 0 @@ -1522,11 +1520,11 @@ run_test 40a "pdirops: create vs others ==============" test_40b() { remote_mds_nodsh && skip "remote MDS with nodsh" && return + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 touch $DIR1/$tfile & - PID1=$! - sleep 1 + PID1=$!; pdo_sched # open|create touch $DIR2/$tfile-2 check_pdo_conflict $PID1 || error "create is blocked" @@ -1544,6 +1542,7 @@ test_40b() { # all operations above shouldn't wait the first one check_pdo_conflict $PID1 || error "parallel operation is blocked" + do_facet $SINGLEMDS lctl set_param fail_loc=0 wait $PID1 rm -rf $DIR/$tfile* return 0 @@ -1552,12 +1551,12 @@ run_test 40b "pdirops: open|create and others ==============" test_40c() { remote_mds_nodsh && skip "remote MDS with nodsh" && return + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile $DIR1/$tfile-0 & - PID1=$! - sleep 1 + PID1=$!; pdo_sched # open|create touch $DIR2/$tfile-2 check_pdo_conflict $PID1 || error "create is blocked" @@ -1575,6 +1574,7 @@ test_40c() { # all operations above shouldn't wait the first one check_pdo_conflict $PID1 || error "parallel operation is blocked" + do_facet $SINGLEMDS lctl set_param fail_loc=0 wait $PID1 rm -rf $DIR/$tfile* return 0 @@ -1583,12 +1583,12 @@ run_test 40c "pdirops: link and others ==============" test_40d() { remote_mds_nodsh && skip "remote MDS with nodsh" && return + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 + PID1=$!; pdo_sched # open|create touch $DIR2/$tfile-2 check_pdo_conflict $PID1 || error "create is blocked" @@ -1606,6 +1606,7 @@ test_40d() { # all operations above shouldn't wait the first one check_pdo_conflict $PID1 || error "parallel operation is blocked" + do_facet $SINGLEMDS lctl set_param fail_loc=0 wait $PID1 return 0 } @@ -1613,12 +1614,12 @@ run_test 40d "pdirops: unlink and others ==============" test_40e() { remote_mds_nodsh && skip "remote MDS with nodsh" && return + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-0 & - PID1=$! - sleep 1 + PID1=$!; pdo_sched # open|create touch $DIR2/$tfile-2 check_pdo_conflict $PID1 || error "create is blocked" @@ -1634,6 +1635,7 @@ test_40e() { # all operations above shouldn't wait the first one check_pdo_conflict $PID1 || error "parallel operation is blocked" + do_facet $SINGLEMDS lctl set_param fail_loc=0 wait $PID1 rm -rf $DIR/$tfile* return 0 @@ -1642,106 +1644,130 @@ run_test 40e "pdirops: rename and others ==============" # test 41: create blocking operations test_41a() { + pdo_lru_clear #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 & - PID1=$! - sleep 1 - mkdir $DIR2/$tfile && error "mkdir must fail" + PID1=$! ; pdo_sched + mkdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; echo "mkdir isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail" rm -rf $DIR/$tfile* return 0 } run_test 41a "pdirops: create vs mkdir ==============" test_41b() { + pdo_lru_clear #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 & - PID1=$! - sleep 1 - $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + PID1=$! ; pdo_sched + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "create must fail" rm -rf $DIR/$tfile* return 0 } run_test 41b "pdirops: create vs create ==============" test_41c() { + pdo_lru_clear 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 & - PID1=$! - sleep 1 - link $DIR2/$tfile-2 $DIR2/$tfile && error "link must fail" + PID1=$! ; pdo_sched + link $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "link must fail" rm -rf $DIR/$tfile* return 0 } run_test 41c "pdirops: create vs link ==============" test_41d() { + pdo_lru_clear #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 & - PID1=$! - sleep 1 - rm $DIR2/$tfile || error "unlink must succeed" + PID1=$! ; pdo_sched + rm $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed" rm -rf $DIR/$tfile* return 0 } run_test 41d "pdirops: create vs unlink ==============" test_41e() { + pdo_lru_clear 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 & - PID1=$! - sleep 1 - mv $DIR2/$tfile-2 $DIR2/$tfile || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 41e "pdirops: create and rename (tgt) ==============" test_41f() { + pdo_lru_clear #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 & - PID1=$! - sleep 1 - mv $DIR2/$tfile $DIR2/$tfile-2 || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile $DIR2/$tfile-2 & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 41f "pdirops: create and rename (src) ==============" test_41g() { + pdo_lru_clear #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 & - PID1=$! - sleep 1 - stat $DIR2/$tfile > /dev/null || error "stat must succeed" + PID1=$! ; pdo_sched + stat $DIR2/$tfile > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed" rm -rf $DIR/$tfile* return 0 } run_test 41g "pdirops: create vs getattr ==============" test_41h() { + pdo_lru_clear #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 & - PID1=$! - sleep 1 - ls -lia $DIR2/ > /dev/null + PID1=$! ; pdo_sched + ls -lia $DIR2/ > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; } + wait $PID2 rm -rf $DIR/$tfile* return 0 } @@ -1749,106 +1775,130 @@ run_test 41h "pdirops: create vs readdir ==============" # test 42: unlink and blocking operations test_42a() { + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - mkdir $DIR2/$tfile && error "mkdir must fail" + PID1=$! ; pdo_sched + mkdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail" rm -rf $DIR/$tfile* return 0 } run_test 42a "pdirops: mkdir vs mkdir ==============" test_42b() { + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + PID1=$! ; pdo_sched + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "create must fail" rm -rf $DIR/$tfile* return 0 } run_test 42b "pdirops: mkdir vs create ==============" test_42c() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - link $DIR2/$tfile-2 $DIR2/$tfile && error "link must fail" + PID1=$! ; pdo_sched + link $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "link must fail" rm -rf $DIR/$tfile* return 0 } run_test 42c "pdirops: mkdir vs link ==============" test_42d() { + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - rmdir $DIR2/$tfile || error "unlink must succeed" + PID1=$! ; pdo_sched + rmdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed" rm -rf $DIR/$tfile* return 0 } run_test 42d "pdirops: mkdir vs unlink ==============" test_42e() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - mv -T $DIR2/$tfile-2 $DIR2/$tfile && error "rename must fail" + PID1=$! ; pdo_sched + mv -T $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "rename must fail" rm -rf $DIR/$tfile* return 0 } run_test 42e "pdirops: mkdir and rename (tgt) ==============" test_42f() { + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - mv $DIR2/$tfile $DIR2/$tfile-2 || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile $DIR2/$tfile-2 & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 42f "pdirops: mkdir and rename (src) ==============" test_42g() { + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - stat $DIR2/$tfile > /dev/null || error "stat must succeed" + PID1=$! ; pdo_sched + stat $DIR2/$tfile > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed" rm -rf $DIR/$tfile* return 0 } run_test 42g "pdirops: mkdir vs getattr ==============" test_42h() { + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mkdir $DIR1/$tfile & - PID1=$! - sleep 1 - ls -lia $DIR2/ > /dev/null + PID1=$! ; pdo_sched + ls -lia $DIR2/ > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; } + wait $PID2 rm -rf $DIR/$tfile* return 0 } @@ -1856,114 +1906,138 @@ run_test 42h "pdirops: mkdir vs readdir ==============" # test 43: unlink and blocking operations test_43a() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - mkdir $DIR2/$tfile || error "mkdir must succeed" + PID1=$! ; pdo_sched + mkdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "mkdir must succeed" rm -rf $DIR/$tfile* return 0 } run_test 43a "pdirops: unlink vs mkdir ==============" test_43b() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed" + PID1=$! ; pdo_sched + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "create must succeed" rm -rf $DIR/$tfile* return 0 } run_test 43b "pdirops: unlink vs create ==============" test_43c() { + pdo_lru_clear touch $DIR1/$tfile touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - link $DIR2/$tfile-2 $DIR2/$tfile || error "link must succeed" + PID1=$! ; pdo_sched + link $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "link must succeed" rm -rf $DIR/$tfile* return 0 } run_test 43c "pdirops: unlink vs link ==============" test_43d() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - rm $DIR2/$tfile && error "unlink must fail" + PID1=$! ; pdo_sched + rm $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail" rm -rf $DIR/$tfile* return 0 } run_test 43d "pdirops: unlink vs unlink ==============" test_43e() { + pdo_lru_clear touch $DIR1/$tfile touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - mv -u $DIR2/$tfile-2 $DIR2/$tfile || error "rename must succeed" + PID1=$! ; pdo_sched + mv -u $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 43e "pdirops: unlink and rename (tgt) ==============" test_43f() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - mv $DIR2/$tfile $DIR2/$tfile-2 && error "rename must fail" + PID1=$! ; pdo_sched + mv $DIR2/$tfile $DIR2/$tfile-2 & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "rename must fail" rm -rf $DIR/$tfile* return 0 } run_test 43f "pdirops: unlink and rename (src) ==============" test_43g() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - stat $DIR2/$tfile > /dev/null && error "stat must fail" + PID1=$! ; pdo_sched + stat $DIR2/$tfile > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "stat must fail" rm -rf $DIR/$tfile* return 0 } run_test 43g "pdirops: unlink vs getattr ==============" test_43h() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - ls -lia $DIR2/ > /dev/null + PID1=$! ; pdo_sched + ls -lia $DIR2/ > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; } + wait $PID2 rm -rf $DIR/$tfile* return 0 } @@ -1971,15 +2045,18 @@ run_test 43h "pdirops: unlink vs readdir ==============" test_43i() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 rm $DIR1/$tfile & - PID1=$! - sleep 1 - $LFS mkdir -i 1 $DIR2/$tfile || error "remote mkdir must succeed" + PID1=$! ; pdo_sched + $LFS mkdir -i 1 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "remote mkdir isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "remote mkdir must succeed" rm -rf $DIR/$tfile* return 0 } @@ -1987,116 +2064,141 @@ run_test 43i "pdirops: unlink vs remote mkdir" # test 44: rename tgt and blocking operations test_44a() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - mkdir $DIR2/$tfile && error "mkdir must fail" - check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; } + PID1=$! ; pdo_sched + mkdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 + check_pdo_conflict $PID1 && { wait $PID1; date;error "mkdir isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail" + date rm -rf $DIR/$tfile* return 0 } run_test 44a "pdirops: rename tgt vs mkdir ==============" test_44b() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + PID1=$! ; pdo_sched + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "create must fail" rm -rf $DIR/$tfile* return 0 } run_test 44b "pdirops: rename tgt vs create ==============" test_44c() { + pdo_lru_clear touch $DIR1/$tfile-2 touch $DIR1/$tfile-3 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - link $DIR2/$tfile-3 $DIR2/$tfile && error "link must fail" + PID1=$! ; pdo_sched + link $DIR2/$tfile-3 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "link must fail" rm -rf $DIR/$tfile* return 0 } run_test 44c "pdirops: rename tgt vs link ==============" test_44d() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - rm $DIR2/$tfile || error "unlink must succeed" + PID1=$! ; pdo_sched + rm $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed" rm -rf $DIR/$tfile* return 0 } run_test 44d "pdirops: rename tgt vs unlink ==============" test_44e() { + pdo_lru_clear touch $DIR1/$tfile touch $DIR1/$tfile-2 touch $DIR1/$tfile-3 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - mv $DIR2/$tfile-3 $DIR2/$tfile || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile-3 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 44e "pdirops: rename tgt and rename (tgt) ==============" test_44f() { + pdo_lru_clear touch $DIR1/$tfile-2 touch $DIR1/$tfile-3 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - mv $DIR2/$tfile $DIR2/$tfile-3 || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile $DIR2/$tfile-3 & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 44f "pdirops: rename tgt and rename (src) ==============" test_44g() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - stat $DIR2/$tfile > /dev/null || error "stat must succeed" + PID1=$! ; pdo_sched + stat $DIR2/$tfile > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed" rm -rf $DIR/$tfile* return 0 } run_test 44g "pdirops: rename tgt vs getattr ==============" test_44h() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - ls -lia $DIR2/ > /dev/null + PID1=$! ; pdo_sched + ls -lia $DIR2/ > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; } + wait $PID2 rm -rf $DIR/$tfile* return 0 } @@ -2105,15 +2207,18 @@ run_test 44h "pdirops: rename tgt vs readdir ==============" # test 44: rename tgt and blocking operations test_44i() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2 0x146 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146 mv $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - $LFS mkdir -i 1 $DIR2/$tfile && error "remote mkdir must fail" + PID1=$! ; pdo_sched + $LFS mkdir -i 1 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "remote mkdir isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail" rm -rf $DIR/$tfile* return 0 } @@ -2121,114 +2226,137 @@ run_test 44i "pdirops: rename tgt vs remote mkdir" # test 45: rename src and blocking operations test_45a() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - mkdir $DIR2/$tfile || error "mkdir must succeed" + PID1=$! ; pdo_sched + mkdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "mkdir must succeed" rm -rf $DIR/$tfile* return 0 } run_test 45a "pdirops: rename src vs mkdir ==============" test_45b() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed" + PID1=$! ; pdo_sched + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "create must succeed" rm -rf $DIR/$tfile* return 0 } run_test 45b "pdirops: rename src vs create ==============" test_45c() { + pdo_lru_clear touch $DIR1/$tfile touch $DIR1/$tfile-3 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - link $DIR2/$tfile-3 $DIR2/$tfile || error "link must succeed" + PID1=$! ; pdo_sched + link $DIR2/$tfile-3 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "link must succeed" rm -rf $DIR/$tfile* return 0 } run_test 45c "pdirops: rename src vs link ==============" test_45d() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - rm $DIR2/$tfile && error "unlink must fail" + PID1=$! ; pdo_sched + rm $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail" rm -rf $DIR/$tfile* return 0 } run_test 45d "pdirops: rename src vs unlink ==============" test_45e() { + pdo_lru_clear touch $DIR1/$tfile touch $DIR1/$tfile-3 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - mv $DIR2/$tfile-3 $DIR2/$tfile || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile-3 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 45e "pdirops: rename src and rename (tgt) ==============" test_45f() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - mv $DIR2/$tfile $DIR2/$tfile-3 && error "rename must fail" + PID1=$! ; pdo_sched + mv $DIR2/$tfile $DIR2/$tfile-3 & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "rename must fail" rm -rf $DIR/$tfile* return 0 } run_test 45f "pdirops: rename src and rename (src) ==============" test_45g() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - stat $DIR2/$tfile > /dev/null && error "stat must fail" + PID1=$! ; pdo_sched + stat $DIR2/$tfile > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "stat must fail" rm -rf $DIR/$tfile* return 0 } run_test 45g "pdirops: rename src vs getattr ==============" test_45h() { + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - ls -lia $DIR2/ > /dev/null + PID1=$! ; pdo_sched + ls -lia $DIR2/ > /dev/null & + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; } + wait $PID2 rm -rf $DIR/$tfile* return 0 } @@ -2236,15 +2364,18 @@ run_test 45h "pdirops: unlink vs readdir ==============" test_45i() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear touch $DIR1/$tfile #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 mv $DIR1/$tfile $DIR1/$tfile-2 & - PID1=$! - sleep 1 - $LFS mkdir -i 1 $DIR2/$tfile || error "create remote dir must succeed" + PID1=$! ; pdo_sched + $LFS mkdir -i 1 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create remote dir isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "create remote dir must succeed" rm -rf $DIR/$tfile* return 0 } @@ -2252,115 +2383,138 @@ run_test 45i "pdirops: rename src vs remote mkdir" # test 46: link and blocking operations test_46a() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - mkdir $DIR2/$tfile && error "mkdir must fail" + PID1=$! ; pdo_sched + mkdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail" rm -rf $DIR/$tfile* return 0 } run_test 46a "pdirops: link vs mkdir ==============" test_46b() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + PID1=$! ; pdo_sched + $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "create must fail" rm -rf $DIR/$tfile* return 0 } run_test 46b "pdirops: link vs create ==============" test_46c() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - link $DIR2/$tfile $DIR2/$tfile && error "link must fail" + PID1=$! ; pdo_sched + link $DIR2/$tfile $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "link must fail" rm -rf $DIR/$tfile* return 0 } run_test 46c "pdirops: link vs link ==============" test_46d() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - rm $DIR2/$tfile || error "unlink must succeed" + PID1=$! ; pdo_sched + rm $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed" rm -rf $DIR/$tfile* return 0 } run_test 46d "pdirops: link vs unlink ==============" test_46e() { + pdo_lru_clear touch $DIR1/$tfile-2 touch $DIR1/$tfile-3 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - mv $DIR2/$tfile-3 $DIR2/$tfile || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile-3 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 46e "pdirops: link and rename (tgt) ==============" test_46f() { + pdo_lru_clear touch $DIR1/$tfile-2 touch $DIR1/$tfile-3 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - mv $DIR2/$tfile $DIR2/$tfile-3 || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile $DIR2/$tfile-3 & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } run_test 46f "pdirops: link and rename (src) ==============" test_46g() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - stat $DIR2/$tfile > /dev/null || error "stat must succeed" + PID1=$! ; pdo_sched + stat $DIR2/$tfile > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed" rm -rf $DIR/$tfile* return 0 } run_test 46g "pdirops: link vs getattr ==============" test_46h() { + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - ls -lia $DIR2/ > /dev/null - check_pdo_conflict $PID1 && { wait $PID1; - error "readdir isn't blocked"; } + PID1=$! ; pdo_sched + ls -lia $DIR2/ > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 + check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; } + wait $PID2 rm -rf $DIR/$tfile* return 0 } @@ -2368,15 +2522,18 @@ run_test 46h "pdirops: link vs readdir ==============" test_46i() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 link $DIR1/$tfile-2 $DIR1/$tfile & - PID1=$! - sleep 1 - $LFS mkdir -i 1 $DIR2/$tfile && error "remote mkdir must fail" + PID1=$! ; pdo_sched + $LFS mkdir -i 1 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "remote mkdir isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail" rm -rf $DIR/$tfile* return 0 } @@ -2386,12 +2543,15 @@ run_test 46i "pdirops: link vs remote mkdir" test_47a() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 $LFS mkdir -i 1 $DIR1/$tfile & - PID1=$! - sleep 1 - mkdir $DIR2/$tfile && error "mkdir must fail" + PID1=$! ; pdo_sched + mkdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail" rm -rf $DIR/$tfile* return 0 } @@ -2400,13 +2560,17 @@ run_test 47a "pdirops: remote mkdir vs mkdir" test_47b() { #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 $LFS mkdir -i 1 $DIR1/$tfile & - PID1=$! - sleep 1 - multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail" + PID1=$! ; pdo_sched + sleep 1 # please do not remove this sleep, see LU-10754 + multiop $DIR2/$tfile oO_CREAT:O_EXCL:c & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "create must fail" rm -rf $DIR/$tfile* return 0 } @@ -2414,14 +2578,17 @@ run_test 47b "pdirops: remote mkdir vs create" test_47c() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 $LFS mkdir -i 1 $DIR1/$tfile & - PID1=$! - sleep 1 - link $DIR2/$tfile-2 $DIR2/$tfile && error "link must fail" + PID1=$! ; pdo_sched + link $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "link must fail" rm -rf $DIR/$tfile* return 0 } @@ -2429,14 +2596,17 @@ run_test 47c "pdirops: remote mkdir vs link" test_47d() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 $LFS mkdir -i 1 $DIR1/$tfile & - PID1=$! - sleep 1 - rmdir $DIR2/$tfile || error "unlink must succeed" + PID1=$! ; pdo_sched + rmdir $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rmdir must succeed" rm -rf $DIR/$tfile* return 0 } @@ -2444,15 +2614,18 @@ run_test 47d "pdirops: remote mkdir vs unlink" test_47e() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear touch $DIR1/$tfile-2 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 $LFS mkdir -i 1 $DIR1/$tfile & - PID1=$! - sleep 1 - mv -T $DIR2/$tfile-2 $DIR2/$tfile && error "rename must fail" + PID1=$! ; pdo_sched + mv -T $DIR2/$tfile-2 $DIR2/$tfile & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -ne 0 ] || error "rename must fail" rm -rf $DIR/$tfile* return 0 } @@ -2460,14 +2633,17 @@ run_test 47e "pdirops: remote mkdir and rename (tgt)" test_47f() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 $LFS mkdir -i 1 $DIR1/$tfile & - PID1=$! - sleep 1 - mv $DIR2/$tfile $DIR2/$tfile-2 || error "rename must succeed" + PID1=$! ; pdo_sched + mv $DIR2/$tfile $DIR2/$tfile-2 & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed" rm -rf $DIR/$tfile* return 0 } @@ -2477,14 +2653,17 @@ test_47g() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return sync sync_all_data + pdo_lru_clear #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK 0x145 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145 $LFS mkdir -i 1 $DIR1/$tfile & - PID1=$! - sleep 2 - stat $DIR2/$tfile > /dev/null || error "stat must succeed" + PID1=$! ; pdo_sched + stat $DIR2/$tfile > /dev/null & + PID2=$! ; pdo_sched + do_facet $SINGLEMDS lctl set_param fail_loc=0 check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; } + wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed" rm -rf $DIR/$tfile* return 0 } @@ -3123,31 +3302,47 @@ nrs_write_read() { chmod 777 $dir do_nodes $CLIENTS $myRUNAS \ - dd if=/dev/zero of="$dir/nrs_r_$HOSTNAME" bs=1M count=$n || + dd if=/dev/zero of="$dir/nrs_r_\$HOSTNAME" bs=1M count=$n || error "dd at 0 on client failed (1)" - for ((i = 0; i < $n; i++)); do - do_nodes $CLIENTS $myRUNAS dd if=/dev/zero \ - of="$dir/nrs_w_$HOSTNAME" bs=1M seek=$i count=1 || - error "dd at ${i}MB on client failed (2)" & - local pids_w[$i]=$! - done + do_nodes $CLIENTS $myRUNAS \ + "declare -a pids_w; + for ((i = 0; i < $n; i++)); do + dd if=/dev/zero of=$dir/nrs_w_\$HOSTNAME bs=1M \ +seek=\\\$i count=1 conv=notrunc & + pids_w[\\\$i]=\\\$!; + done; + rc_w=0; + for ((i = 0; i < $n; i++)); do + wait \\\${pids_w[\\\$i]}; + newrc=\\\$?; + [ \\\$newrc -gt \\\$rc_w ] && rc_w=\\\$newrc; + done; + exit \\\$rc_w" & + local pid_w=$! do_nodes $CLIENTS sync; cancel_lru_locks osc - for ((i = 0; i < $n; i++)); do - do_nodes $CLIENTS $myRUNAS dd if="$dir/nrs_w_$HOSTNAME" \ - of=/dev/zero bs=1M seek=$i count=1 > /dev/null || - error "dd at ${i}MB on client failed (3)" & - local pids_r[$i]=$! - done + do_nodes $CLIENTS $myRUNAS \ + "declare -a pids_r; + for ((i = 0; i < $n; i++)); do + dd if=$dir/nrs_r_\$HOSTNAME bs=1M of=/dev/null \ +seek=\\\$i count=1 & + pids_r[\\\$i]=\\\$!; + done; + rc_r=0; + for ((i = 0; i < $n; i++)); do + wait \\\${pids_r[\\\$i]}; + newrc=\\\$?; + [ \\\$newrc -gt \\\$rc_r ] && rc_r=\\\$newrc; + done; + exit \\\$rc_r" & + local pid_r=$! cancel_lru_locks osc - for ((i = 0; i < $n; i++)); do - wait ${pids_w[$i]} - wait ${pids_r[$i]} - done - rm -rf $dir || error "rm -rf $dir failed" + wait $pid_w || error "dd (write) failed (2)" + wait $pid_r || error "dd (read) failed (3)" + rm -rvf $dir || error "rm -rf $dir failed" } test_77a() { #LU-3266 @@ -4160,6 +4355,31 @@ test_83() { } run_test 83 "access striped directory while it is being created/unlinked" +test_84() { + [ $MDS1_VERSION -lt $(version_code 2.12.55) ] && + skip "lustre < 2.12.55 does not contain LU-12485 fix" + + local mtime + + $MULTIOP $DIR/$tfile oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:c || + error "create $tfile failed" + mtime=$(stat -c%Y $DIR/$tfile) + mtime=$((mtime + 200)) + + #define OBD_FAIL_OBD_0NLINK_RACE 0x60b + do_facet mds1 $LCTL set_param fail_loc=0x8000060b + + touch -c -m $mtime $DIR/$tfile & + setattr_pid=$! + # sleep a while to let 'touch' run first + sleep 5 + rm -f $DIR2/$tfile || error "unlink $tfile failed" + + # touch may fail + wait $setattr_pid || true +} +run_test 84 "0-nlink race in lu_object_find()" + test_90() { [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return local pid1 @@ -4264,12 +4484,12 @@ test_93() { mkdir -p $DIR1/$tfile-1/ mkdir -p $DIR2/$tfile-2/ - local old_rr=$(do_facet $SINGLEMDS lctl get_param -n \ - 'lod.lustre-MDT*/qos_threshold_rr' | sed -e 's/%//') - do_facet $SINGLEMDS lctl set_param -n \ - 'lod.lustre-MDT*/qos_threshold_rr' 100 + local old_rr=$(do_facet $SINGLEMDS "$LCTL get_param -n \ + lod.$FSNAME-MDT0000-*/qos_threshold_rr" | sed -e 's/%//') + do_facet $SINGLEMDS "$LCTL set_param -n \ + lod.$FSNAME-MDT0000-*/qos_threshold_rr=100" #define OBD_FAIL_MDS_LOV_CREATE_RACE 0x163 - do_facet $SINGLEMDS "lctl set_param fail_loc=0x00000163" + do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x00000163" $LFS setstripe -c -1 $DIR1/$tfile-1/file1 & local PID1=$! @@ -4278,9 +4498,9 @@ test_93() { local PID2=$! wait $PID2 wait $PID1 - do_facet $SINGLEMDS "lctl set_param fail_loc=0x0" - do_facet $SINGLEMDS "lctl set_param -n \ - 'lod.lustre-MDT*/qos_threshold_rr' $old_rr" + do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x0" + do_facet $SINGLEMDS "$LCTL set_param -n \ + lod.$FSNAME-MDT0000-*/qos_threshold_rr=$old_rr" $LFS getstripe $DIR1/$tfile-1/file1 rc1=$($LFS getstripe -q $DIR1/$tfile-1/file1 | @@ -4294,11 +4514,47 @@ test_93() { } run_test 93 "alloc_rr should not allocate on same ost" +test_94() { + $LCTL set_param osc.*.idle_timeout=0 + dd if=/dev/zero of=$DIR2/$tfile bs=4k count=2 conv=fsync + + local before=$(date +%s) + local evict + + $LCTL mark write +#define OBD_FAIL_LDLM_PAUSE_CANCEL 0x312 + $LCTL set_param fail_val=5 fail_loc=0x80000312 + dd if=/dev/zero of=$DIR/$tfile conv=notrunc oflag=append bs=4k count=1 & + local pid=$! + sleep 2 + +#define OBD_FAIL_LDLM_PAUSE_CANCEL_LOCAL 0x329 + $LCTL set_param fail_val=6 fail_loc=0x80000329 + $LCTL mark kill $pid + kill -ALRM $pid + + dd if=/dev/zero of=$DIR2/$tfile conv=notrunc oflag=append bs=4k count=1 + + wait $pid + dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 conv=fsync + + evict=$(do_facet client $LCTL get_param \ + osc.$FSNAME-OST*-osc-*/state | + awk -F"[ [,]" '/EVICTED ]$/ { if (t<$5) {t=$5;} } END { print t }') + + [ -z "$evict" ] || [[ $evict -le $before ]] || + (do_facet client $LCTL get_param \ + osc.$FSNAME-OST*-osc-*/state; + error "eviction happened: $evict before:$before") + $LCTL set_param osc.*.idle_timeout=debug +} +run_test 94 "signal vs CP callback race" + # Data-on-MDT tests test_100a() { skip "Reserved for glimpse-ahead" && return [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] && - skip "Need MDS version at least 2.10.55" && return + skip "Need MDS version at least 2.10.55" mkdir -p $DIR/$tdir @@ -4322,7 +4578,7 @@ run_test 100a "DoM: glimpse RPCs for stat without IO lock (DoM only file)" test_100b() { [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] && - skip "Need MDS version at least 2.10.55" && return + skip "Need MDS version at least 2.10.55" mkdir -p $DIR/$tdir @@ -4345,7 +4601,7 @@ run_test 100b "DoM: no glimpse RPC for stat with IO lock (DoM only file)" test_100c() { [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] && - skip "Need MDS version at least 2.10.55" && return + skip "Need MDS version at least 2.10.55" mkdir -p $DIR/$tdir @@ -4368,7 +4624,7 @@ run_test 100c "DoM: write vs stat without IO lock (combined file)" test_100d() { [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] && - skip "Need MDS version at least 2.10.55" && return + skip "Need MDS version at least 2.10.55" mkdir -p $DIR/$tdir @@ -4391,6 +4647,28 @@ test_100d() { } run_test 100d "DoM: write+truncate vs stat without IO lock (combined file)" +test_100e() { + [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.11.50) ] && + skip "Need MDS version at least 2.11.50" + + local dom=$DIR/$tdir/dom + local dom2=$DIR2/$tdir/dom + mkdir -p $DIR/$tdir + + $LFS setstripe -E 1024K -L mdt $DIR/$tdir + + cancel_lru_locks mdc + dd if=/dev/urandom of=$dom bs=12000 count=1 + $TRUNCATE $dom2 6000 + cancel_lru_locks mdc + lctl set_param -n mdc.*.stats=clear + # expect read-on-open to return all data before write + cat /etc/hosts >> $dom + local read=$(lctl get_param -n mdc.*.stats | grep -c ost_read) + [[ $read -eq 0 ]] || error "Unexpected $read READ RPCs" +} +run_test 100e "DoM: read on open and file size" + test_101a() { [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.55) ] && skip "Need MDS version at least 2.10.55" && return @@ -4476,6 +4754,9 @@ run_test 101c "Discard DoM data on close-unlink" # This test opens the file normally on $DIR1, which is on one mount, and then # opens it by handle on $DIR2, which is on a different mount. test_102() { + [ $MDS1_VERSION -lt $(version_code 2.11.57) ] && + skip "Needs MDS version 2.11.57 or later" + echo "Test file_handle syscalls" > $DIR/$tfile || error "write failed" check_fhandle_syscalls $DIR/$tfile $DIR2 || @@ -4484,6 +4765,165 @@ test_102() { } run_test 102 "Test open by handle of unlinked file" +# Compare file size between first & second mount, ensuring the client correctly +# glimpses even with unused speculative locks - LU-11670 +test_103() { + [ $(lustre_version_code $ost1) -lt $(version_code 2.10.50) ] && + skip "Lockahead needs OST version at least 2.10.50" + + local testnum=23 + + test_mkdir -p $DIR/$tdir + + # Force file on to OST0 + $LFS setstripe -i 0 $DIR/$tdir + + # Do not check multiple locks on glimpse + # OBD_FAIL_OSC_NO_SIZE_DATA 0x415 + $LCTL set_param fail_loc=0x415 + + # Delay write commit by 2 seconds to guarantee glimpse wins race + # The same fail_loc is used on client & server so it can work in the + # single node sanity setup + do_facet ost1 $LCTL set_param fail_loc=0x415 fail_val=2 + + echo "Incorrect size expected (no glimpse fix):" + lockahead_test -d $DIR/$tdir -D $DIR2/$tdir -t $testnum -f $tfile + rc=$? + if [ $rc -eq 0 ]; then + echo "This doesn't work 100%, but this is just reproducing the bug, not testing the fix, so OK to not fail test." + fi + + # guarantee write commit timeout has expired + sleep 2 + + # Clear fail_loc on client + $LCTL set_param fail_loc=0 + + # Delay write commit by 2 seconds to guarantee glimpse wins race + # OBD_FAIL_OST_BRW_PAUSE_BULK 0x214 + do_facet ost1 $LCTL set_param fail_loc=0x214 fail_val=2 + + # Write commit is still delayed by 2 seconds + lockahead_test -d $DIR/$tdir -D $DIR2/$tdir -t $testnum -f $tfile + rc=$? + [ $rc -eq 0 ] || error "Lockahead test${testnum} failed, ${rc}" + + # guarantee write commit timeout has expired + sleep 2 + + rm -f $DIR/$tfile || error "unable to delete $DIR/$tfile" +} +run_test 103 "Test size correctness with lockahead" + +get_stat_xtimes() +{ + local xtimes + + xtimes=$(stat -c "%X %Y %Z" $DIR/$tfile) + + echo ${xtimes[*]} +} + +get_mdt_xtimes() +{ + local mdtdev=$1 + local output + local xtimes + + output=$(do_facet mds1 "$DEBUGFS -c -R 'stat ROOT/$tfile' $mdtdev") + ((xtimes[0]=$(awk -F ':' /atime/'{ print $2 }' <<< "$output"))) + ((xtimes[1]=$(awk -F ':' /mtime/'{ print $2 }' <<< "$output"))) + ((xtimes[2]=$(awk -F ':' /ctime/'{ print $2 }' <<< "$output"))) + + echo ${xtimes[*]} +} + +check_mdt_xtimes() +{ + local mdtdev=$1 + local xtimes=($(get_stat_xtimes)) + local mdt_xtimes=($(get_mdt_xtimes $mdtdev)) + + echo "STAT a|m|ctime ${xtimes[*]}" + echo "MDT a|m|ctime ${xtimes[*]}" + [[ ${xtimes[0]} == ${mdt_xtimes[0]} ]] || + error "$DIR/$tfile atime (${xtimes[0]}:${mdt_xtimes[0]}) diff" + [[ ${xtimes[1]} == ${mdt_xtimes[1]} ]] || + error "$DIR/$tfile mtime (${xtimes[1]}:${mdt_xtimes[1]}) diff" + [[ ${xtimes[2]} == ${mdt_xtimes[2]} ]] || + error "$DIR/$tfile ctime (${xtimes[2]}:${mdt_xtimes[2]}) diff" +} + +test_104() { + [ "$mds1_FSTYPE" == "ldiskfs" ] || skip_env "ldiskfs only test" + [ $MDS1_VERSION -lt $(version_code 2.12.4) ] && + skip "Need MDS version at least 2.12.4" + + local pid + local mdtdev=$(mdsdevname ${SINGLEMDS//mds/}) + local atime_diff=$(do_facet $SINGLEMDS \ + lctl get_param -n mdd.*MDT0000*.atime_diff) + + do_facet $SINGLEMDS \ + lctl set_param -n mdd.*MDT0000*.atime_diff=0 + + stack_trap "do_facet $SINGLEMDS \ + lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff" EXIT + + dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc + check_mdt_xtimes $mdtdev + sleep 2 + + dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc + check_mdt_xtimes $mdtdev + sleep 2 + $MULTIOP $DIR2/$tfile Oz8192w8192_c & + pid=$! + sleep 2 + dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc + sleep 2 + kill -USR1 $pid && wait $pid || error "multiop failure" + check_mdt_xtimes $mdtdev + + local xtimes + local mdt_xtimes + + # Verify mtime/ctime is NOT upated on MDS when there is no modification + # on the client side + xtimes=($(get_stat_xtimes)) + $MULTIOP $DIR/$tfile O_c & + pid=$! + sleep 2 + kill -USR1 $pid && wait $pid || error "multiop failure" + mdt_xtimes=($(get_mdt_xtimes $mdtdev)) + [[ ${xtimes[1]} == ${mdt_xtimes[1]} ]] || + error "$DIR/$tfile mtime (${xtimes[1]}:${mdt_xtimes[1]}) diff" + [[ ${xtimes[2]} == ${mdt_xtimes[2]} ]] || + error "$DIR/$tfile ctime (${xtimes[2]}:${mdt_xtimes[2]}) diff" + check_mdt_xtimes $mdtdev + + sleep 2 + # Change ctime via chmod + $MULTIOP $DIR/$tfile o_tc & + pid=$! + sleep 2 + kill -USR1 $pid && wait $pid || error "multiop failure" + check_mdt_xtimes $mdtdev +} +run_test 104 "Verify that MDS stores atime/mtime/ctime during close" + +test_105() { + test_mkdir -p $DIR/$tdir + echo test > $DIR/$tdir/$tfile + $LCTL set_param fail_loc=0x416 + cancel_lru_locks osc & sleep 1 + fsize1=$(stat -c %s $DIR2/$tdir/$tfile) + wait + [[ $fsize1 = 5 ]] || error "Glimpse returned wrong file size $fsize1" +} +run_test 105 "Glimpse and lock cancel race" + log "cleanup: ======================================================" # kill and wait in each test only guarentee script finish, but command in script