Whamcloud - gitweb
LU-12674 osp: handle -EINPROGRESS on llog objects
[fs/lustre-release.git] / lustre / tests / sanity.sh
index c7ee8d1..67f6563 100644 (file)
@@ -41,8 +41,8 @@ init_logging
 ALWAYS_EXCEPT="$SANITY_EXCEPT "
 # bug number for skipped test: LU-9693 LU-6493 LU-9693
 ALWAYS_EXCEPT+="               42a     42b     42c "
-# bug number:    LU-8411 LU-9096 LU-9054
-ALWAYS_EXCEPT+=" 407     253     312 "
+# bug number:    LU-8411 LU-9054
+ALWAYS_EXCEPT+=" 407     312 "
 
 if $SHARED_KEY; then
        # bug number:    LU-9795 LU-9795 LU-9795 LU-9795
@@ -53,8 +53,8 @@ fi
 if [[ $(uname -m) = aarch64 ]]; then
        # bug number:    LU-11596
        ALWAYS_EXCEPT+=" $GRANT_CHECK_LIST"
-       # bug number:    LU-11671 LU-11594 LU-11667 LU-11729
-       ALWAYS_EXCEPT+=" 45       103a      317      810"
+       # bug number:    LU-11671 LU-11667 LU-11729 LU-4398
+       ALWAYS_EXCEPT+=" 45       317      810       817"
 fi
 
 #                                  5          12          (min)"
@@ -1742,12 +1742,6 @@ test_27m() {
 }
 run_test 27m "create file while OST0 was full"
 
-sleep_maxage() {
-       local delay=$(do_facet $SINGLEMDS lctl get_param -n lo[vd].*.qos_maxage |
-                     awk '{ print $1 * 2; exit; }')
-       sleep $delay
-}
-
 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
 # if the OST isn't full anymore.
 reset_enospc() {
@@ -2478,6 +2472,8 @@ test_27D() {
        [ $MDS1_VERSION -lt $(version_code 2.9.55) ] ||
                [ $CLIENT_VERSION -lt $(version_code 2.9.55) ] &&
                        skip27D+=" -s 30,31"
+       [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
+               skip27D+="-s 32"
        [[ ! $($LCTL get_param mdc.*.import) =~ connect_flags.*overstriping ||
          $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
                skip27D+=" -s 32,33"
@@ -2814,6 +2810,24 @@ test_27K() {
 }
 run_test 27K "basic ops on dir with foreign LMV"
 
+test_27L() {
+       remote_mds_nodsh && skip "remote MDS with nodsh"
+
+       local POOL=${POOL:-$TESTNAME}
+
+       if ! combined_mgs_mds ; then
+               mount_mgs_client
+               trap umount_mgs_client EXIT
+       fi
+
+       pool_add $POOL || error "pool_add failed"
+
+       lfs pool_list $MOUNT | grep -Fx "${FSNAME}.${POOL}" ||
+                error "pool_list does not contain ${FSNAME}.${POOL}:" \
+                      "$(lfs pool_list $MOUNT | grep -F "${POOL}")"
+}
+run_test 27L "lfs pool_list gives correct pool name"
+
 # createtest also checks that device nodes are created and
 # then visible correctly (#2091)
 test_28() { # bug 2091
@@ -3068,10 +3082,10 @@ test_31n() {
 run_test 31n "check link count of unlinked file"
 
 link_one() {
-       local TEMPNAME=$(mktemp $1_XXXXXX)
-       mlink $TEMPNAME $1 2> /dev/null &&
-               echo "$BASHPID: link $TEMPNAME to $1 succeeded"
-       munlink $TEMPNAME
+       local tempfile=$(mktemp $1_XXXXXX)
+       mlink $tempfile $1 2> /dev/null &&
+               echo "$BASHPID: link $tempfile to $1 succeeded"
+       munlink $tempfile
 }
 
 test_31o() { # LU-2901
@@ -6298,7 +6312,7 @@ check_migrate_links() {
        # make sure hard links were properly detected, and migration was
        # performed only once for the entire link set; nonlinked files should
        # also be migrated
-       local actual=$(grep -c 'done migrate' <<< "$migrate_out")
+       local actual=$(grep -c 'done' <<< "$migrate_out")
        local expected=$(($uniq_count + 1))
 
        [ "$actual" -eq  "$expected" ] ||
@@ -6349,13 +6363,14 @@ test_56xc() {
 
        # Test 1: ensure file < 1 GB is always migrated with 1 stripe
        echo -n "Setting initial stripe for 20MB test file..."
-       $LFS setstripe -c 2 -i 0 "$dir/20mb" || error "cannot setstripe"
+       $LFS setstripe -c 2 -i 0 "$dir/20mb" ||
+               error "cannot setstripe 20MB file"
        echo "done"
        echo -n "Sizing 20MB test file..."
        truncate "$dir/20mb" 20971520 || error "cannot create 20MB test file"
        echo "done"
        echo -n "Verifying small file autostripe count is 1..."
-       $LFS_MIGRATE -y -A -C 1 "$dir/20mb" &> /dev/null ||
+       $LFS_MIGRATE -y -A -C 1 "$dir/20mb" ||
                error "cannot migrate 20MB file"
        local stripe_count=$($LFS getstripe -c "$dir/20mb") ||
                error "cannot get stripe for $dir/20mb"
@@ -6368,24 +6383,28 @@ test_56xc() {
        # sqrt(size_in_gb) + 1 OSTs but is larger than 1GB.  The file must
        # have at least an additional 1KB for each desired stripe for test 3
        echo -n "Setting stripe for 1GB test file..."
-       $LFS setstripe -c 1 -i 0 "$dir/1gb" || error "cannot setstripe"
+       $LFS setstripe -c 1 -i 0 "$dir/1gb" || error "cannot setstripe 1GB file"
        echo "done"
        echo -n "Sizing 1GB test file..."
        # File size is 1GB + 3KB
-       truncate "$dir/1gb" 1073744896 &> /dev/null ||
-               error "cannot create 1GB test file"
-       echo "done"
-       echo -n "Migrating 1GB file..."
-       $LFS_MIGRATE -y -A -C 1 "$dir/1gb" &> /dev/null ||
-               error "cannot migrate file"
-       echo "done"
-       echo -n "Verifying autostripe count is sqrt(n) + 1..."
-       stripe_count=$($LFS getstripe -c "$dir/1gb") ||
-               error "cannot get stripe for $dir/1gb"
-       [ $stripe_count -eq 2 ] ||
-               error "unexpected stripe count $stripe_count (expected 2)"
+       truncate "$dir/1gb" 1073744896 || error "cannot create 1GB test file"
        echo "done"
 
+       # need at least 512MB per OST for 1GB file to fit in 2 stripes
+       local avail=$($LCTL get_param -n llite.$FSNAME*.kbytesavail)
+       if (( avail > 524288 * OSTCOUNT )); then
+               echo -n "Migrating 1GB file..."
+               $LFS_MIGRATE -y -A -C 1 "$dir/1gb" ||
+                       error "cannot migrate 1GB file"
+               echo "done"
+               echo -n "Verifying autostripe count is sqrt(n) + 1..."
+               stripe_count=$($LFS getstripe -c "$dir/1gb") ||
+                       error "cannot getstripe for 1GB file"
+               [ $stripe_count -eq 2 ] ||
+                       error "unexpected stripe count $stripe_count != 2"
+               echo "done"
+       fi
+
        # Test 3: File is too large to fit within the available space on
        # sqrt(n) + 1 OSTs.  Simulate limited available space with -X
        if [ $OSTCOUNT -ge 3 ]; then
@@ -6393,15 +6412,15 @@ test_56xc() {
                # file size (1GB + 3KB) / OST count (3).
                local kb_per_ost=349526
 
-               echo -n "Migrating 1GB file..."
-               $LFS_MIGRATE -y -A -C 1 -X $kb_per_ost "$dir/1gb" &>> \
-                       /dev/null || error "cannot migrate file"
+               echo -n "Migrating 1GB file with limit..."
+               $LFS_MIGRATE -y -A -C 1 -X $kb_per_ost "$dir/1gb" ||
+                       error "cannot migrate 1GB file with limit"
                echo "done"
 
                stripe_count=$($LFS getstripe -c "$dir/1gb")
-               echo -n "Verifying autostripe count with limited space..."
-               [ "$stripe_count" -a $stripe_count -eq 3 ] ||
-                       error "unexpected stripe count $stripe_count (wanted 3)"
+               echo -n "Verifying 1GB autostripe count with limited space..."
+               [ "$stripe_count" -a $stripe_count -ge 3 ] ||
+                       error "unexpected stripe count $stripe_count (min 3)"
                echo "done"
        fi
 
@@ -6452,18 +6471,20 @@ test_56z() { # LU-4824
        test_mkdir $dir
        for i in d{0..9}; do
                test_mkdir $dir/$i
+               touch $dir/$i/$tfile
        done
-       touch $dir/d{0..9}/$tfile
        $LFS find $DIR/non_existent_dir $dir &&
                error "$LFS find did not return an error"
        # Make a directory unsearchable. This should NOT be the last entry in
        # directory order.  Arbitrarily pick the 6th entry
        chmod 700 $($LFS find $dir -type d | sed '6!d')
 
+       $RUNAS $LFS find $DIR/non_existent $dir
        local count=$($RUNAS $LFS find $DIR/non_existent $dir | wc -l)
 
        # The user should be able to see 10 directories and 9 files
-       [ $count == 19 ] || error "$LFS find did not continue after error"
+       (( count == 19 )) ||
+               error "$LFS find found $count != 19 entries after error"
 }
 run_test 56z "lfs find should continue after an error"
 
@@ -6907,13 +6928,16 @@ run_test 60e "no space while new llog is being created"
 
 test_60g() {
        local pid
+       local i
 
        test_mkdir -c $MDSCOUNT $DIR/$tdir
-       $LFS setdirstripe -D -i -1 -c $MDSCOUNT $DIR/$tdir
 
        (
                local index=0
                while true; do
+                       $LFS setdirstripe -i $(($index % $MDSCOUNT)) \
+                               -c $MDSCOUNT $DIR/$tdir/subdir$index \
+                               2>/dev/null
                        mkdir $DIR/$tdir/subdir$index 2>/dev/null
                        rmdir $DIR/$tdir/subdir$index 2>/dev/null
                        index=$((index + 1))
@@ -6922,16 +6946,34 @@ test_60g() {
 
        pid=$!
 
-       for i in $(seq 100); do 
+       for i in {0..100}; do
                # define OBD_FAIL_OSD_TXN_START    0x19a
-               do_facet mds1 lctl set_param fail_loc=0x8000019a
+               local index=$((i % MDSCOUNT + 1))
+
+               do_facet mds$index $LCTL set_param fail_loc=0x8000019a \
+                       > /dev/null
                usleep 100
        done
 
        kill -9 $pid
 
+       for i in $(seq $MDSCOUNT); do
+               do_facet mds$i $LCTL set_param fail_loc=0 > /dev/null
+       done
+
        mkdir $DIR/$tdir/new || error "mkdir failed"
        rmdir $DIR/$tdir/new || error "rmdir failed"
+
+       do_facet mds1 $LCTL lfsck_start -M $(facet_svc mds1) -A -C \
+               -t namespace
+       for i in $(seq $MDSCOUNT); do
+               wait_update_facet mds$i "$LCTL get_param -n \
+                       mdd.$(facet_svc mds$i).lfsck_namespace |
+                       awk '/^status/ { print \\\$2 }'" "completed"
+       done
+
+       ls -R $DIR/$tdir || error "ls failed"
+       rm -rf $DIR/$tdir || error "rmdir failed"
 }
 run_test 60g "transaction abort won't cause MDT hung"
 
@@ -7307,7 +7349,7 @@ cleanup_65k() {
        do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
        echo $INACTIVE_OSC "is Activate"
 
-       wait_osc_import_state mds ost$ostnum FULL
+       wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
 }
 
 test_65k() { # bug11679
@@ -7367,7 +7409,7 @@ test_65k() { # bug11679
                do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
                echo $INACTIVE_OSC "is Activate"
 
-               wait_osc_import_state mds ost$ostnum FULL
+               wait_osc_import_state mds ost$(( ostnum + 1 )) FULL
        done
 }
 run_test 65k "validate manual striping works properly with deactivated OSCs"
@@ -7726,9 +7768,22 @@ CKSUM_TYPES=${CKSUM_TYPES:-$(lctl get_param -n osc.*osc-[^mM]*.checksum_type |
 set_checksum_type()
 {
        lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
-       log "set checksum type to $1"
-       return 0
+       rc=$?
+       log "set checksum type to $1, rc = $rc"
+       return $rc
+}
+
+get_osc_checksum_type()
+{
+       # arugment 1: OST name, like OST0000
+       ost=$1
+       checksum_type=$(lctl get_param -n osc.*${ost}-osc-[^mM]*.checksum_type |
+                       sed 's/.*\[\(.*\)\].*/\1/g')
+       rc=$?
+       [ $rc -ne 0 ] && error "failed to get checksum type of $ost, rc = $rc, output = $checksum_type"
+       echo $checksum_type
 }
+
 F77_TMP=$TMP/f77-temp
 F77SZ=8
 setup_f77() {
@@ -7980,6 +8035,38 @@ test_77k() { # LU-10906
 }
 run_test 77k "enable/disable checksum correctly"
 
+test_77l() {
+       [ $PARALLEL == "yes" ] && skip "skip parallel run"
+       $GSS && skip_env "could not run with gss"
+
+       set_checksums 1
+       stack_trap "set_checksums $ORIG_CSUM" EXIT
+       stack_trap "set_checksum_type $ORIG_CSUM_TYPE" EXIT
+
+       set_checksum_type invalid && error "unexpected success of invalid checksum type"
+
+       $LFS setstripe -c 1 -i 0 $DIR/$tfile
+       for algo in $CKSUM_TYPES; do
+               set_checksum_type $algo || error "fail to set checksum type $algo"
+               osc_algo=$(get_osc_checksum_type OST0000)
+               [ "$osc_algo" != "$algo" ] && error "checksum type is $osc_algo after setting it to $algo"
+
+               # no locks, no reqs to let the connection idle
+               cancel_lru_locks osc
+               lru_resize_disable osc
+               wait_osc_import_state client ost1 IDLE
+
+               # ensure ost1 is connected
+               stat $DIR/$tfile >/dev/null || error "can't stat"
+               wait_osc_import_state client ost1 FULL
+
+               osc_algo=$(get_osc_checksum_type OST0000)
+               [ "$osc_algo" != "$algo" ] && error "checksum type changed from $algo to $osc_algo after reconnection"
+       done
+       return 0
+}
+run_test 77l "preferred checksum type is remembered after reconnected"
+
 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
 rm -f $F77_TMP
 unset F77_TMP
@@ -8378,12 +8465,14 @@ test_101c() {
        cancel_lru_locks osc
        $LCTL set_param osc.*.rpc_stats 0
        $READS -f $DIR/$tfile -s$FILE_LENGTH -b$rsize -n$nreads -t 180
+       $LCTL get_param osc.*.rpc_stats
        for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
                local stats=$($LCTL get_param -n $osc_rpc_stats)
                local lines=$(echo "$stats" | awk 'END {print NR;}')
                local size
 
                if [ $lines -le 20 ]; then
+                       echo "continue debug"
                        continue
                fi
                for size in 1 2 4 8; do
@@ -8603,6 +8692,26 @@ test_101g() {
 }
 run_test 101g "Big bulk(4/16 MiB) readahead"
 
+test_101h() {
+       $LFS setstripe -i 0 -c 1 $DIR/$tfile
+
+       dd if=/dev/zero of=$DIR/$tfile bs=1M count=70 ||
+               error "dd 70M file failed"
+       echo Cancel LRU locks on lustre client to flush the client cache
+       cancel_lru_locks osc
+
+       echo "Reset readahead stats"
+       $LCTL set_param -n llite.*.read_ahead_stats 0
+
+       echo "Read 10M of data but cross 64M bundary"
+       dd if=$DIR/$tfile of=/dev/null bs=10M skip=6 count=1
+       local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
+                       get_named_value 'misses' | cut -d" " -f1 | calc_total)
+       [ $miss -eq 1 ] || error "expected miss 1 but got $miss"
+       rm -f $p $DIR/$tfile
+}
+run_test 101h "Readahead should cover current read window"
+
 setup_test102() {
        test_mkdir $DIR/$tdir
        chown $RUNAS_ID $DIR/$tdir
@@ -10819,6 +10928,47 @@ test_124c() {
 }
 run_test 124c "LRUR cancel very aged locks"
 
+test_124d() {
+       [ $PARALLEL == "yes" ] && skip "skip parallel run"
+       $LCTL get_param -n mdc.*.connect_flags | grep -q lru_resize ||
+               skip_env "no lru resize on server"
+
+       # cache ununsed locks on client
+       local nr=100
+
+       lru_resize_disable mdc
+       stack_trap "lru_resize_enable mdc" EXIT
+
+       cancel_lru_locks mdc
+
+       # asynchronous object destroy at MDT could cause bl ast to client
+       test_mkdir $DIR/$tdir
+       createmany -o $DIR/$tdir/f $nr ||
+               error "failed to create $nr files in $DIR/$tdir"
+       stack_trap "unlinkmany $DIR/$tdir/f $nr" EXIT
+
+       ls -l $DIR/$tdir > /dev/null
+
+       local nsdir="ldlm.namespaces.*-MDT0000-mdc-*"
+       local unused=$($LCTL get_param -n $nsdir.lock_unused_count)
+       local max_age=$($LCTL get_param -n $nsdir.lru_max_age)
+       local recalc_p=$($LCTL get_param -n $nsdir.pool.recalc_period)
+
+       echo "unused=$unused, max_age=$max_age, recalc_p=$recalc_p"
+
+       # set lru_max_age to 1 sec
+       $LCTL set_param $nsdir.lru_max_age=1000 # milliseconds
+       stack_trap "$LCTL set_param -n $nsdir.lru_max_age $max_age" EXIT
+
+       echo "sleep $((recalc_p * 2)) seconds..."
+       sleep $((recalc_p * 2))
+
+       local remaining=$($LCTL get_param -n $nsdir.lock_unused_count)
+
+       [ $remaining -eq 0 ] || error "$remaining locks are not canceled"
+}
+run_test 124d "cancel very aged locks if lru-resize diasbaled"
+
 test_125() { # 13358
        $LCTL get_param -n llite.*.client_type | grep -q local ||
                skip "must run as local client"
@@ -10937,6 +11087,75 @@ test_127b() { # bug LU-333
 }
 run_test 127b "verify the llite client stats are sane"
 
+test_127c() { # LU-12394
+       [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs"
+       local size
+       local bsize
+       local reads
+       local writes
+       local count
+
+       $LCTL set_param llite.*.extents_stats=1
+       stack_trap "$LCTL set_param llite.*.extents_stats=0" EXIT
+
+       # Use two stripes so there is enough space in default config
+       $LFS setstripe -c 2 $DIR/$tfile
+
+       # Extent stats start at 0-4K and go in power of two buckets
+       # LL_HIST_START = 12 --> 2^12 = 4K
+       # We do 3K*2^i, so 3K, 6K, 12K, 24K... hitting each bucket.
+       # We do not do buckets larger than 64 MiB to avoid ENOSPC issues on
+       # small configs
+       for size in 3K 6K 12K 24K 48K 96K 192K 384K 768K 1536K 3M 6M 12M 24M 48M;
+               do
+               # Write and read, 2x each, second time at a non-zero offset
+               dd if=/dev/zero of=$DIR/$tfile bs=$size count=1
+               dd if=/dev/zero of=$DIR/$tfile bs=$size count=1 seek=10
+               dd if=$DIR/$tfile of=/dev/null bs=$size count=1
+               dd if=$DIR/$tfile of=/dev/null bs=$size count=1 seek=10
+               rm -f $DIR/$tfile
+       done
+
+       $LCTL get_param llite.*.extents_stats
+
+       count=2
+       for bsize in 4K 8K 16K 32K 64K 128K 256K 512K 1M 2M 4M 8M 16M 32M 64M;
+               do
+               local bucket=$($LCTL get_param -n llite.*.extents_stats |
+                               grep -m 1 $bsize)
+               reads=$(echo $bucket | awk '{print $5}')
+               writes=$(echo $bucket | awk '{print $9}')
+               [ "$reads" -eq $count ] ||
+                       error "$reads reads in < $bsize bucket, expect $count"
+               [ "$writes" -eq $count ] ||
+                       error "$writes writes in < $bsize bucket, expect $count"
+       done
+
+       # Test mmap write and read
+       $LCTL set_param llite.*.extents_stats=c
+       size=512
+       dd if=/dev/zero of=$DIR/$tfile bs=${size}K count=1
+       $MULTIOP $DIR/$tfile OSMRUc || error "$MULTIOP $DIR/$tfile failed"
+       $MULTIOP $DIR/$tfile OSMWUc || error "$MULTIOP $DIR/$tfile failed"
+
+       $LCTL get_param llite.*.extents_stats
+
+       count=$(((size*1024) / PAGE_SIZE))
+
+       bsize=$((2 * PAGE_SIZE / 1024))K
+
+       bucket=$($LCTL get_param -n llite.*.extents_stats |
+                       grep -m 1 $bsize)
+       reads=$(echo $bucket | awk '{print $5}')
+       writes=$(echo $bucket | awk '{print $9}')
+       # mmap writes fault in the page first, creating an additonal read
+       [ "$reads" -eq $((2 * count)) ] ||
+               error "$reads reads in < $bsize bucket, expect $count"
+       [ "$writes" -eq $count ] ||
+               error "$writes writes in < $bsize bucket, expect $count"
+}
+run_test 127c "test llite extent stats with regular & mmap i/o"
+
 test_128() { # bug 15212
        touch $DIR/$tfile
        $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
@@ -13748,7 +13967,8 @@ test_161d() {
        ps -p $pid
        [[ $? -eq 0 ]] || error "create should be blocked"
 
-       local tempfile=$(mktemp)
+       local tempfile="$(mktemp --tmpdir $tfile.XXXXXX)"
+       stack_trap "rm -f $tempfile"
        fid=$(changelog_extract_field "CREAT" "$tfile" "t=")
        cat $MOUNT/.lustre/fid/$fid 2>/dev/null >$tempfile || error "cat failed"
        # some delay may occur during ChangeLog publishing and file read just
@@ -14410,6 +14630,41 @@ test_185() { # LU-2441
 }
 run_test 185 "Volatile file support"
 
+function create_check_volatile() {
+       local idx=$1
+       local tgt
+
+       $MULTIOP $MOUNT/.lustre/fid V${idx}Fw4096_c >&/tmp/${tfile}.fid &
+       local PID=$!
+       sleep 1
+       local FID=$(cat /tmp/${tfile}.fid)
+       [ "$FID" == "" ] && error "can't get FID for volatile"
+       $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID || error "can't stat $FID"
+       tgt=$($LFS getstripe -m $MOUNT/.lustre/fid/$FID)
+       [ "$tgt" != "$idx" ] && error "wrong MDS $tgt, expected $idx"
+       kill -USR1 $PID
+       wait
+       sleep 1
+       cancel_lru_locks mdc # flush opencache
+       $CHECKSTAT -t file $MOUNT/.lustre/fid/$FID && error "can stat $FID"
+       return 0
+}
+
+test_185a(){
+       # LU-12516 - volatile creation via .lustre
+       [[ $MDS1_VERSION -ge $(version_code 2.12.55) ]] ||
+               skip "Need MDS version at least 2.3.55"
+
+       create_check_volatile 0
+       [ $MDSCOUNT -lt 2 ] && return 0
+
+       # DNE case
+       create_check_volatile 1
+
+       return 0
+}
+run_test 185a "Volatile file creation in .lustre/fid/"
+
 test_187a() {
        remote_mds_nodsh && skip "remote MDS with nodsh"
        [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
@@ -16874,33 +17129,6 @@ test_252() {
 }
 run_test 252 "check lr_reader tool"
 
-test_253_fill_ost() {
-       local size_mb #how many MB should we write to pass watermark
-       local lwm=$3  #low watermark
-       local free_10mb #10% of free space
-
-       free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
-       size_mb=$((free_kb / 1024 - lwm))
-       free_10mb=$((free_kb / 10240))
-       #If 10% of free space cross low watermark use it
-       if (( free_10mb > size_mb )); then
-               size_mb=$free_10mb
-       else
-               #At least we need to store 1.1 of difference between
-               #free space and low watermark
-               size_mb=$((size_mb + size_mb / 10))
-       fi
-       if (( lwm <= $((free_kb / 1024)) )) || [ ! -f $DIR/$tdir/1 ]; then
-               dd if=/dev/zero of=$DIR/$tdir/1 bs=1M count=$size_mb \
-                        oflag=append conv=notrunc
-       fi
-
-       sleep_maxage
-
-       free_kb=$($LFS df $MOUNT | grep $1 | awk '{ print $4 }')
-       echo "OST still has $((free_kb / 1024)) mbytes free"
-}
-
 test_253() {
        [ $PARALLEL == "yes" ] && skip "skip parallel run"
        remote_mds_nodsh && skip "remote MDS with nodsh"
@@ -16908,9 +17136,8 @@ test_253() {
 
        local ostidx=0
        local rc=0
+       local ost_name=$(ostname_from_index $ostidx)
 
-       local ost_name=$($LFS osts |
-               sed -n 's/^'$ostidx': \(.*\)_UUID .*/\1/p')
        # on the mdt's osc
        local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $ost_name)
        do_facet $SINGLEMDS $LCTL get_param -n \
@@ -16922,60 +17149,45 @@ test_253() {
        wait_delete_completed
        mkdir $DIR/$tdir
 
-       local last_wm_h=$(do_facet $SINGLEMDS $LCTL get_param -n \
-                       osp.$mdtosc_proc1.reserved_mb_high)
-       local last_wm_l=$(do_facet $SINGLEMDS $LCTL get_param -n \
-                       osp.$mdtosc_proc1.reserved_mb_low)
-       echo "prev high watermark $last_wm_h, prev low watermark $last_wm_l"
-
        if ! combined_mgs_mds ; then
                mount_mgs_client
        fi
-       create_pool $FSNAME.$TESTNAME || error "Pool creation failed"
-       do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $ost_name ||
-               error "Adding $ost_name to pool failed"
-
-       # Wait for client to see a OST at pool
-       wait_update $HOSTNAME "$LCTL get_param -n
-               lov.$FSNAME-*.pools.$TESTNAME | sort -u |
-               grep $ost_name" "$ost_name""_UUID" $((TIMEOUT/2)) ||
-               error "Client can not see the pool"
+       pool_add $TESTNAME || error "Pool creation failed"
+       pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
+
        $LFS setstripe $DIR/$tdir -i $ostidx -c 1 -p $FSNAME.$TESTNAME ||
                error "Setstripe failed"
 
-       dd if=/dev/zero of=$DIR/$tdir/0 bs=1M count=10
-       local blocks=$($LFS df $MOUNT | grep $ost_name | awk '{ print $4 }')
-       echo "OST still has $((blocks/1024)) mbytes free"
-
-       local new_lwm=$((blocks/1024-10))
-       do_facet $SINGLEMDS $LCTL set_param \
-                       osp.$mdtosc_proc1.reserved_mb_high=$((new_lwm+5))
-       do_facet $SINGLEMDS $LCTL set_param \
-                       osp.$mdtosc_proc1.reserved_mb_low=$new_lwm
-
-       test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
+       dd if=/dev/zero of=$DIR/$tdir/$tfile.0 bs=1M count=10
 
-       #First enospc could execute orphan deletion so repeat.
-       test_253_fill_ost $ost_name $mdtosc_proc1 $new_lwm
+       local wms=$(ost_watermarks_set_enospc $tfile $ostidx |
+                   grep "watermarks")
+       stack_trap "ost_watermarks_clear_enospc $tfile $ostidx $wms" EXIT
 
        local oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
                        osp.$mdtosc_proc1.prealloc_status)
        echo "prealloc_status $oa_status"
 
-       dd if=/dev/zero of=$DIR/$tdir/2 bs=1M count=1 &&
+       dd if=/dev/zero of=$DIR/$tdir/$tfile.1 bs=1M count=1 &&
                error "File creation should fail"
+
        #object allocation was stopped, but we still able to append files
-       dd if=/dev/zero of=$DIR/$tdir/1 bs=1M seek=6 count=5 oflag=append ||
-               error "Append failed"
-       rm -f $DIR/$tdir/1 $DIR/$tdir/0 $DIR/$tdir/r*
+       dd if=/dev/zero of=$DIR/$tdir/$tfile.0 bs=1M seek=6 count=5 \
+               oflag=append || error "Append failed"
+
+       rm -f $DIR/$tdir/$tfile.0
+
+       # For this test, we want to delete the files we created to go out of
+       # space but leave the watermark, so we remain nearly out of space
+       ost_watermarks_enospc_delete_files $tfile $ostidx
 
        wait_delete_completed
 
        sleep_maxage
 
        for i in $(seq 10 12); do
-               dd if=/dev/zero of=$DIR/$tdir/$i bs=1M count=1 2>/dev/null ||
-                       error "File creation failed after rm";
+               dd if=/dev/zero of=$DIR/$tdir/$tfile.$i bs=1M count=1 \
+                       2>/dev/null || error "File creation failed after rm"
        done
 
        oa_status=$(do_facet $SINGLEMDS $LCTL get_param -n \
@@ -16985,16 +17197,6 @@ test_253() {
        if (( oa_status != 0 )); then
                error "Object allocation still disable after rm"
        fi
-       do_facet $SINGLEMDS $LCTL set_param \
-                       osp.$mdtosc_proc1.reserved_mb_high=$last_wm_h
-       do_facet $SINGLEMDS $LCTL set_param \
-                       osp.$mdtosc_proc1.reserved_mb_low=$last_wm_l
-
-
-       do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $ost_name ||
-               error "Remove $ost_name from pool failed"
-       do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
-               error "Pool destroy fialed"
 
        if ! combined_mgs_mds ; then
                umount_mgs_client
@@ -17419,7 +17621,8 @@ test_256() {
 
        #after mount new plainllog is used
        touch $DIR/$tdir/{11..19}
-       local tmpfile=$(mktemp -u $tfile.XXXXXX)
+       local tmpfile="$(mktemp --tmpdir -u $tfile.XXXXXX)"
+       stack_trap "rm -f $tmpfile"
        cat_sl=$(do_facet $SINGLEMDS "sync; \
                 $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
                 llog_reader $tmpfile | grep -c type=1064553b")
@@ -17431,7 +17634,7 @@ test_256() {
 
        cat_sl=$(do_facet $SINGLEMDS "sync; \
                 $DEBUGFS -c -R 'dump changelog_catalog $tmpfile' $mdt_dev; \
-                llog_reader $tmpfile | grep -c type=1064553b; rm -f $tmpfile")
+                llog_reader $tmpfile | grep -c type=1064553b")
 
        if (( cat_sl == 2 )); then
                error "Empty plain llog was not deleted from changelog catalog"
@@ -18299,6 +18502,47 @@ test_276() {
 }
 run_test 276 "Race between mount and obd_statfs"
 
+test_277() {
+       $LCTL set_param ldlm.namespaces.*.lru_size=0
+       dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
+       local cached_mb=$($LCTL get_param llite.*.max_cached_mb |
+                       grep ^used_mb | awk '{print $2}')
+       [ $cached_mb -eq 1 ] || error "expected mb 1 got $cached_mb"
+       dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 \
+               oflag=direct conv=notrunc
+       cached_mb=$($LCTL get_param llite.*.max_cached_mb |
+                       grep ^used_mb | awk '{print $2}')
+       [ $cached_mb -eq 0 ] || error "expected mb 0 got $cached_mb"
+}
+run_test 277 "Direct IO shall drop page cache"
+
+test_278() {
+       [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
+       [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
+       [[ "$(facet_host mds1)" != "$(facet_host mds2)" ]] &&
+               skip "needs the same host for mdt1 mdt2" && return
+
+       local pid1
+       local pid2
+
+#define OBD_FAIL_OBD_STOP_MDS_RACE     0x60b
+       do_facet mds2 $LCTL set_param fail_loc=0x8000060c
+       stop mds2 &
+       pid2=$!
+
+       stop mds1
+
+       echo "Starting MDTs"
+       start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS
+       wait $pid2
+#For the error assertion will happen. lu_env_get_key(..., &mdt_thread_key)
+#will return NULL
+       do_facet mds2 $LCTL set_param fail_loc=0
+
+       start mds2 $(mdsdevname 2) $MDS_MOUNT_OPTS
+}
+run_test 278 "Race starting MDS between MDTs stop/start"
+
 cleanup_test_300() {
        trap 0
        umask $SAVE_UMASK
@@ -19312,14 +19556,13 @@ run_test 316 "lfs mv"
 test_317() {
        [ $MDS1_VERSION -lt $(version_code 2.11.53) ] &&
                skip "Need MDS version at least 2.11.53"
+       if [ "$ost1_FSTYPE" == "zfs" ]; then
+               skip "LU-10370: no implementation for ZFS"
+       fi
+
        local trunc_sz
        local grant_blk_size
 
-       if [ "$(facet_fstype $facet)" == "zfs" ]; then
-               skip "LU-10370: no implementation for ZFS" && return
-       fi
-
-       stack_trap "rm -f $DIR/$tfile" EXIT
        grant_blk_size=$($LCTL get_param osc.$FSNAME*.import |
                        awk '/grant_block_size:/ { print $2; exit; }')
        #
@@ -19327,7 +19570,8 @@ test_317() {
        # blocks count.
        #
        dd if=/dev/zero of=$DIR/$tfile bs=5M count=1 conv=fsync ||
-               error "Create file : $DIR/$tfile"
+               error "Create file $DIR/$tfile failed"
+       stack_trap "rm -f $DIR/$tfile" EXIT
 
        for trunc_sz in 2097152 4097 4000 509 0; do
                $TRUNCATE $DIR/$tfile $trunc_sz ||
@@ -20039,10 +20283,12 @@ test_413b() {
        qos_prio_free=${qos_prio_free%%%}
        qos_threshold_rr=$($LCTL get_param -n lmv.*.qos_threshold_rr | head -n1)
        qos_threshold_rr=${qos_threshold_rr%%%}
+       qos_maxage=$($LCTL get_param -n lmv.*.qos_maxage)
 
        stack_trap "$LCTL set_param lmv.*.qos_prio_free=$qos_prio_free" EXIT
        stack_trap "$LCTL set_param lmv.*.qos_threshold_rr=$qos_threshold_rr" \
                EXIT
+       stack_trap "$LCTL set_param lmv.*.qos_maxage=$qos_maxage" EXIT
 
        echo "mkdir with roundrobin"
 
@@ -20060,6 +20306,9 @@ test_413b() {
        rm -rf $DIR/$tdir/*
 
        $LCTL set_param lmv.*.qos_threshold_rr=$qos_threshold_rr
+       # Shorten statfs result age, so that it can be updated in time
+       $LCTL set_param lmv.*.qos_maxage=1
+       sleep_maxage
 
        local ffree
        local max
@@ -20382,6 +20631,234 @@ test_420()
 }
 run_test 420 "clear SGID bit on non-directories for non-members"
 
+test_421a() {
+       local cnt
+       local fid1
+       local fid2
+
+       [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
+               skip "Need MDS version at least 2.12.54"
+
+       test_mkdir $DIR/$tdir
+       createmany -o $DIR/$tdir/f 3
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 3 ] && error "unexpected #files: $cnt"
+
+       fid1=$(lfs path2fid $DIR/$tdir/f1)
+       fid2=$(lfs path2fid $DIR/$tdir/f2)
+       $LFS rmfid $DIR $fid1 $fid2 || error "rmfid failed"
+
+       stat $DIR/$tdir/f1 && error "f1 still visible on the client"
+       stat $DIR/$tdir/f2 && error "f2 still visible on the client"
+
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt == 1 ] || error "unexpected #files after: $cnt"
+
+       rm -f $DIR/$tdir/f3 || error "can't remove f3"
+       createmany -o $DIR/$tdir/f 3
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 3 ] && error "unexpected #files: $cnt"
+
+       fid1=$(lfs path2fid $DIR/$tdir/f1)
+       fid2=$(lfs path2fid $DIR/$tdir/f2)
+       echo "remove using fsname $FSNAME"
+       $LFS rmfid $FSNAME $fid1 $fid2 || error "rmfid with fsname failed"
+
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt == 1 ] || error "unexpected #files after: $cnt"
+}
+run_test 421a "simple rm by fid"
+
+test_421b() {
+       local cnt
+       local FID1
+       local FID2
+
+       [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
+               skip "Need MDS version at least 2.12.54"
+
+       test_mkdir $DIR/$tdir
+       createmany -o $DIR/$tdir/f 3
+       multiop_bg_pause $DIR/$tdir/f1 o_c || error "multiop failed to start"
+       MULTIPID=$!
+
+       FID1=$(lfs path2fid $DIR/$tdir/f1)
+       FID2=$(lfs path2fid $DIR/$tdir/f2)
+       $LFS rmfid $DIR $FID1 $FID2 && error "rmfid didn't fail"
+
+       kill -USR1 $MULTIPID
+       wait
+
+       cnt=$(ls $DIR/$tdir | wc -l)
+       [ $cnt == 2 ] || error "unexpected #files after: $cnt"
+}
+run_test 421b "rm by fid on open file"
+
+test_421c() {
+       local cnt
+       local FIDS
+
+       [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
+               skip "Need MDS version at least 2.12.54"
+
+       test_mkdir $DIR/$tdir
+       createmany -o $DIR/$tdir/f 3
+       touch $DIR/$tdir/$tfile
+       createmany -l$DIR/$tdir/$tfile $DIR/$tdir/h 180
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 184 ] && error "unexpected #files: $cnt"
+
+       FID1=$(lfs path2fid $DIR/$tdir/$tfile)
+       $LFS rmfid $DIR $FID1 || error "rmfid failed"
+
+       cnt=$(ls $DIR/$tdir | wc -l)
+       [ $cnt == 3 ] || error "unexpected #files after: $cnt"
+}
+run_test 421c "rm by fid against hardlinked files"
+
+test_421d() {
+       local cnt
+       local FIDS
+
+       [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
+               skip "Need MDS version at least 2.12.54"
+
+       test_mkdir $DIR/$tdir
+       createmany -o $DIR/$tdir/f 4097
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 4097 ] && error "unexpected #files: $cnt"
+
+       FIDS=$(lfs path2fid $DIR/$tdir/f* | sed "s/[/][^:]*://g")
+       $LFS rmfid $DIR $FIDS || error "rmfid failed"
+
+       cnt=$(ls $DIR/$tdir | wc -l)
+       rm -rf $DIR/$tdir
+       [ $cnt == 0 ] || error "unexpected #files after: $cnt"
+}
+run_test 421d "rmfid en masse"
+
+test_421e() {
+       local cnt
+       local FID
+
+       [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
+       [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
+               skip "Need MDS version at least 2.12.54"
+
+       mkdir -p $DIR/$tdir
+       $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
+       createmany -o $DIR/$tdir/striped_dir/f 512
+       cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
+       [ $cnt != 512 ] && error "unexpected #files: $cnt"
+
+       FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
+               sed "s/[/][^:]*://g")
+       $LFS rmfid $DIR $FIDS || error "rmfid failed"
+
+       cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
+       rm -rf $DIR/$tdir
+       [ $cnt == 0 ] || error "unexpected #files after: $cnt"
+}
+run_test 421e "rmfid in DNE"
+
+test_421f() {
+       local cnt
+       local FID
+
+       [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
+               skip "Need MDS version at least 2.12.54"
+
+       test_mkdir $DIR/$tdir
+       touch $DIR/$tdir/f
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 1 ] && error "unexpected #files: $cnt"
+
+       FID=$(lfs path2fid $DIR/$tdir/f)
+       $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (1)"
+       # rmfid should fail
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 1 ] && error "unexpected #files after (2): $cnt"
+
+       chmod a+rw $DIR/$tdir
+       ls -la $DIR/$tdir
+       $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail (2)"
+       # rmfid should fail
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 1 ] && error "unexpected #files after (3): $cnt"
+
+       rm -f $DIR/$tdir/f
+       $RUNAS touch $DIR/$tdir/f
+       FID=$(lfs path2fid $DIR/$tdir/f)
+       echo "rmfid as root"
+       $LFS rmfid $DIR $FID || error "rmfid as root failed"
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt == 0 ] || error "unexpected #files after (4): $cnt"
+
+       rm -f $DIR/$tdir/f
+       $RUNAS touch $DIR/$tdir/f
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt != 1 ] && error "unexpected #files (4): $cnt"
+       FID=$(lfs path2fid $DIR/$tdir/f)
+       # rmfid w/o user_fid2path mount option should fail
+       $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail(3)"
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt == 1 ] || error "unexpected #files after (5): $cnt"
+
+       umount_client $MOUNT || "failed to umount client"
+       mount_client $MOUNT "$MOUNT_OPTS,user_fid2path" ||
+               "failed to mount client'"
+
+       $RUNAS $LFS rmfid $DIR $FID || error "rmfid failed"
+       # rmfid should succeed
+       cnt=$(ls -1 $DIR/$tdir | wc -l)
+       [ $cnt == 0 ] || error "unexpected #files after (6): $cnt"
+
+       # rmfid shouldn't allow to remove files due to dir's permission
+       chmod a+rwx $DIR/$tdir
+       touch $DIR/$tdir/f
+       ls -la $DIR/$tdir
+       FID=$(lfs path2fid $DIR/$tdir/f)
+       $RUNAS $LFS rmfid $DIR $FID && error "rmfid didn't fail"
+
+       umount_client $MOUNT || "failed to umount client"
+       mount_client $MOUNT "$MOUNT_OPTS" ||
+               "failed to mount client'"
+
+}
+run_test 421f "rmfid checks permissions"
+
+test_421g() {
+       local cnt
+       local FIDS
+
+       [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
+       [ $MDS1_VERSION -lt $(version_code 2.12.54) ] &&
+               skip "Need MDS version at least 2.12.54"
+
+       mkdir -p $DIR/$tdir
+       $LFS setdirstripe -c$MDSCOUNT $DIR/$tdir/striped_dir
+       createmany -o $DIR/$tdir/striped_dir/f 512
+       cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
+       [ $cnt != 512 ] && error "unexpected #files: $cnt"
+
+       FIDS=$(lfs path2fid $DIR/$tdir/striped_dir/f* |
+               sed "s/[/][^:]*://g")
+
+       rm -f $DIR/$tdir/striped_dir/f1*
+       cnt=$(ls -1 $DIR/$tdir/striped_dir | wc -l)
+       removed=$((512 - cnt))
+
+       # few files have been just removed, so we expect
+       # rmfid to fail on their fids
+       errors=$($LFS rmfid $DIR $FIDS 2>&1 | wc -l)
+       [ $removed != $errors ] && error "$errors != $removed"
+
+       cnt=$(ls $DIR/$tdir/striped_dir | wc -l)
+       rm -rf $DIR/$tdir
+       [ $cnt == 0 ] || error "unexpected #files after: $cnt"
+}
+run_test 421g "rmfid to return errors properly"
+
 prep_801() {
        [[ $(lustre_version_code mds1) -lt $(version_code 2.9.55) ]] ||
        [[ $OST1_VERSION -lt $(version_code 2.9.55) ]] &&
@@ -20424,7 +20901,8 @@ test_801a() {
        echo "Start barrier_freeze at: $(date)"
        #define OBD_FAIL_BARRIER_DELAY          0x2202
        do_facet mgs $LCTL set_param fail_val=5 fail_loc=0x2202
-       do_facet mgs $LCTL barrier_freeze $FSNAME 10 &
+       # Do not reduce barrier time - See LU-11873
+       do_facet mgs $LCTL barrier_freeze $FSNAME 20 &
 
        sleep 2
        local b_status=$(barrier_stat)
@@ -20446,7 +20924,8 @@ test_801a() {
        [ "$b_status" = "'expired'" ] ||
                error "(3) unexpected barrier status $b_status"
 
-       do_facet mgs $LCTL barrier_freeze $FSNAME 10 ||
+       # Do not reduce barrier time - See LU-11873
+       do_facet mgs $LCTL barrier_freeze $FSNAME 20 ||
                error "(4) fail to freeze barrier"
 
        b_status=$(barrier_stat)
@@ -20571,7 +21050,8 @@ test_801c() {
        do_facet mgs $LCTL barrier_rescan $FSNAME ||
                error "(3) Fail to rescan barrier bitmap"
 
-       do_facet mgs $LCTL barrier_freeze $FSNAME 10
+       # Do not reduce barrier time - See LU-11873
+       do_facet mgs $LCTL barrier_freeze $FSNAME 20
 
        b_status=$(barrier_stat)
        [ "$b_status" = "'frozen'" ] ||
@@ -20596,6 +21076,7 @@ run_test 801c "rescan barrier bitmap"
 saved_MGS_MOUNT_OPTS=$MGS_MOUNT_OPTS
 saved_MDS_MOUNT_OPTS=$MDS_MOUNT_OPTS
 saved_OST_MOUNT_OPTS=$OST_MOUNT_OPTS
+saved_MOUNT_OPTS=$MOUNT_OPTS
 
 cleanup_802a() {
        trap 0
@@ -20604,6 +21085,7 @@ cleanup_802a() {
        MGS_MOUNT_OPTS=$saved_MGS_MOUNT_OPTS
        MDS_MOUNT_OPTS=$saved_MDS_MOUNT_OPTS
        OST_MOUNT_OPTS=$saved_OST_MOUNT_OPTS
+       MOUNT_OPTS=$saved_MOUNT_OPTS
        setupall
 }
 
@@ -20639,7 +21121,8 @@ test_802a() {
                error "(4) Mount client without 'ro' should fail"
 
        echo "Mount client with ro should succeed"
-       mount_client $MOUNT ro ||
+       MOUNT_OPTS=$(csa_add "$MOUNT_OPTS" -o ro)
+       mount_client $MOUNT ||
                error "(5) Mount client with 'ro' should succeed"
 
        echo "Modify should be refused"
@@ -21343,6 +21826,9 @@ test_815()
 run_test 815 "zero byte tiny write doesn't hang (LU-12382)"
 
 test_816() {
+       [ "$SHARED_KEY" = true ] &&
+               skip "OSC connections never go IDLE with Shared-Keys enabled"
+
        $LFS setstripe -c 1 -i 0 $DIR/$tfile
        # ensure ost1 is connected
        stat $DIR/$tfile >/dev/null || error "can't stat"
@@ -21363,6 +21849,43 @@ test_816() {
 }
 run_test 816 "do not reset lru_resize on idle reconnect"
 
+cleanup_817() {
+       umount $tmpdir
+       exportfs -u localhost:$DIR/nfsexp
+       rm -rf $DIR/nfsexp
+}
+
+test_817() {
+       systemctl restart nfs-server.service || skip "failed to restart nfsd"
+
+       mkdir -p $DIR/nfsexp
+       exportfs -orw,no_root_squash localhost:$DIR/nfsexp ||
+               error "failed to export nfs"
+
+       tmpdir=$(mktemp -d /tmp/nfs-XXXXXX)
+       stack_trap cleanup_817 EXIT
+
+       mount -t nfs -orw localhost:$DIR/nfsexp $tmpdir ||
+               error "failed to mount nfs to $tmpdir"
+
+       cp /bin/true $tmpdir
+       $DIR/nfsexp/true || error "failed to execute 'true' command"
+}
+run_test 817 "nfsd won't cache write lock for exec file"
+
+test_818() {
+       mkdir $DIR/$tdir
+       $LFS setstripe -c1 -i0 $DIR/$tfile
+       $LFS setstripe -c1 -i1 $DIR/$tfile
+       stop $SINGLEMDS
+       #define OBD_FAIL_OSP_CANT_PROCESS_LLOG          0x2105
+       do_facet $SINGLEMDS lctl set_param fail_loc=0x80002105
+       start $SINGLEMDS $(mdsdevname ${SINGLEMDS//mds/}) $MDS_MOUNT_OPTS ||
+               error "start $SINGLEMDS failed"
+       rm -rf $DIR/$tdir
+}
+run_test 818 "unlink with failed llog"
+
 #
 # tests that do cleanup/setup should be run at the end
 #