Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / tests / sanity-quota.sh
index 09bb53d..e1cb070 100644 (file)
@@ -17,7 +17,8 @@ SRCDIR=`dirname $0`
 export PATH=$PWD/$SRCDIR:$SRCDIR:$PWD/$SRCDIR/../utils:$PATH:/sbin
 
 ONLY=${ONLY:-"$*"}
-ALWAYS_EXCEPT="$SANITY_QUOTA_EXCEPT"
+# enable test_23 after bug 16542 fixed.
+ALWAYS_EXCEPT="10 $SANITY_QUOTA_EXCEPT"
 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
 
 case `uname -r` in
@@ -36,10 +37,8 @@ TSTID2=${TSTID2:-60001}
 TSTUSR=${TSTUSR:-"quota_usr"}
 TSTUSR2=${TSTUSR2:-"quota_2usr"}
 BLK_SZ=1024
-BUNIT_SZ=${BUNIT_SZ:-1000}     # default 1000 quota blocks
-BTUNE_SZ=${BTUNE_SZ:-500}      # default 50% of BUNIT_SZ
-IUNIT_SZ=${IUNIT_SZ:-10}       # default 10 files
-ITUNE_SZ=${ITUNE_SZ:-5}                # default 50% of IUNIT_SZ
+BUNIT_SZ=${BUNIT_SZ:-1024}     # min block quota unit(kB)
+IUNIT_SZ=${IUNIT_SZ:-10}       # min inode quota unit
 MAX_DQ_TIME=604800
 MAX_IQ_TIME=604800
 
@@ -48,8 +47,13 @@ LUSTRE=${LUSTRE:-`dirname $0`/..}
 . $LUSTRE/tests/test-framework.sh
 init_test_env $@
 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
+DIRECTIO=${DIRECTIO:-$LUSTRE/tests/directio}
 
-[ "$SLOW" = "no" ] && EXCEPT_SLOW="9 10 11"
+[ $MDSCOUNT -gt 1 ] && skip "CMD case" && exit 0
+remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0
+remote_ost_nodsh && skip "remote OST with nodsh" && exit 0
+
+[ "$SLOW" = "no" ] && EXCEPT_SLOW="9 10 11 18b 21"
 
 QUOTALOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
 
@@ -58,13 +62,15 @@ QUOTALOG=${TESTSUITELOG:-$TMP/$(basename $0 .sh).log}
 DIR=${DIR:-$MOUNT}
 DIR2=${DIR2:-$MOUNT2}
 
-cleanup_and_setup_lustre
+check_and_setup_lustre
 
-LOVNAME=`cat $LPROC/llite/*/lov/common_name | tail -n 1`
-OSTCOUNT=`cat $LPROC/lov/$LOVNAME/numobd`
+LOVNAME=`lctl get_param -n llite.*.lov.common_name | tail -n 1`
+OSTCOUNT=`lctl get_param -n lov.$LOVNAME.numobd`
 
-SHOW_QUOTA_USER="$LFS quota -u $TSTUSR $DIR"
-SHOW_QUOTA_GROUP="$LFS quota -g $TSTUSR $DIR"
+SHOW_QUOTA_USER="$LFS quota -v -u $TSTUSR $DIR"
+SHOW_QUOTA_USER2="$LFS quota -v -u $TSTUSR2 $DIR"
+SHOW_QUOTA_GROUP="$LFS quota -v -g $TSTUSR $DIR"
+SHOW_QUOTA_GROUP2="$LFS quota -v -g $TSTUSR2 $DIR"
 SHOW_QUOTA_INFO="$LFS quota -t $DIR"
 
 # control the time of tests
@@ -78,203 +84,305 @@ eval ONLY_99=true
 
 # set_blk_tunables(btune_sz)
 set_blk_tunesz() {
+       local btune=$(($1 * BLK_SZ))
        # set btune size on all obdfilters
-       do_facet ost1 "set -x; for i in /proc/fs/lustre/obdfilter/*/quota_btune_sz; do
-               echo $(($1 * BLK_SZ)) >> \\\$i;
-       done"
+       do_facet ost1 "lctl set_param lquota.${FSNAME}-OST*.quota_btune_sz=$btune"
        # set btune size on mds
-       do_facet $SINGLEMDS "for i in /proc/fs/lustre/mds/${FSNAME}-MDT*/quota_btune_sz; do
-               echo $(($1 * BLK_SZ)) >> \\\$i;
-       done"
+       do_facet $SINGLEMDS "lctl set_param lquota.mdd_obd-${FSNAME}-MDT*.quota_btune_sz=$btune"
 }
 
 # set_blk_unitsz(bunit_sz)
 set_blk_unitsz() {
-       do_facet ost1 "for i in /proc/fs/lustre/obdfilter/*/quota_bunit_sz; do
-               echo $(($1 * BLK_SZ)) >> \\\$i;
-       done"
-       do_facet $SINGLEMDS "for i in /proc/fs/lustre/mds/${FSNAME}-MDT*/quota_bunit_sz; do
-               echo $(($1 * BLK_SZ)) >> \\\$i;
-       done"
+       local bunit=$(($1 * BLK_SZ))
+       # set bunit size on all obdfilters
+       do_facet ost1 "lctl set_param lquota.${FSNAME}-OST*.quota_bunit_sz=$bunit"
+       # set bunit size on mds
+       do_facet $SINGLEMDS "lctl set_param lquota.mdd_obd-${FSNAME}-MDT*.quota_bunit_sz=$bunit"
 }
 
 # set_file_tunesz(itune_sz)
 set_file_tunesz() {
-       # set iunit and itune size on all obdfilters
-       do_facet ost1 "for i in /proc/fs/lustre/obdfilter/*/quota_itune_sz; do
-               echo $1 >> \\\$i;
-       done"
-       # set iunit and itune size on mds
-       do_facet $SINGLEMDS "for i in /proc/fs/lustre/mds/${FSNAME}-MDT*/quota_itune_sz; do
-               echo $1 >> \\\$i;
-       done"
+       local itune=$1
+       # set itune size on all obdfilters
+       do_facet ost1 "lctl set_param lquota.${FSNAME}-OST*.quota_itune_sz=$itune"
+       # set itune size on mds
+       do_facet $SINGLEMDS "lctl set_param lquota.mdd_obd-${FSNAME}-MDT*.quota_itune_sz=$itune"
 }
 
 # set_file_unitsz(iunit_sz)
 set_file_unitsz() {
-       do_facet ost1 "for i in /proc/fs/lustre/obdfilter/*/quota_iunit_sz; do
-               echo $1 >> \\\$i;
-       done"
-       do_facet $SINGLEMDS "for i in /proc/fs/lustre/mds/${FSNAME}-MDT*/quota_iunit_sz; do
-               echo $1 >> \\\$i;
-       done"
+       local iunit=$1
+       # set iunit size on all obdfilters
+       do_facet ost1 "lctl set_param lquota.${FSNAME}-OST*.quota_iunit_sz=$iunit"
+       # set iunit size on mds
+       do_facet $SINGLEMDS "lctl set_param lquota.mdd_obd-${FSNAME}-MDT*.quota_iunit_sz=$iunit"
 }
 
-# These are for test on local machine,if run sanity-quota.sh on 
-# real cluster, ltest should have setup the test environment: 
-#
-# - create test user/group on all servers with same id.
-# - set unit size/tune on all servers size to reasonable value.
-pre_test() {
-       if [ -z "$NOSETUP" ]; then
-               # set block tunables
-               set_blk_tunesz $BTUNE_SZ
-               set_blk_unitsz $BUNIT_SZ
-               # set file tunables
-               set_file_tunesz $ITUNE_SZ
-               set_file_unitsz $IUNIT_SZ
-       fi
-}
-pre_test
-
-post_test() {
-       if [ -z "$NOSETUP" ]; then
-               # restore block tunables to default size
-               set_blk_unitsz $((1024 * 100))
-               set_blk_tunesz $((1024 * 50))
-               # restore file tunables to default size
-               set_file_unitsz 5000
-               set_file_tunesz 2500
-       fi
+lustre_fail() {
+       local fail_node=$1
+       local fail_loc=$2
+
+       case $fail_node in
+           "mds" )
+               do_facet $SINGLEMDS "lctl set_param fail_loc=$fail_loc" ;;
+           "ost" )
+               for num in `seq $OSTCOUNT`; do
+                   do_facet ost$num "lctl set_param fail_loc=$fail_loc"
+               done ;;
+           "mds_ost" )
+               do_facet $SINGLEMDS "lctl set_param fail_loc=$fail_loc" ;
+               for num in `seq $OSTCOUNT`; do
+                   do_facet ost$num "lctl set_param fail_loc=$fail_loc"
+               done ;;
+           * ) echo "usage: lustre_fail fail_node fail_loc" ;
+               return 1 ;;
+       esac
 }
 
-RUNAS="runas -u $TSTID"
-RUNAS2="runas -u $TSTID2"
-FAIL_ON_ERROR=true check_runas_id $TSTID $RUNAS
-FAIL_ON_ERROR=true check_runas_id $TSTID2 $RUNAS2
+RUNAS="runas -u $TSTID -g $TSTID"
+RUNAS2="runas -u $TSTID2 -g $TSTID2"
+FAIL_ON_ERROR=true check_runas_id $TSTID $TSTID $RUNAS
+FAIL_ON_ERROR=true check_runas_id $TSTID2 $TSTID2 $RUNAS2
 
 FAIL_ON_ERROR=false
 
+run_test_with_stat() {
+       (($# != 2)) && error "the number of arguments is wrong"
+
+       do_facet $SINGLEMDS "lctl set_param lquota.mdd_obd-${FSNAME}-MDT*.stats=0" > /dev/null
+       for j in `seq $OSTCOUNT`; do
+           do_facet ost$j "lctl set_param lquota.${FSNAME}-OST*.stats=0" > /dev/null
+       done
+       run_test "$@"
+       if [ ${STAT:-"yes"} != "no" -a -z "$LAST_SKIPPED" ]; then
+           echo "statistics info begin ***************************************"
+           do_facet $SINGLEMDS "lctl get_param lquota.mdd_obd-${FSNAME}-MDT*.stats"
+           for j in `seq $OSTCOUNT`; do
+               do_facet ost$j "lctl get_param lquota.${FSNAME}-OST*.stats"
+           done
+           echo "statistics info end   ***************************************"
+       fi
+}
+
+#
+# clear quota limits for a user or a group
+# usage: resetquota -u username
+#        resetquota -g groupname
+
+resetquota() {
+       [ "$#" != 2 ] && error "resetquota: wrong number of arguments: $#"
+       [ "$1" != "-u" -a "$1" != "-g" ] && error "resetquota: wrong specifier $1 passed"
+       $LFS setquota "$1" "$2" -b 0 -B 0 -i 0 -I 0 $MOUNT || error "resetquota failed"
+}
+
 # set quota
 test_0() {
        $LFS quotaoff -ug $DIR
        $LFS quotacheck -ug $DIR
 
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR
-       $LFS setquota -g $TSTUSR 0 0 0 0 $DIR
+       resetquota -u $TSTUSR
+       resetquota -g $TSTUSR
+
+       lctl set_param debug="+quota"
+       do_facet $SINGLEMDS "lctl set_param debug=+quota"
+       for num in `seq $OSTCOUNT`; do
+           do_facet ost$num "lctl set_param debug=+quota"
+       done
 }
-run_test 0 "Set quota ============================="
+run_test_with_stat 0 "Set quota ============================="
 
-# block hard limit (normal use and out of quota)
-test_1() {
+# test for specific quota limitation, qunit, qtune $1=block_quota_limit
+test_1_sub() {
+       LIMIT=$1
        mkdir -p $DIR/$tdir
        chmod 0777 $DIR/$tdir
+       TESTFILE="$DIR/$tdir/$tfile-0"
 
-       LIMIT=$(( $BUNIT_SZ * $(($OSTCOUNT + 1)) * 5)) # 5 bunits each sever
-       TESTFILE=$DIR/$tdir/$tfile-0    
-       
-       echo "  User quota (limit: $LIMIT kbytes)"
-       $LFS setquota -u $TSTUSR 0 $LIMIT 0 0 $DIR
+       wait_delete_completed
+
+       # test for user
+       log "  User quota (limit: $LIMIT kbytes)"
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+       sleep 3
        $SHOW_QUOTA_USER
-       
+
        $LFS setstripe $TESTFILE -c 1
        chown $TSTUSR.$TSTUSR $TESTFILE
 
-       echo "    Write ..."
+       log "    Write ..."
        $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$(($LIMIT/2)) || error "(usr) write failure, but expect success"
-       echo "    Done"
-       echo "    Write out of block quota ..."
+       log "    Done"
+       log "    Write out of block quota ..."
        # this time maybe cache write,  ignore it's failure
        $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$(($LIMIT/2)) seek=$(($LIMIT/2)) || true
        # flush cache, ensure noquota flag is setted on client
-       sync; sleep 1; sync;
+       cancel_lru_locks osc
        $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$BUNIT_SZ seek=$LIMIT && error "(usr) write success, but expect EDQUOT"
 
        rm -f $TESTFILE
-       
-       echo "  Group quota (limit: $LIMIT kbytes)"
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR           # clear user limit
-       $LFS setquota -g $TSTUSR 0 $LIMIT 0 0 $DIR
+       sync; sleep 1; sync;
+       OST0_UUID=`do_facet ost1 $LCTL dl | grep -m1 obdfilter | awk '{print $((NF-1))}'`
+       OST0_QUOTA_USED=`$LFS quota -o $OST0_UUID -u $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+       echo $OST0_QUOTA_USED
+       [ $OST0_QUOTA_USED -ne 0 ] && \
+           ($SHOW_QUOTA_USER; error "quota deleted isn't released")
+       $SHOW_QUOTA_USER
+        resetquota -u $TSTUSR
+
+       # test for group
+       log "--------------------------------------"
+       log "  Group quota (limit: $LIMIT kbytes)"
+       $LFS setquota -g $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+       sleep 3
        $SHOW_QUOTA_GROUP
-       TESTFILE=$DIR/$tdir/$tfile-1    
+       TESTFILE="$DIR/$tdir/$tfile-1"
 
        $LFS setstripe $TESTFILE -c 1
        chown $TSTUSR.$TSTUSR $TESTFILE
 
-       echo "    Write ..."
+       log "    Write ..."
        $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$(($LIMIT/2)) || error "(grp) write failure, but expect success"
-       echo "    Done"
-       echo "    Write out of block quota ..."
+       log "    Done"
+       log "    Write out of block quota ..."
        # this time maybe cache write, ignore it's failure
        $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$(($LIMIT/2)) seek=$(($LIMIT/2)) || true
-       sync; sleep 1; sync;
+       cancel_lru_locks osc
        $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$BUNIT_SZ seek=$LIMIT && error "(grp) write success, but expect EDQUOT"
 
        # cleanup
        rm -f $TESTFILE
-       $LFS setquota -g $TSTUSR 0 0 0 0 $DIR
+       sync; sleep 1; sync;
+       OST0_UUID=`do_facet ost1 $LCTL dl | grep -m1 obdfilter | awk '{print $((NF-1))}'`
+       OST0_QUOTA_USED=`$LFS quota -o $OST0_UUID -g $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+       echo $OST0_QUOTA_USED
+       [ $OST0_QUOTA_USED -ne 0 ] && \
+           ($SHOW_QUOTA_USER; error "quota deleted isn't released")
+       $SHOW_QUOTA_GROUP
+        resetquota -g $TSTUSR
 }
-run_test 1 "Block hard limit (normal use and out of quota) ==="
 
-# file hard limit (normal use and out of quota)
-test_2() {
+# block hard limit (normal use and out of quota)
+test_1() {
+       for i in `seq 1 $cycle`; do
+           # define blk_qunit is between 1M and 4M
+           blk_qunit=$(( $RANDOM % 3072 + 1024 ))
+           blk_qtune=$(( $RANDOM % $blk_qunit ))
+           # other osts and mds will occupy at 1M blk quota
+           b_limit=$(( ($RANDOM - 16384) / 8 +  $OSTCOUNT * $blk_qunit * 4 ))
+           set_blk_tunesz $blk_qtune
+           set_blk_unitsz $blk_qunit
+           echo "cycle: $i(total $cycle) bunit:$blk_qunit, btune:$blk_qtune, blimit:$b_limit"
+           test_1_sub $b_limit
+           echo "=================================================="
+           set_blk_unitsz $((128 * 1024))
+           set_blk_tunesz $((128 * 1024 / 2))
+       done
+}
+run_test_with_stat 1 "Block hard limit (normal use and out of quota) ==="
+
+# test for specific quota limitation, qunit, qtune $1=block_quota_limit
+test_2_sub() {
+       LIMIT=$1
        mkdir -p $DIR/$tdir
        chmod 0777 $DIR/$tdir
+       TESTFILE="$DIR/$tdir/$tfile-0"
 
-       LIMIT=$(($IUNIT_SZ * 10)) # 10 iunits on mds
-       TESTFILE=$DIR/$tdir/$tfile-0    
+       wait_delete_completed
 
-       echo "  User quota (limit: $LIMIT files)"
-       $LFS setquota -u $TSTUSR 0 0 0 $LIMIT $DIR
+       # test for user
+       log "  User quota (limit: $LIMIT files)"
+       $LFS setquota -u $TSTUSR -b 0 -B 0 -i 0 -I $LIMIT $DIR
+       sleep 3
        $SHOW_QUOTA_USER
 
-       echo "    Create $LIMIT files ..."
+       log "    Create $LIMIT files ..."
        $RUNAS createmany -m ${TESTFILE} $LIMIT || \
-           error "(usr) create failure, but expect success"
-       echo "    Done"
-       echo "    Create out of file quota ..."
+               error "(usr) create failure, but expect success"
+       log "    Done"
+       log "    Create out of file quota ..."
        $RUNAS touch ${TESTFILE}_xxx && \
-               error "(usr) touch success, but expect EDQUOT"
+               error "(usr) touch success, but expect EDQUOT"
 
        unlinkmany ${TESTFILE} $LIMIT
-       rm ${TESTFILE}_xxx
+       rm -f ${TESTFILE}_xxx
+       sync; sleep 1; sync;
+
+       MDS_UUID=`do_facet $SINGLEMDS $LCTL dl | grep -m1 " mdt " | awk '{print $((NF-1))}'`
+       MDS_QUOTA_USED=`$LFS quota -o $MDS_UUID -u $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $4 }'`
+       echo $MDS_QUOTA_USED
+       [ $MDS_QUOTA_USED -ne 0 ] && \
+           ($SHOW_QUOTA_USER; error "quota deleted isn't released")
+       $SHOW_QUOTA_USER
+       resetquota -u $TSTUSR
 
-       echo "  Group quota (limit: $LIMIT files)"
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR           # clear user limit
-       $LFS setquota -g $TSTUSR 0 0 0 $LIMIT $DIR
+       # test for group
+       log "--------------------------------------"
+       log "  Group quota (limit: $LIMIT FILE)"
+       $LFS setquota -g $TSTUSR -b 0 -B 0 -i 0 -I $LIMIT $DIR
+       sleep 3
        $SHOW_QUOTA_GROUP
        TESTFILE=$DIR/$tdir/$tfile-1
 
-       echo "    Create $LIMIT files ..."
+       log "    Create $LIMIT files ..."
        $RUNAS createmany -m ${TESTFILE} $LIMIT || \
-               error "(grp) create failure, but expect success"
+               error "(usr) create failure, but expect success"
+       log "    Done"
+       log "    Create out of file quota ..."
+       $RUNAS touch ${TESTFILE}_xxx && \
+               error "(usr) touch success, but expect EDQUOT"
 
-       echo "    Done"
-       echo "    Create out of file quota ..."
-        $RUNAS touch ${TESTFILE}_xxx && \
-                error "(grp) touch success, but expect EDQUOT"
+       unlinkmany ${TESTFILE} $LIMIT
+       rm -f ${TESTFILE}_xxx
+       sync; sleep 1; sync;
 
-       $RUNAS touch ${TESTFILE}_xxx > /dev/null 2>&1 && error "(grp) touch success, but expect EDQUOT"
+       MDS_UUID=`do_facet $SINGLEMDS $LCTL dl | grep -m1 " mdt " | awk '{print $((NF-1))}'`
+       MDS_QUOTA_USED=`$LFS quota -o $MDS_UUID -g $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $4 }'`
+       echo $MDS_QUOTA_USED
+       [ $MDS_QUOTA_USED -ne 0 ] && \
+           ($SHOW_QUOTA_USER; error "quota deleted isn't released")
+       $SHOW_QUOTA_GROUP
+        resetquota -g $TSTUSR
+}
 
-       # cleanup
-       unlinkmany ${TESTFILE} $LIMIT
-       rm ${TESTFILE}_xxx
+# file hard limit (normal use and out of quota)
+test_2() {
+       for i in `seq 1 $cycle`; do
+           if [ $i -eq 1 ]; then
+               ino_qunit=52
+               ino_qtune=41
+               i_limit=11
+           else
+               # define ino_qunit is between 10 and 100
+               ino_qunit=$(( $RANDOM % 90 + 10 ))
+               ino_qtune=$(( $RANDOM % $ino_qunit ))
+               # RANDOM's maxium is 32767
+               i_limit=$(( $RANDOM % 990 + 10 ))
+           fi
 
-       $LFS setquota -g $TSTUSR 0 0 0 0 $DIR
+           set_file_tunesz $ino_qtune
+           set_file_unitsz $ino_qunit
+           echo "cycle: $i(total $cycle) iunit:$ino_qunit, itune:$ino_qtune, ilimit:$i_limit"
+           test_2_sub $i_limit
+           echo "=================================================="
+           set_file_unitsz 5120
+           set_file_tunesz 2560
+       done
 }
-run_test 2 "File hard limit (normal use and out of quota) ==="
+run_test_with_stat 2 "File hard limit (normal use and out of quota) ==="
 
 test_block_soft() {
        TESTFILE=$1
        TIMER=$(($2 * 3 / 2))
        OFFSET=0
 
+       wait_delete_completed
+
        echo "    Write to exceed soft limit"
        RUNDD="$RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ"
        $RUNDD count=$((BUNIT_SZ+1)) || \
-               error "write failure, but expect success"
+               error "write failure, but expect success"
        OFFSET=$((OFFSET + BUNIT_SZ + 1))
-       sync; sleep 1; sync;
+       cancel_lru_locks osc
 
        $SHOW_QUOTA_USER
        $SHOW_QUOTA_GROUP
@@ -282,38 +390,38 @@ test_block_soft() {
 
        echo "    Write before timer goes off"
        $RUNDD count=$BUNIT_SZ seek=$OFFSET || \
-               error "write failure, but expect success"
+               error "write failure, but expect success"
        OFFSET=$((OFFSET + BUNIT_SZ))
-       sync; sleep 1; sync;
+       cancel_lru_locks osc
        echo "    Done"
-       
-        echo "    Sleep $TIMER seconds ..."
-        sleep $TIMER
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
-        $SHOW_QUOTA_INFO
+       echo "    Sleep $TIMER seconds ..."
+       sleep $TIMER
+
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+       $SHOW_QUOTA_INFO
 
        echo "    Write after timer goes off"
        # maybe cache write, ignore.
-       sync; sleep 1; sync;
        $RUNDD count=$BUNIT_SZ seek=$OFFSET || true
        OFFSET=$((OFFSET + BUNIT_SZ))
-       sync; sleep 1; sync;
+       cancel_lru_locks osc
        $RUNDD count=$BUNIT_SZ seek=$OFFSET && \
-               error "write success, but expect EDQUOT"
+               error "write success, but expect EDQUOT"
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
-        $SHOW_QUOTA_INFO
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+       $SHOW_QUOTA_INFO
 
        echo "    Unlink file to stop timer"
        rm -f $TESTFILE
+       sync; sleep 1; sync
        echo "    Done"
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
-        $SHOW_QUOTA_INFO
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+       $SHOW_QUOTA_INFO
 
        echo "    Write ..."
        $RUNDD count=$BUNIT_SZ || error "write failure, but expect success"
@@ -321,6 +429,7 @@ test_block_soft() {
 
        # cleanup
        rm -f $TESTFILE
+       sync; sleep 3; sync;
 }
 
 # block soft limit (start timer, timer goes off, stop timer)
@@ -328,7 +437,8 @@ test_3() {
        mkdir -p $DIR/$tdir
        chmod 0777 $DIR/$tdir
 
-       LIMIT=$(( $BUNIT_SZ * 2 )) # 1 bunit on mds and 1 bunit on the ost
+       # 1 bunit on mds and 1 bunit on every ost
+       LIMIT=$(( $BUNIT_SZ * ($OSTCOUNT + 1) ))
        GRACE=10
 
        echo "  User quota (soft limit: $LIMIT kbytes  grace: $GRACE seconds)"
@@ -337,11 +447,11 @@ test_3() {
        $LFS setstripe $TESTFILE -c 1
        chown $TSTUSR.$TSTUSR $TESTFILE
 
-       $LFS setquota -t -u $GRACE $MAX_IQ_TIME $DIR
-       $LFS setquota -u $TSTUSR $LIMIT 0 0 0 $DIR
+       $LFS setquota -t -u --block-grace $GRACE --inode-grace $MAX_IQ_TIME $DIR
+       $LFS setquota -u $TSTUSR -b $LIMIT -B 0 -i 0 -I 0 $DIR
 
        test_block_soft $TESTFILE $GRACE
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR
+       resetquota -u $TSTUSR
 
        echo "  Group quota (soft limit: $LIMIT kbytes  grace: $GRACE seconds)"
        TESTFILE=$DIR/$tdir/$tfile-1
@@ -349,19 +459,21 @@ test_3() {
        $LFS setstripe $TESTFILE -c 1
        chown $TSTUSR.$TSTUSR $TESTFILE
 
-       $LFS setquota -t -g $GRACE $MAX_IQ_TIME $DIR
-       $LFS setquota -g $TSTUSR $LIMIT 0 0 0 $DIR
+       $LFS setquota -t -g --block-grace $GRACE --inode-grace $MAX_IQ_TIME $DIR
+       $LFS setquota -g $TSTUSR -b $LIMIT -B 0 -i 0 -I 0 $DIR
 
        test_block_soft $TESTFILE $GRACE
-       $LFS setquota -g $TSTUSR 0 0 0 0 $DIR
+       resetquota -g $TSTUSR
 }
-run_test 3 "Block soft limit (start timer, timer goes off, stop timer) ==="
+run_test_with_stat 3 "Block soft limit (start timer, timer goes off, stop timer) ==="
 
 test_file_soft() {
        TESTFILE=$1
        LIMIT=$2
        TIMER=$(($3 * 3 / 2))
 
+       wait_delete_completed
+
        echo "    Create files to exceed soft limit"
        $RUNAS createmany -m ${TESTFILE}_ $((LIMIT + 1)) || \
                error "create failure, but expect success"
@@ -376,23 +488,24 @@ test_file_soft() {
 
        echo "    Sleep $TIMER seconds ..."
        sleep $TIMER
-       
+
        $SHOW_QUOTA_USER
        $SHOW_QUOTA_GROUP
        $SHOW_QUOTA_INFO
-       
+
        echo "    Create file after timer goes off"
-       $RUNAS createmany -m ${TESTFILE}_after_ $((IUNIT_SZ - 2)) || \
-               error "create ${TESTFILE}_after failure, but expect success"
+       # the least of inode qunit is 2, so there are at most 3(qunit:2+qtune:1)
+       # inode quota left here
+       $RUNAS touch ${TESTFILE}_after ${TESTFILE}_after1 ${TESTFILE}_after2 || true
        sync; sleep 1; sync
-       $RUNAS touch ${TESTFILE}_after && \
+       $RUNAS touch ${TESTFILE}_after3 && \
                error "create after timer expired, but expect EDQUOT"
        sync; sleep 1; sync
 
        $SHOW_QUOTA_USER
        $SHOW_QUOTA_GROUP
        $SHOW_QUOTA_INFO
-       
+
        echo "    Unlink files to stop timer"
        find `dirname $TESTFILE` -name "`basename ${TESTFILE}`*" | xargs rm -f
        echo "    Done"
@@ -405,6 +518,7 @@ test_file_soft() {
 
        # cleanup
        rm -f ${TESTFILE}_xxx
+       sync; sleep 3; sync;
 }
 
 # file soft limit (start timer, timer goes off, stop timer)
@@ -417,66 +531,70 @@ test_4a() {       # was test_4
        GRACE=5
 
        echo "  User quota (soft limit: $LIMIT files  grace: $GRACE seconds)"
-       $LFS setquota -t -u $MAX_DQ_TIME $GRACE $DIR
-       $LFS setquota -u $TSTUSR 0 0 $LIMIT 0 $DIR
+       $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace $GRACE $DIR
+       $LFS setquota -u $TSTUSR -b 0 -B 0 -i $LIMIT -I 0 $DIR
        $SHOW_QUOTA_USER
 
        test_file_soft $TESTFILE $LIMIT $GRACE
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR
+       resetquota -u $TSTUSR
 
        echo "  Group quota (soft limit: $LIMIT files  grace: $GRACE seconds)"
-       $LFS setquota -t -g $MAX_DQ_TIME $GRACE $DIR
-       $LFS setquota -g $TSTUSR 0 0 $LIMIT 0 $DIR
+       $LFS setquota -t -g --block-grace $MAX_DQ_TIME --inode-grace $GRACE $DIR
+       $LFS setquota -g $TSTUSR -b 0 -B 0 -i $LIMIT -I 0 $DIR
        $SHOW_QUOTA_GROUP
        TESTFILE=$DIR/$tdir/$tfile-1
 
        test_file_soft $TESTFILE $LIMIT $GRACE
-       $LFS setquota -g $TSTUSR 0 0 0 0 $DIR
+       resetquota -g $TSTUSR
 
        # cleanup
-       $LFS setquota -t -u $MAX_DQ_TIME $MAX_IQ_TIME $DIR
-       $LFS setquota -t -g $MAX_DQ_TIME $MAX_IQ_TIME $DIR
+       $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace $MAX_IQ_TIME $DIR
+       $LFS setquota -t -g --block-grace $MAX_DQ_TIME --inode-grace $MAX_IQ_TIME $DIR
 }
-run_test 4a "File soft limit (start timer, timer goes off, stop timer) ==="
+run_test_with_stat 4a "File soft limit (start timer, timer goes off, stop timer) ==="
 
 test_4b() {    # was test_4a
-        GR_STR1="1w3d"
-        GR_STR2="1000s"
-        GR_STR3="5s"
-        GR_STR4="1w2d3h4m5s"
-        GR_STR5="5c"
-        GR_STR6="1111111111111111"
-
-        # test of valid grace strings handling
-        echo "  Valid grace strings test"
-        $LFS setquota -t -u $GR_STR1 $GR_STR2 $DIR
-        $LFS quota -u -t $DIR | grep "Block grace time: $GR_STR1"
-        $LFS setquota -t -g $GR_STR3 $GR_STR4 $DIR
-        $LFS quota -g -t $DIR | grep "Inode grace time: $GR_STR4"
-
-        # test of invalid grace strings handling
-        echo "  Invalid grace strings test"
-        ! $LFS setquota -t -u $GR_STR4 $GR_STR5 $DIR
-        ! $LFS setquota -t -g $GR_STR4 $GR_STR6 $DIR
-
-        # cleanup
-        $LFS setquota -t -u $MAX_DQ_TIME $MAX_IQ_TIME $DIR
-        $LFS setquota -t -g $MAX_DQ_TIME $MAX_IQ_TIME $DIR
+       GR_STR1="1w3d"
+       GR_STR2="1000s"
+       GR_STR3="5s"
+       GR_STR4="1w2d3h4m5s"
+       GR_STR5="5c"
+       GR_STR6="1111111111111111"
+
+       wait_delete_completed
+
+       # test of valid grace strings handling
+       echo "  Valid grace strings test"
+       $LFS setquota -t -u --block-grace $GR_STR1 --inode-grace $GR_STR2 $DIR
+       $LFS quota -u -t $DIR | grep "Block grace time: $GR_STR1"
+       $LFS setquota -t -g --block-grace $GR_STR3 --inode-grace $GR_STR4 $DIR
+       $LFS quota -g -t $DIR | grep "Inode grace time: $GR_STR4"
+
+       # test of invalid grace strings handling
+       echo "  Invalid grace strings test"
+       ! $LFS setquota -t -u --block-grace $GR_STR4 --inode-grace $GR_STR5 $DIR
+       ! $LFS setquota -t -g --block-grace $GR_STR4 --inode-grace $GR_STR6 $DIR
+
+       # cleanup
+       $LFS setquota -t -u --block-grace $MAX_DQ_TIME --inode-grace $MAX_IQ_TIME $DIR
+       $LFS setquota -t -g --block-grace $MAX_DQ_TIME --inode-grace $MAX_IQ_TIME $DIR
 }
-run_test 4b "Grace time strings handling ==="
+run_test_with_stat 4b "Grace time strings handling ==="
 
 # chown & chgrp (chown & chgrp successfully even out of block/file quota)
 test_5() {
        mkdir -p $DIR/$tdir
        BLIMIT=$(( $BUNIT_SZ * $((OSTCOUNT + 1)) * 10)) # 10 bunits on each server
        ILIMIT=$(( $IUNIT_SZ * 10 )) # 10 iunits on mds
-       
+
+       wait_delete_completed
+
        echo "  Set quota limit (0 $BLIMIT 0 $ILIMIT) for $TSTUSR.$TSTUSR"
-       $LFS setquota -u $TSTUSR 0 $BLIMIT 0 $ILIMIT $DIR
-       $LFS setquota -g $TSTUSR 0 $BLIMIT 0 $ILIMIT $DIR
+       $LFS setquota -u $TSTUSR -b 0 -B $BLIMIT -i 0 -I $ILIMIT $DIR
+       $LFS setquota -g $TSTUSR -b 0 -B $BLIMIT -i 0 -I $ILIMIT $DIR
        $SHOW_QUOTA_USER
        $SHOW_QUOTA_GROUP
-       
+
        echo "  Create more than $ILIMIT files and more than $BLIMIT kbytes ..."
        createmany -m $DIR/$tdir/$tfile-0_ $((ILIMIT + 1)) || \
                error "touch failure, expect success"
@@ -490,11 +608,12 @@ test_5() {
 
        # cleanup
        unlinkmany $DIR/$tdir/$tfile-0_ $((ILIMIT + 1))
+       sync; sleep 3; sync;
 
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR
-       $LFS setquota -g $TSTUSR 0 0 0 0 $DIR
+       resetquota -u $TSTUSR
+       resetquota -g $TSTUSR
 }
-run_test 5 "Chown & chgrp successfully even out of block/file quota ==="
+run_test_with_stat 5 "Chown & chgrp successfully even out of block/file quota ==="
 
 # block quota acquire & release
 test_6() {
@@ -503,16 +622,18 @@ test_6() {
                return 0;
        fi
 
+       wait_delete_completed
+
        mkdir -p $DIR/$tdir
        chmod 0777 $DIR/$tdir
 
        LIMIT=$((BUNIT_SZ * (OSTCOUNT + 1) * 5)) # 5 bunits per server
        FILEA="$DIR/$tdir/$tfile-0_a"
        FILEB="$DIR/$tdir/$tfile-0_b"
-       
+
        echo "  Set block limit $LIMIT kbytes to $TSTUSR.$TSTUSR"
-       $LFS setquota -u $TSTUSR 0 $LIMIT 0 0 $DIR
-       $LFS setquota -g $TSTUSR 0 $LIMIT 0 0 $DIR
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+       $LFS setquota -g $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
        $SHOW_QUOTA_USER
        $SHOW_QUOTA_GROUP
 
@@ -523,67 +644,70 @@ test_6() {
        chown $TSTUSR.$TSTUSR $FILEB
 
        echo "  Exceed quota limit ..."
-        RUNDD="$RUNAS dd if=/dev/zero of=$FILEB bs=$BLK_SZ"
-        $RUNDD count=$((LIMIT - BUNIT_SZ * OSTCOUNT)) || \
-                error "write fileb failure, but expect success"
+       RUNDD="$RUNAS dd if=/dev/zero of=$FILEB bs=$BLK_SZ"
+       $RUNDD count=$((LIMIT - BUNIT_SZ * OSTCOUNT)) || \
+               error "write fileb failure, but expect success"
 
-       sync; sleep 1; sync;
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
-        $RUNDD seek=$LIMIT count=$((BUNIT_SZ * OSTCOUNT)) && \
-                error "write fileb success, but expect EDQUOT"
-       sync; sleep 1; sync;
+       cancel_lru_locks osc
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+       $RUNDD seek=$LIMIT count=$((BUNIT_SZ * OSTCOUNT)) && \
+               error "write fileb success, but expect EDQUOT"
+       cancel_lru_locks osc
        echo "  Write to OST0 return EDQUOT"
        # this write maybe cache write, ignore it's failure
-        RUNDD="$RUNAS dd if=/dev/zero of=$FILEA bs=$BLK_SZ"
-        $RUNDD count=$(($BUNIT_SZ * 2)) || true
-       sync; sleep 1; sync;
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
-        $RUNDD count=$((BUNIT_SZ * 2)) seek=$((BUNIT_SZ *2)) && \
-                error "write filea success, but expect EDQUOT"
+       RUNDD="$RUNAS dd if=/dev/zero of=$FILEA bs=$BLK_SZ"
+       $RUNDD count=$(($BUNIT_SZ * 2)) || true
+       cancel_lru_locks osc
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+       $RUNDD count=$((BUNIT_SZ * 2)) seek=$((BUNIT_SZ *2)) && \
+               error "write filea success, but expect EDQUOT"
 
        echo "  Remove fileb to let OST1 release quota"
        rm -f $FILEB
-        sync; sleep 10; sync; # need to allow journal commit for small fs
+       sync; sleep 10; sync; # need to allow journal commit for small fs
 
        echo "  Write to OST0"
        $RUNDD count=$((LIMIT - BUNIT_SZ * OSTCOUNT)) || \
-               error "write filea failure, expect success"
+               error "write filea failure, expect success"
        echo "  Done"
 
        # cleanup
        rm -f $FILEA
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR
-       $LFS setquota -g $TSTUSR 0 0 0 0 $DIR
+       sync; sleep 3; sync;
+
+       resetquota -u $TSTUSR
+       resetquota -g $TSTUSR
        return 0
 }
-run_test 6 "Block quota acquire & release ========="
+run_test_with_stat 6 "Block quota acquire & release ========="
 
 # quota recovery (block quota only by now)
 test_7()
 {
        mkdir -p $DIR/$tdir
        chmod 0777 $DIR/$tdir
-       remote_mds && skip "remote mds" && return 0
 
-       LIMIT=$(( $BUNIT_SZ * $(($OSTCOUNT + 1)) * 10)) # 10 bunits each sever
+       wait_delete_completed
+
+       LIMIT=$(( $BUNIT_SZ * $(($OSTCOUNT + 1)) ))
        TESTFILE="$DIR/$tdir/$tfile-0"
-       
-       $LFS setquota -u $TSTUSR 0 $LIMIT 0 0 $DIR
-       
+
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+
        $LFS setstripe $TESTFILE -c 1
        chown $TSTUSR.$TSTUSR $TESTFILE
 
        echo "  Write to OST0..."
        $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$BUNIT_SZ || \
                error "write failure, but expect success"
-       
-       #define OBD_FAIL_OBD_DQACQ               0x604
-       echo 0x604 > /proc/sys/lustre/fail_loc
+
+       #define OBD_FAIL_OBD_DQACQ             0x604
+       lustre_fail mds  0x604
        echo "  Remove files on OST0"
        rm -f $TESTFILE
-       echo 0 > /proc/sys/lustre/fail_loc
+       lustre_fail mds  0
 
        echo "  Trigger recovery..."
        OSC0_UUID="`$LCTL dl | awk '$3 ~ /osc/ { print $1 }'`"
@@ -596,213 +720,175 @@ test_7()
 
        # check limits
        PATTERN="`echo $DIR | sed 's/\//\\\\\//g'`"
-       TOTAL_LIMIT="`$LFS quota -u $TSTUSR $DIR | awk '/^.*'$PATTERN'.*[[:digit:]+][[:space:]+]/ { print $4 }'`"
+       TOTAL_LIMIT="`$LFS quota -v -u $TSTUSR $DIR | awk '/^.*'$PATTERN'.*[[:digit:]+][[:space:]+]/ { print $4 }'`"
        [ $TOTAL_LIMIT -eq $LIMIT ] || error "total limits not recovery!"
        echo "  total limits = $TOTAL_LIMIT"
-       
-        OST0_UUID=`do_facet ost1 "$LCTL dl | grep -m1 obdfilter" | awk '{print $((NF-1))}'`
-        [ -z "$OST0_UUID" ] && OST0_UUID=`do_facet ost1 "$LCTL dl | grep -m1 obdfilter" | awk '{print $((NF-1))}'`
+
+       OST0_UUID=`do_facet ost1 "$LCTL dl | grep -m1 obdfilter" | awk '{print $((NF-1))}'`
+       [ -z "$OST0_UUID" ] && OST0_UUID=`do_facet ost1 "$LCTL dl | grep -m1 obdfilter" | awk '{print $((NF-1))}'`
        OST0_LIMIT="`$LFS quota -o $OST0_UUID -u $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $3 }'`"
        [ $OST0_LIMIT -eq $BUNIT_SZ ] || error "high limits not released!"
        echo "  limits on $OST0_UUID = $OST0_LIMIT"
 
        # cleanup
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR
+       resetquota -u $TSTUSR
 }
-run_test 7 "Quota recovery (only block limit) ======"
+run_test_with_stat 7 "Quota recovery (only block limit) ======"
 
 # run dbench with quota enabled
 test_8() {
        mkdir -p $DIR/$tdir
        BLK_LIMIT=$((100 * 1024 * 1024)) # 100G
        FILE_LIMIT=1000000
-       DBENCH_LIB=${DBENCH_LIB:-/usr/lib/dbench}
-       
-       [ ! -d $DBENCH_LIB ] && skip "dbench not installed" && return 0
 
        wait_delete_completed
-       
+
        echo "  Set enough high limit for user: $TSTUSR"
-       $LFS setquota -u $TSTUSR 0 $BLK_LIMIT 0 $FILE_LIMIT $DIR
+       $LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR
        echo "  Set enough high limit for group: $TSTUSR"
-       $LFS setquota -g $USER 0 $BLK_LIMIT 0 $FILE_LIMIT $DIR
+       $LFS setquota -g $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR
 
-       TGT=$DIR/$tdir/client.txt
-       SRC=${SRC:-$DBENCH_LIB/client.txt}
-       [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
-       SRC=$DBENCH_LIB/client_plain.txt
-       [ ! -e $TGT -a -e $SRC ] && echo "copying $SRC to $TGT" && cp $SRC $TGT
-
-       mkdir -p $DIR/$tdir
        chmod 0777 $DIR/$tdir
-       SAVE_PWD=$PWD
-       cd $DIR/$tdir
        local duration=""
        [ "$SLOW" = "no" ] && duration=" -t 120"
-       $RUNAS dbench -c client.txt 3 $duration
-       RC=$?
-       [ $RC -ne 0 ] && killall -9 dbench
-       
-       rm -f client.txt
+       $RUNAS bash rundbench -D $DIR/$tdir 3 $duration || error "dbench failed!"
+
        sync; sleep 3; sync;
 
-       cd $SAVE_PWD
-       return $RC
+       return 0
 }
-run_test 8 "Run dbench with quota enabled ==========="
+run_test_with_stat 8 "Run dbench with quota enabled ==========="
 
 # run for fixing bug10707, it needs a big room. test for 64bit
 KB=1024
 GB=$((KB * 1024 * 1024))
-FSIZE=$((OSTCOUNT * 9 / 2))
 # Use this as dd bs to decrease time
 # inode->i_blkbits = min(PTLRPC_MAX_BRW_BITS+1, LL_MAX_BLKSIZE_BITS);
 blksize=$((1 << 21)) # 2Mb
+size_file=$((GB * 9 / 2))
+# this check is just for test9 and test10
+OST0_MIN=4900000 #4.67G
+check_whether_skip () {
+    OST0_SIZE=`$LFS df $DIR | awk '/\[OST:0\]/ {print $4}'`
+    log "OST0_SIZE: $OST0_SIZE  required: $OST0_MIN"
+    if [ $OST0_SIZE -lt $OST0_MIN ]; then
+       echo "WARN: OST0 has less than $OST0_MIN free, skip this test."
+       return 0
+    else
+       return 1
+    fi
+}
 
 test_9() {
-       chmod 0777 $DIR/$tdir
-        lustrefs_size=`(echo 0; df -t lustre -P | awk '{print $4}') | tail -n 1`
-        size_file=$((FSIZE * GB))
-        echo "lustrefs_size:$lustrefs_size  size_file:$((size_file / KB))"
-        if [ $((lustrefs_size * KB)) -lt $size_file ]; then
-               skip "less than $size_file bytes free"
-               return 0;
-        fi
-
-        set_blk_unitsz $((1024 * 100))
-        set_blk_tunesz $((1024 * 50))
+       check_whether_skip && return 0
 
-        # set the D_QUOTA flag
-       debugsave
-       sysctl -w lnet.debug="+quota"
-
-        TESTFILE="$DIR/$tdir/$tfile-0"
+       wait_delete_completed
 
-        BLK_LIMIT=$((100 * KB * KB)) # 100G
-        FILE_LIMIT=1000000
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
 
-        echo "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for user: $TSTUSR"
-        $LFS setquota -u $TSTUSR 0 $BLK_LIMIT 0 $FILE_LIMIT $DIR
-        echo "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for group: $TSTUSR"
-        $LFS setquota -g $TSTUSR 0 $BLK_LIMIT 0 $FILE_LIMIT $DIR
+       mkdir -p $DIR/$tdir
+       chmod 0777 $DIR/$tdir
+       TESTFILE="$DIR/$tdir/$tfile-0"
 
-        echo "  Set stripe"
-        [ $OSTCOUNT -ge 2 ] && $LFS setstripe $TESTFILE -c $OSTCOUNT
-        touch $TESTFILE
-        chown $TSTUSR.$TSTUSR $TESTFILE
+       BLK_LIMIT=$((100 * KB * KB)) # 100G
+       FILE_LIMIT=1000000
+       echo "  Set block limit $BLK_LIMIT kbytes to $TSTUSR.$TSTUSR"
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
+       log "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for user: $TSTUSR"
+       $LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR
+       log "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for group: $TSTUSR"
+       $LFS setquota -g $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR
 
-        echo "    Write the big file of $FSIZE G ..."
-        $RUNAS dd if=/dev/zero of=$TESTFILE  bs=$blksize count=$((size_file / blksize)) || \
-               error "(usr) write $FSIZE G file failure, but expect success"
+       echo "  Set stripe"
+       $LFS setstripe $TESTFILE -c 1
+       touch $TESTFILE
+       chown $TSTUSR.$TSTUSR $TESTFILE
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
 
-        echo "    delete the big file of $FSIZE G..." 
-        $RUNAS rm -f $TESTFILE
+       log "    Write the big file of 4.5G ..."
+       $RUNAS dd if=/dev/zero of=$TESTFILE  bs=$blksize count=$((size_file / blksize)) || \
+              error "(usr) write 4.5G file failure, but expect success"
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
 
-        echo "    write the big file of 2 G..."
-        $RUNAS dd if=/dev/zero of=$TESTFILE  bs=$blksize count=$((2 * GB / blksize)) || \
-               error "(usr) write 2 G file failure, but expect seccess"
+       log "    delete the big file of 4.5G..."
+       $RUNAS rm -f $TESTFILE
+       sync; sleep 3; sync;
 
-        echo "    delete the big file of 2 G..."
-        $RUNAS rm -f $TESTFILE 
-        RC=$?
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
 
-        set_blk_tunesz $BTUNE_SZ
-        set_blk_unitsz $BUNIT_SZ
+       RC=$?
 
-       debugrestore
-       wait_delete_completed
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
 
-        return $RC
+       return $RC
 }
-run_test 9 "run for fixing bug10707(64bit) ==========="
+run_test_with_stat 9 "run for fixing bug10707(64bit) ==========="
 
 # run for fixing bug10707, it need a big room. test for 32bit
+# 2.0 version does not support 32 bit qd_count, so such test is obsolete.
 test_10() {
        mkdir -p $DIR/$tdir
        chmod 0777 $DIR/$tdir
-       lustrefs_size=`(echo 0; df -t lustre -P | awk '{print $4}') | tail -n 1`
-       size_file=$((FSIZE * GB))
-       echo "lustrefs_size:$lustrefs_size  size_file:$((size_file / KB))"
-       if [ $((lustrefs_size * KB)) -lt $size_file ]; then
-               skip "less than $size_file bytes free"
-               return 0;
-       fi
+       check_whether_skip && return 0
 
-       sync; sleep 10; sync;
+       wait_delete_completed
 
-       set_blk_unitsz $((1024 * 100))
-       set_blk_tunesz $((1024 * 50))
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
 
-       # set the D_QUOTA flag
-       debugsave
-       sysctl -w lnet.debug="+quota"
-       
        # make qd_count 32 bit
-       sysctl -w lustre.fail_loc=0xA00
+       lustre_fail mds_ost 0xA00
 
        TESTFILE="$DIR/$tdir/$tfile-0"
 
        BLK_LIMIT=$((100 * KB * KB)) # 100G
        FILE_LIMIT=1000000
 
-       echo "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for user: $TSTUSR"
-       $LFS setquota -u $TSTUSR 0 $BLK_LIMIT 0 $FILE_LIMIT $DIR
-       echo "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for group: $TSTUSR"
-       $LFS setquota -g $TSTUSR 0 $BLK_LIMIT 0 $FILE_LIMIT $DIR
-       
+       log "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for user: $TSTUSR"
+       $LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR
+       log "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for group: $TSTUSR"
+       $LFS setquota -g $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $DIR
+
        echo "  Set stripe"
-       [ $OSTCOUNT -ge 2 ] && $LFS setstripe $TESTFILE -c $OSTCOUNT
+       $LFS setstripe $TESTFILE -c 1
        touch $TESTFILE
        chown $TSTUSR.$TSTUSR $TESTFILE
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
-
-        echo "    Write the big file of $FSIZE G ..."
-        $RUNAS dd if=/dev/zero of=$TESTFILE  bs=$blksize count=$((size_file / blksize)) || \
-               error "(usr) write $FSIZE G file failure, but expect success"
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
 
-        echo "    delete the big file of $FSIZE G..."
-        $RUNAS rm -f $TESTFILE 
+       log "    Write the big file of 4.5 G ..."
+       $RUNAS dd if=/dev/zero of=$TESTFILE  bs=$blksize count=$((size_file / blksize)) || \
+               error "(usr) write 4.5 G file failure, but expect success"
 
-        $SHOW_QUOTA_USER
-        $SHOW_QUOTA_GROUP
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
 
-       echo "    write the big file of 2 G..."
-       $RUNAS dd if=/dev/zero of=$TESTFILE  bs=$blksize count=$((2 * GB / blkzise)) || \
-               error "(usr) write 2 G file failure, but expect success" 
+       log "    delete the big file of 4.5 G..."
+       $RUNAS rm -f $TESTFILE
+       sync; sleep 3; sync;
 
-       echo "    delete the big file of 2 G..."
-       $RUNAS rm -f $TESTFILE 
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
 
        RC=$?
 
-       # clear the flage
-       debugrestore
-
        # make qd_count 64 bit
-       sysctl -w lustre.fail_loc=0
+       lustre_fail mds_ost 0
 
-       set_blk_tunesz $BTUNE_SZ
-       set_blk_unitsz $BUNIT_SZ
-
-       wait_delete_completed
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
 
        return $RC
 }
-run_test 10 "run for fixing bug10707(32bit) ==========="
+#run_test_with_stat 10 "run for fixing bug10707(32bit) ==========="
 
 test_11() {
        wait_delete_completed
@@ -810,14 +896,14 @@ test_11() {
        #prepare the test
        block_limit=`(echo 0; df -t lustre -P | awk '{print $(NF - 4)}') | tail -n 1`
        echo $block_limit
-       orig_dbr=`cat /proc/sys/vm/dirty_background_ratio`
-       orig_dec=`cat /proc/sys/vm/dirty_expire_centisecs`
-       orig_dr=`cat /proc/sys/vm/dirty_ratio`
-       orig_dwc=`cat /proc/sys/vm/dirty_writeback_centisecs`
-       echo 1  > /proc/sys/vm/dirty_background_ratio
-       echo 30 > /proc/sys/vm/dirty_expire_centisecs
-       echo 1  > /proc/sys/vm/dirty_ratio
-       echo 50 > /proc/sys/vm/dirty_writeback_centisecs
+       orig_dbr=`sysctl -n vm.dirty_background_ratio`
+       orig_dec=`sysctl -n vm.dirty_expire_centisecs`
+       orig_dr=`sysctl -n vm.dirty_ratio`
+       orig_dwc=`sysctl -n vm.dirty_writeback_centisecs`
+       sysctl -w vm.dirty_background_ratio=1
+       sysctl -w vm.dirty_expire_centisecs=30
+       sysctl -w vm.dirty_ratio=1
+       sysctl -w vm.dirty_writeback_centisecs=50
        TESTDIR="$DIR/$tdir"
        local RV=0
 
@@ -833,7 +919,7 @@ test_11() {
           echo -n "    create a file for uid "
           for j in `seq 1 30`; do
               echo -n "$j "
-               # 30MB per dd for a total of 900MB (if space even permits)
+              # 30MB per dd for a total of 900MB (if space even permits)
               runas -u $j dd if=/dev/zero of=$TESTDIR/$tfile  bs=$blksize count=15 > /dev/null 2>&1 &
           done
           echo ""
@@ -852,7 +938,7 @@ test_11() {
                 RV=2
                 break
             fi
-             LAST_USED=$USED
+            LAST_USED=$USED
           done
           echo "    removing the test files..."
           rm -f $TESTDIR/$tfile
@@ -862,16 +948,16 @@ test_11() {
        echo "Test took $SECS sec"
 
        #clean
-       echo $orig_dbr > /proc/sys/vm/dirty_background_ratio
-       echo $orig_dec > /proc/sys/vm/dirty_expire_centisecs
-       echo $orig_dr  > /proc/sys/vm/dirty_ratio
-       echo $orig_dwc > /proc/sys/vm/dirty_writeback_centisecs
+       sysctl -w vm.dirty_background_ratio=$orig_dbr
+       sysctl -w vm.dirty_expire_centisecs=$orig_dec
+       sysctl -w vm.dirty_ratio=$orig_dr
+       sysctl -w vm.dirty_writeback_centisecs=$orig_dwc
        if [ $RV -ne 0 ]; then
-           error "Nothing was written for $SECS sec ... aborting"
+          error "Nothing was written for $SECS sec ... aborting"
        fi
        return $RV
 }
-run_test 11 "run for fixing bug10912 ==========="
+run_test_with_stat 11 "run for fixing bug10912 ==========="
 
 
 # test a deadlock between quota and journal b=11693
@@ -882,106 +968,115 @@ test_12() {
        [ "$(grep $DIR2 /proc/mounts)" ] || mount_client $DIR2 || \
                { skip "Need lustre mounted on $MOUNT2 " && retutn 0; }
 
+       if [ $OSTCOUNT -lt 2 ]; then
+               skip "$OSTCOUNT < 2, too few osts"
+               return 0;
+       fi
+
        LIMIT=$(( $BUNIT_SZ * $(($OSTCOUNT + 1)) * 10)) # 10 bunits each sever
        TESTFILE="$DIR/$tdir/$tfile-0"
        TESTFILE2="$DIR2/$tdir/$tfile-1"
-       
+
+       wait_delete_completed
+
        echo "   User quota (limit: $LIMIT kbytes)"
-       $LFS setquota -u $TSTUSR 0 $LIMIT 0 0 $DIR
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
 
-       $LFS setstripe $TESTFILE -i 0 -c 1 
+       $LFS setstripe $TESTFILE -i 0 -c 1
        chown $TSTUSR.$TSTUSR $TESTFILE
-       $LFS setstripe $TESTFILE2 -i 0 -c 1
-        chown $TSTUSR2.$TSTUSR2 $TESTFILE2
+       $LFS setstripe $TESTFILE2 -i 1 -c 1
+       chown $TSTUSR2.$TSTUSR2 $TESTFILE2
 
        #define OBD_FAIL_OST_HOLD_WRITE_RPC      0x21f
-       sysctl -w lustre.fail_loc=0x0000021f        
+       lustre_fail ost 0x0000021f
 
        echo "   step1: write out of block quota ..."
-       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$(($LIMIT*2)) & 
-       DDPID=$!
-       sleep 5
-       $RUNAS2 dd if=/dev/zero of=$TESTFILE2 bs=$BLK_SZ count=102400 & 
+       $RUNAS2 dd if=/dev/zero of=$TESTFILE2 bs=$BLK_SZ count=102400 &
        DDPID1=$!
+       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$(($LIMIT*2)) &
+       DDPID=$!
 
        echo  "   step2: testing ......"
        count=0
        while [ true ]; do
-           if [ -z `ps -ef | awk '$2 == '${DDPID1}' { print $8 }'` ]; then break; fi
+           if ! ps -p ${DDPID1} > /dev/null 2>&1; then break; fi
            count=$[count+1]
            if [ $count -gt 64 ]; then
-               sysctl -w lustre.fail_loc=0
+               lustre_fail ost 0
                error "dd should be finished!"
            fi
            sleep 1
-       done    
+       done
        echo "(dd_pid=$DDPID1, time=$count)successful"
 
        #Recover fail_loc and dd will finish soon
-       sysctl -w lustre.fail_loc=0
+       lustre_fail ost 0
 
        echo  "   step3: testing ......"
        count=0
        while [ true ]; do
-           if [ -z `ps -ef | awk '$2 == '${DDPID}' { print $8 }'` ]; then break; fi
+           if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
            count=$[count+1]
-           if [ $count -gt 100 ]; then
+           if [ $count -gt 150 ]; then
                error "dd should be finished!"
            fi
            sleep 1
-       done    
+       done
        echo "(dd_pid=$DDPID, time=$count)successful"
 
        rm -f $TESTFILE $TESTFILE2
-       
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR           # clear user limit
+       sync; sleep 3; sync;
+
+        resetquota -u $TSTUSR
 }
-run_test 12 "test a deadlock between quota and journal ==="
+run_test_with_stat 12 "test a deadlock between quota and journal ==="
 
 # test multiple clients write block quota b=11693
 test_13() {
+       mkdir -p $DIR/$tdir
+       wait_delete_completed
+
        # one OST * 10 + (mds + other OSTs)
        LIMIT=$((BUNIT_SZ * 10 + (BUNIT_SZ * OSTCOUNT)))
        TESTFILE="$DIR/$tdir/$tfile"
-       mkdir -p $DIR/$tdir
 
        echo "   User quota (limit: $LIMIT kbytes)"
-       $LFS setquota -u $TSTUSR 0 $LIMIT 0 0 $DIR
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
        $SHOW_QUOTA_USER
-       
+
        $LFS setstripe $TESTFILE -i 0 -c 1
        chown $TSTUSR.$TSTUSR $TESTFILE
        $LFS setstripe $TESTFILE.2 -i 0 -c 1
-        chown $TSTUSR.$TSTUSR $TESTFILE.2
+       chown $TSTUSR.$TSTUSR $TESTFILE.2
 
        echo "   step1: write out of block quota ..."
        # one bunit will give mds
-       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$[($LIMIT - $BUNIT_SZ) / 2] & 
+       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$[($LIMIT - $BUNIT_SZ) / 2] &
        DDPID=$!
-       $RUNAS dd if=/dev/zero of=$TESTFILE.2 bs=$BLK_SZ count=$[($LIMIT - $BUNIT_SZ) / 2] & 
+       $RUNAS dd if=/dev/zero of=$TESTFILE.2 bs=$BLK_SZ count=$[($LIMIT - $BUNIT_SZ) / 2] &
        DDPID1=$!
 
        echo  "   step2: testing ......"
        count=0
        while [ true ]; do
-           if [ -z `ps -ef | awk '$2 == '${DDPID}' { print $8 }'` ]; then break; fi
+           if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
            count=$[count+1]
            if [ $count -gt 64 ]; then
                error "dd should be finished!"
            fi
            sleep 1
-       done    
+       done
        echo "(dd_pid=$DDPID, time=$count)successful"
 
        count=0
        while [ true ]; do
-           if [ -z `ps -ef | awk '$2 == '${DDPID1}' { print $8 }'` ]; then break; fi
+           if ! ps -p ${DDPID1} > /dev/null 2>&1 ; then break; fi
            count=$[count+1]
            if [ $count -gt 64 ]; then
                error "dd should be finished!"
            fi
            sleep 1
-       done    
+       done
        echo "(dd_pid=$DDPID1, time=$count)successful"
 
        sync; sleep 5; sync;
@@ -994,13 +1089,14 @@ test_13() {
                error "files too small $fz + $fz2 < $((BUNIT_SZ * BLK_SZ * 10))"
 
        rm -f $TESTFILE $TESTFILE.2
-       
-       $LFS setquota -u $TSTUSR 0 0 0 0 $DIR           # clear user limit
+       sync; sleep 3; sync;
+
+       resetquota -u $TSTUSR
 }
-run_test 13 "test multiple clients write block quota ==="
+run_test_with_stat 13 "test multiple clients write block quota ==="
 
 check_if_quota_zero(){
-        line=`$LFS quota -$1 $2 $DIR | wc -l`
+       line=`$LFS quota -v -$1 $2 $DIR | wc -l`
        for i in `seq 3 $line`; do
            if [ $i -eq 3 ]; then
                field="3 4 6 7"
@@ -1008,67 +1104,779 @@ check_if_quota_zero(){
                field="3 5"
            fi
            for j in $field; do
-               tmp=`$LFS quota -$1 $2 $DIR | sed -n ${i}p | 
-                     awk  '{print $'"$j"'}'`
-               [ -n "$tmp" ] && [ $tmp -ne 0 ] && $LFS quota -$1 $2 $DIR && \
+               tmp=`$LFS quota -v -$1 $2 $DIR | sed -n ${i}p |
+                    awk  '{print $'"$j"'}'`
+               [ -n "$tmp" ] && [ $tmp -ne 0 ] && $LFS quota -v -$1 $2 $DIR && \
                    error "quota on $2 isn't clean"
            done
        done
        echo "pass check_if_quota_zero"
 }
 
-pre_test_14 () {
-        # reboot the lustre
-        cd $T_PWD; sh llmountcleanup.sh || error "llmountcleanup failed"
-        sh llmount.sh
-        pre_test
-        run_test 0 "reboot lustre"
-}
-
-pre_test_14 
-
 test_14a() {   # was test_14 b=12223 -- setting quota on root
        TESTFILE="$DIR/$tdir/$tfile"
+
+       # reboot the lustre
+       sync; sleep 5; sync
+       cleanup_and_setup_lustre
+       test_0
+
        mkdir -p $DIR/$tdir
 
        # out of root's file and block quota
-        $LFS setquota -u root 10 10 10 10 $DIR
+       $LFS setquota -u root -b 10 -B 10 -i 10 -I 10 $DIR
        createmany -m ${TESTFILE} 20 || \
            error "unexpected: user(root) create files failly!"
        dd if=/dev/zero of=$TESTFILE bs=4k count=4096 || \
            error "unexpected: user(root) write files failly!"
        chmod 666 $TESTFILE
        $RUNAS dd if=/dev/zero of=${TESTFILE} seek=4096 bs=4k count=4096 && \
-           error "unexpected: user(quota_usr) write a file successfully!"      
+           error "unexpected: user(quota_usr) write a file successfully!"
 
        # trigger the llog
        chmod 777 $DIR
-       for i in `seq 1 10`; do $RUNAS touch ${TESTFILE}a_$i; done 
-       for i in `seq 1 10`; do $RUNAS rm -f ${TESTFILE}a_$i; done 
+       for i in `seq 1 10`; do $RUNAS touch ${TESTFILE}a_$i; done
+       for i in `seq 1 10`; do $RUNAS rm -f ${TESTFILE}a_$i; done
 
        # do the check
-       dmesg | tail | grep "\-122" |grep llog_obd_origin_add && error "err -122 not found in dmesg" 
-       $LFS setquota -u root 0 0 0 0 $DIR
+       dmesg | tail | grep "\-122" |grep llog_obd_origin_add && error "err -122 not found in dmesg"
+       resetquota -u root
        #check_if_quota_zero u root
 
-       # clean 
+       # clean
        unlinkmany ${TESTFILE} 15
        rm -f $TESTFILE
+       sync; sleep 3; sync;
 }
-run_test 14a "test setting quota on root ==="
+run_test_with_stat 14a "test setting quota on root ==="
+
+# save quota version (both administrative and operational quotas)
+quota_save_version() {
+       do_facet mgs "lctl conf_param ${FSNAME}-MDT*.mdd.quota_type=$1"
+       do_facet mgs "lctl conf_param ${FSNAME}-OST*.ost.quota_type=$1"
+       sleep 5
+}
+
+test_15(){
+       LIMIT=$((24 * 1024 * 1024 * 1024 * 1024)) # 24 TB
+       PATTERN="`echo $DIR | sed 's/\//\\\\\//g'`"
+
+       wait_delete_completed
+
+       # test for user
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+       TOTAL_LIMIT="`$LFS quota -v -u $TSTUSR $DIR | awk '/^.*'$PATTERN'.*[[:digit:]+][[:space:]+]/ { print $4 }'`"
+       [ $TOTAL_LIMIT -eq $LIMIT ] || error "  (user)total limits = $TOTAL_LIMIT; limit = $LIMIT, failed!"
+       echo "  (user)total limits = $TOTAL_LIMIT; limit = $LIMIT, successful!"
+        resetquota -u $TSTUSR
+
+       # test for group
+       $LFS setquota -g $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+       TOTAL_LIMIT="`$LFS quota -v -g $TSTUSR $DIR | awk '/^.*'$PATTERN'.*[[:digit:]+][[:space:]+]/ { print $4 }'`"
+       [ $TOTAL_LIMIT -eq $LIMIT ] || error "  (group)total limits = $TOTAL_LIMIT; limit = $LIMIT, failed!"
+       echo "  (group)total limits = $TOTAL_LIMIT; limit = $LIMIT, successful!"
+        resetquota -g $TSTUSR
+       $LFS quotaoff -ug $DIR
+       do_facet $SINGLEMDS "lctl set_param lquota.mdd_obd-${FSNAME}-MDT*.quota_type=ug" | grep "error writing" && \
+                error "fail to set version for $SINGLEMDS"
+       for j in `seq $OSTCOUNT`; do
+               do_facet ost$j "lctl set_param lquota.${FSNAME}-OST*.quota_type=ug" | grep "error writing" && \
+                        error "fail to set version for ost$j"
+       done
+
+       echo "invalidating quota files"
+       $LFS quotainv -ug $DIR
+       $LFS quotainv -ugf $DIR
+       $LFS quotacheck -ug $DIR
+}
+run_test_with_stat 15 "set block quota more than 4T ==="
+
+# $1=u/g $2=with qunit adjust or not
+test_16_tub() {
+       LIMIT=$(( $BUNIT_SZ * $(($OSTCOUNT + 1)) * 4))
+       TESTFILE="$DIR/$tdir/$tfile"
+       mkdir -p $DIR/$tdir
+
+       wait_delete_completed
+
+       echo "  User quota (limit: $LIMIT kbytes)"
+       if [ $1 == "u" ]; then
+           $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+           $SHOW_QUOTA_USER
+       else
+           $LFS setquota -g $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+           $SHOW_QUOTA_GROUP
+       fi
+
+       $LFS setstripe $TESTFILE -c 1
+       chown $TSTUSR.$TSTUSR $TESTFILE
+
+       echo "    Write ..."
+       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$((BUNIT_SZ * 4)) || \
+           error "(usr) write failure, but expect success"
+       echo "    Done"
+       echo "    Write out of block quota ..."
+       # this time maybe cache write,  ignore it's failure
+       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$BUNIT_SZ seek=$((BUNIT_SZ * 4)) || true
+       # flush cache, ensure noquota flag is setted on client
+       cancel_lru_locks osc
+       if [ $2 -eq 1 ]; then
+           $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$BUNIT_SZ seek=$((BUNIT_SZ * 4)) || \
+               error "(write failure, but expect success"
+       else
+           $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$BUNIT_SZ seek=$((BUNIT_SZ * 4)) && \
+               error "(write success, but expect EDQUOT"
+       fi
+
+       rm -f $TESTFILE
+       sync; sleep 3; sync;
+       resetquota -$1 $TSTUSR
+}
+
+# test without adjusting qunit
+# 2.0 version does not support WITHOUT_CHANGE_QS, so such test is obsolete
+test_16 () {
+       set_blk_tunesz $((BUNIT_SZ * 2))
+       set_blk_unitsz $((BUNIT_SZ * 4))
+       for i in u g; do
+           for j in 0 1; do
+               # define OBD_FAIL_QUOTA_WITHOUT_CHANGE_QS    0xA01
+               echo " grp/usr: $i, adjust qunit: $j"
+               echo "-------------------------------"
+               [ $j -eq 1 ] && lustre_fail mds_ost 0
+               [ $j -eq 0 ] && lustre_fail mds_ost 0xA01
+               test_16_tub $i $j
+           done
+       done
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
+}
+#run_test_with_stat 16 "test without adjusting qunit"
+
+# run for fixing bug14526, failed returned quota reqs shouldn't ruin lustre.
+test_17() {
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
+
+       wait_delete_completed
+
+       #define OBD_FAIL_QUOTA_RET_QDATA | OBD_FAIL_ONCE
+       lustre_fail ost 0x80000A02
+
+       TESTFILE="$DIR/$tdir/$tfile-a"
+       TESTFILE2="$DIR/$tdir/$tfile-b"
+       mkdir -p $DIR/$tdir
+
+       BLK_LIMIT=$((100 * 1024)) # 100M
+
+       log "  Set enough high limit(block:$BLK_LIMIT) for user: $TSTUSR"
+       $LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I 0 $DIR
+       log "  Set enough high limit(block:$BLK_LIMIT) for group: $TSTUSR"
+       $LFS setquota -g $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I 0 $DIR
+
+       touch $TESTFILE
+       chown $TSTUSR.$TSTUSR $TESTFILE
+       touch $TESTFILE2
+       chown $TSTUSR.$TSTUSR $TESTFILE2
+
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+
+       log "    Write the test file1 ..."
+       $RUNAS dd if=/dev/zero of=$TESTFILE  bs=$BLK_SZ count=$(( 10 * 1024 )) \
+           || echo "write 10M file failure"
+
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+
+       log "    write the test file2 ..."
+       $RUNAS dd if=/dev/zero of=$TESTFILE2  bs=$BLK_SZ count=$(( 10 * 1024 )) \
+           || error "write 10M file failure"
+
+       $SHOW_QUOTA_USER
+       $SHOW_QUOTA_GROUP
+
+       rm -f $TESTFILE $TESTFILE2
+       RC=$?
+       sync; sleep 3; sync;
+
+       # make qd_count 64 bit
+       lustre_fail ost 0
+
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
+
+       resetquota -u $TSTUSR
+       resetquota -g $TSTUSR
+
+       return $RC
+}
+run_test_with_stat 17 "run for fixing bug14526 ==========="
+
+# test when mds takes a long time to handle a quota req so that
+# the ost has dropped it, the ost still could work well b=14840
+test_18() {
+       LIMIT=$((100 * 1024 * 1024)) # 100G
+       TESTFILE="$DIR/$tdir/$tfile"
+       mkdir -p $DIR/$tdir
+
+       wait_delete_completed
+
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
+
+       log "   User quota (limit: $LIMIT kbytes)"
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $MOUNT
+       $SHOW_QUOTA_USER
+
+       $LFS setstripe $TESTFILE -i 0 -c 1
+       chown $TSTUSR.$TSTUSR $TESTFILE
+
+       #define OBD_FAIL_MDS_BLOCK_QUOTA_REQ      0x13c
+       lustre_fail mds 0x13c
+
+       log "   step1: write 100M block ..."
+       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$((1024 * 100)) &
+       DDPID=$!
+
+       sleep 5
+       lustre_fail mds 0
+
+       echo  "   step2: testing ......"
+       count=0
+       if at_is_valid && at_is_enabled; then
+           timeout=$(at_max_get mds)
+       else
+           timeout=$(lctl get_param -n timeout)
+       fi
+       while [ true ]; do
+           if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
+           count=$[count+1]
+           if [ $count -gt $((4 * $timeout)) ]; then
+               error "count=$count dd should be finished!"
+           fi
+           sleep 1
+       done
+       log "(dd_pid=$DDPID, time=$count, timeout=$timeout)"
+
+       testfile_size=$(stat -c %s $TESTFILE)
+       [ $testfile_size -ne $((BLK_SZ * 1024 * 100)) ] && \
+           error "expect $((BLK_SZ * 1024 * 100)), got ${testfile_size}. Verifying file failed!"
+       rm -f $TESTFILE
+       sync; sleep 3; sync;
+
+       resetquota -u $TSTUSR
+
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
+}
+run_test_with_stat 18 "run for fixing bug14840 ==========="
+
+# test when mds drops a quota req, the ost still could work well b=14840
+test_18a() {
+       LIMIT=$((100 * 1024 * 1024)) # 100G
+       TESTFILE="$DIR/$tdir/$tfile-a"
+       mkdir -p $DIR/$tdir
+
+       wait_delete_completed
+
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
+
+       log "   User quota (limit: $LIMIT kbytes)"
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $MOUNT
+       $SHOW_QUOTA_USER
+
+       $LFS setstripe $TESTFILE -i 0 -c 1
+       chown $TSTUSR.$TSTUSR $TESTFILE
+
+       #define OBD_FAIL_MDS_DROP_QUOTA_REQ | OBD_FAIL_ONCE   0x8000013d
+       lustre_fail mds 0x8000013d
+
+       log "   step1: write 100M block ..."
+       $RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ count=$((1024 * 100)) &
+       DDPID=$!
+
+       echo  "   step2: testing ......"
+       count=0
+       if at_is_valid && at_is_enabled; then
+           timeout=$(at_max_get mds)
+       else
+           timeout=$(lctl get_param -n timeout)
+       fi
+       while [ true ]; do
+           if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
+           count=$[count+1]
+           if [ $count -gt $((6 * $timeout)) ]; then
+               lustre_fail mds 0
+               error "count=$count dd should be finished!"
+           fi
+           sleep 1
+       done
+       log "(dd_pid=$DDPID, time=$count, timeout=$timeout)"
+
+       lustre_fail mds 0
+
+       rm -f $TESTFILE
+       sync; sleep 3; sync;
+
+       resetquota -u $TSTUSR
+
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
+}
+run_test_with_stat 18a "run for fixing bug14840 ==========="
+
+# test when mds do failover, the ost still could work well without trigger
+# watchdog b=14840
+test_18bc_sub() {
+       type=$1
+
+       LIMIT=$((110 * 1024 )) # 110M
+       TESTFILE="$DIR/$tdir/$tfile"
+       mkdir -p $DIR/$tdir
+
+       wait_delete_completed
+
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
+
+       log "   User quota (limit: $LIMIT kbytes)"
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $MOUNT
+       $SHOW_QUOTA_USER
+
+       $LFS setstripe $TESTFILE -i 0 -c 1
+       chown $TSTUSR.$TSTUSR $TESTFILE
+
+       timeout=$(sysctl -n lustre.timeout)
+
+       if [ $type = "directio" ]; then
+           log "   write 100M block(directio) ..."
+           $RUNAS $DIRECTIO write $TESTFILE 0 100 $((BLK_SZ * 1024)) &
+       else
+           log "   write 100M block(normal) ..."
+           $RUNAS dd if=/dev/zero of=$TESTFILE bs=$((BLK_SZ * 1024)) count=100 &
+       fi
+
+       DDPID=$!
+       do_facet $SINGLEMDS "$LCTL conf_param ${FSNAME}-MDT*.mdd.quota_type=ug"
+
+       log "failing mds for $((2 * timeout)) seconds"
+       fail $SINGLEMDS $((2 * timeout))
+
+       # check if quotaon successful
+       $LFS quota -u $TSTUSR $MOUNT 2>&1 | grep -q "quotas are not enabled"
+       if [ $? -eq 0 ]; then
+           error "quotaon failed!"
+           rm -rf $TESTFILE
+           return
+       fi
+
+       count=0
+       if at_is_valid && at_is_enabled; then
+           timeout=$(at_max_get mds)
+       else
+           timeout=$(lctl get_param -n timeout)
+       fi
+       while [ true ]; do
+           if ! ps -p ${DDPID} > /dev/null 2>&1; then break; fi
+           if [ $((++count % (2 * timeout) )) -eq 0 ]; then
+               log "it took $count second"
+           fi
+           sleep 1
+       done
+       log "(dd_pid=$DDPID, time=$count, timeout=$timeout)"
+       sync; sleep 1; sync
+
+       testfile_size=$(stat -c %s $TESTFILE)
+       [ $testfile_size -ne $((BLK_SZ * 1024 * 100)) ] && \
+           error "expect $((BLK_SZ * 1024 * 100)), got ${testfile_size}. Verifying file failed!"
+       $SHOW_QUOTA_USER
+        resetquota -u $TSTUSR
+       rm -rf $TESTFILE
+       sync; sleep 1; sync
+}
+
+# test when mds does failover, the ost still could work well
+# this test shouldn't trigger watchdog b=14840
+test_18b() {
+       test_18bc_sub normal
+       test_18bc_sub directio
+       # check if watchdog is triggered
+       do_facet ost1 dmesg > $TMP/lustre-log-${TESTNAME}.log
+       watchdog=`awk '/test 18b/ {start = 1;}
+                      /Watchdog triggered/ {
+                              if (start) {
+                                      print;
+                              }
+                      }' $TMP/lustre-log-${TESTNAME}.log`
+       [ `echo "$watchdog" | wc -l` -ge 3 ] && error "$watchdog"
+       rm -f $TMP/lustre-log-${TESTNAME}.log
+}
+run_test_with_stat 18b "run for fixing bug14840(mds failover, no watchdog) ==========="
+
+# test when mds does failover, the ost still could work well
+# this test will prevent OST_DISCONNET from happening b=14840
+test_18c() {
+       # define OBD_FAIL_OST_DISCONNECT_NET 0x202(disable ost_disconnect for osts)
+       lustre_fail ost  0x202
+       test_18bc_sub normal
+       test_18bc_sub directio
+       lustre_fail ost  0
+}
+run_test_with_stat 18c "run for fixing bug14840(mds failover, OST_DISCONNECT is disabled) ==========="
+
+run_to_block_limit() {
+       local LIMIT=$((($OSTCOUNT + 1) * $BUNIT_SZ))
+       local TESTFILE=$1
+       wait_delete_completed
+
+       # set 1 Mb quota unit size
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
+
+       # bind file to a single OST
+       $LFS setstripe -c 1 $TESTFILE
+       chown $TSTUSR.$TSTUSR $TESTFILE
+
+       echo "  User quota (limit: $LIMIT kbytes)"
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $MOUNT
+       $SHOW_QUOTA_USER
+       echo "  Updating quota limits"
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $MOUNT
+       $SHOW_QUOTA_USER
+
+       RUNDD="$RUNAS dd if=/dev/zero of=$TESTFILE bs=$BLK_SZ"
+       $RUNDD count=$BUNIT_SZ || error "(usr) write failure, but expect success"
+       # for now page cache of TESTFILE may still be dirty,
+       # let's push it to the corresponding OST, this will also
+       # cache NOQUOTA on the client from OST's reply
+       cancel_lru_locks osc
+       $RUNDD seek=$BUNIT_SZ && error "(usr) write success, should be EDQUOT"
+}
+
+test_19() {
+       # 1 Mb bunit per each MDS/OSS
+       local TESTFILE="$DIR/$tdir/$tfile"
+       mkdir -p $DIR/$tdir
+
+       run_to_block_limit $TESTFILE
+       $SHOW_QUOTA_USER
+
+       # cleanup
+       rm -f $TESTFILE
+       resetquota -u $TSTUSR
+
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
+
+}
+run_test_with_stat 19 "test if administrative limits updates do not zero operational limits (14790) ==="
+
+test_20()
+{
+       LSTR=(1t 2g 3m 4k) # limits strings
+       LVAL=($[1*1024*1024*1024] $[2*1024*1024] $[3*1024*1024] $[4*1024]) # limits values
+
+       $LFS setquota -u $TSTUSR --block-softlimit ${LSTR[0]} \
+                                $MOUNT || error "could not set quota limits"
+
+       $LFS setquota -u $TSTUSR --block-hardlimit ${LSTR[1]} \
+                                --inode-softlimit ${LSTR[2]} \
+                                --inode-hardlimit ${LSTR[3]} \
+                                $MOUNT || error "could not set quota limits"
+
+       ($LFS quota -v -u $TSTUSR $MOUNT  | \
+           grep -E '^ *'$MOUNT' *[0-9]+\** *'${LVAL[0]}' *'${LVAL[1]}' *[0-9]+\** *'${LVAL[2]}' *'${LVAL[3]}) \
+                || error "lfs quota output is unexpected"
+
+        resetquota -u $TSTUSR
+}
+run_test_with_stat 20 "test if setquota specifiers work properly (15754)"
+
+test_21_sub() {
+       local testfile=$1
+       local blk_number=$2
+       local seconds=$3
+
+       time=$(($(date +%s) + seconds))
+       while [ $(date +%s) -lt $time ]; do
+           $RUNAS dd if=/dev/zero of=$testfile  bs=$BLK_SZ count=$blk_number > /dev/null 2>&1
+           rm -f $testfile
+       done
+}
+
+# run for fixing bug16053, setquota shouldn't fail when writing and
+# deleting are happening
+test_21() {
+       set_blk_tunesz 512
+       set_blk_unitsz 1024
+
+       wait_delete_completed
+
+       TESTFILE="$DIR/$tdir/$tfile"
+
+       BLK_LIMIT=$((10 * 1024 * 1024)) # 10G
+       FILE_LIMIT=1000000
+
+       log "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for user: $TSTUSR"
+       $LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $MOUNT
+       log "  Set enough high limit(block:$BLK_LIMIT; file: $FILE_LIMIT) for group: $TSTUSR"
+       $LFS setquota -g $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I $FILE_LIMIT $MOUNT
+
+       # repeat writing on a 1M file
+       test_21_sub ${TESTFILE}_1 1024 30 &
+       DDPID1=$!
+       # repeat writing on a 128M file
+       test_21_sub ${TESTFILE}_2 $((1024 * 128)) 30 &
+       DDPID2=$!
+
+       time=$(($(date +%s) + 30))
+       i=1
+       while [ $(date +%s) -lt $time ]; do
+           log "  Set quota for $i times"
+           $LFS setquota -u $TSTUSR -b 0 -B $((BLK_LIMIT + 1024 * i)) -i 0 -I $((FILE_LIMIT + i)) $MOUNT
+           $LFS setquota -g $TSTUSR -b 0 -B $((BLK_LIMIT + 1024 * i)) -i 0 -I $((FILE_LIMIT + i)) $MOUNT
+           i=$((i+1))
+           sleep 1
+       done
+
+       count=0
+       while [ true ]; do
+           if ! ps -p ${DDPID1} > /dev/null 2>&1; then break; fi
+           count=$[count+1]
+           if [ $count -gt 60 ]; then
+               error "dd should be finished!"
+           fi
+           sleep 1
+       done
+       echo "(dd_pid=$DDPID1, time=$count)successful"
+
+       count=0
+       while [ true ]; do
+           if ! ps -p ${DDPID2} > /dev/null 2>&1; then break; fi
+           count=$[count+1]
+           if [ $count -gt 60 ]; then
+               error "dd should be finished!"
+           fi
+           sleep 1
+       done
+       echo "(dd_pid=$DDPID2, time=$count)successful"
+
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
+       resetquota -u $TSTUSR
+       resetquota -g $TSTUSR
+
+       return $RC
+}
+run_test_with_stat 21 "run for fixing bug16053 ==========="
+
+test_22() {
+       local SAVEREFORMAT
+
+       SAVEREFORMAT=$REFORMAT
+       $LFS quotaoff -ug $DIR || error "could not turn quotas off"
+
+       quota_save_version "ug"
+
+       REFORMAT="reformat"
+       stopall
+       mount
+       setupall
+       REFORMAT=$SAVEREFORMAT
+
+       echo "checking parameters"
+
+       do_facet $SINGLEMDS "lctl get_param mdd.${FSNAME}-MDT*.quota_type" | grep "ug" || error "admin failure"
+       do_facet ost1 "lctl get_param obdfilter.*.quota_type" | grep "ug" || error "op failure"
+
+       run_test 0 "reboot lustre"
+}
+run_test_with_stat 22 "test if quota_type saved as permanent parameter ===="
+
+test_23_sub() {
+       mkdir -p $DIR/$tdir
+       chmod 0777 $DIR/$tdir
+       TESTFILE="$DIR/$tdir/$tfile-0"
+       rm -f $TESTFILE
+       local bs_unit=$((1024*1024))
+       LIMIT=$1
+
+       wait_delete_completed
+
+       # test for user
+       log "  User quota (limit: $LIMIT kbytes)"
+       $LFS setquota -u $TSTUSR -b 0 -B $LIMIT -i 0 -I 0 $DIR
+       sleep 3
+       $SHOW_QUOTA_USER
+
+       $LFS setstripe $TESTFILE -c 1
+       chown $TSTUSR.$TSTUSR $TESTFILE
+
+       log "    Step1: trigger quota with 0_DIRECT"
+       log "      Write half of file"
+       $RUNAS $DIRECTIO write $TESTFILE 0 $(($LIMIT/1024/2)) $bs_unit || error "(1) write failure, but expect success: $LIMIT"
+       log "      Write out of block quota ..."
+       $RUNAS $DIRECTIO write $TESTFILE $(($LIMIT/1024/2)) $(($LIMIT/1024/2)) $bs_unit && error "(2) write success, but expect EDQUOT: $LIMIT"
+       log "    Step1: done"
+
+       log "    Step2: rewrite should succeed"
+       $RUNAS $DIRECTIO write $TESTFILE $(($LIMIT/1024/2)) 1 $bs_unit || error "(3) write failure, but expect success: $LIMIT"
+       log "    Step2: done"
+
+       rm -f $TESTFILE
+       wait_delete_completed
+       OST0_UUID=`do_facet ost1 $LCTL dl | grep -m1 obdfilter | awk '{print $((NF-1))}'`
+       OST0_QUOTA_USED=`$LFS quota -o $OST0_UUID -u $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+       echo $OST0_QUOTA_USED
+       [ $OST0_QUOTA_USED -ne 0 ] && \
+           ($SHOW_QUOTA_USER; error "quota deleted isn't released")
+       $SHOW_QUOTA_USER
+       resetquota -u $TSTUSR
+}
+
+test_23() {
+       log "run for $((OSTCOUNT * 4))MB test file"
+       test_23_sub $((OSTCOUNT * 4 * 1024))
+
+       OST0_MIN=120000
+       check_whether_skip && return 0
+       log "run for $((OSTCOUNT * 40))MB test file"
+       test_23_sub $((OSTCOUNT * 40 * 1024))
+}
+run_test_with_stat 23 "run for fixing bug16125 ==========="
+
+test_24() {
+       local TESTFILE="$DIR/$tdir/$tfile"
+       mkdir -p $DIR/$tdir
+
+       run_to_block_limit $TESTFILE
+       $SHOW_QUOTA_USER | grep '*' || error "no matching *"
+
+       # cleanup
+       rm -f $TESTFILE
+       resetquota -u $TSTUSR
+
+       set_blk_unitsz $((128 * 1024))
+       set_blk_tunesz $((128 * 1024 / 2))
+       
+}
+run_test_with_stat 24 "test if lfs draws an asterix when limit is reached (16646) ==========="
+
+show_quota() {
+        if [ $1 = "-u" ]; then
+                if [ $2 = "$TSTUSR" ]; then
+                       $SHOW_QUOTA_USER
+                else
+                        $SHOW_QUOTA_USER2
+                fi
+        else
+                if [ $2 = "$TSTUSR" ]; then
+                        $SHOW_QUOTA_GROUP
+                else
+                        $SHOW_QUOTA_GROUP2
+                fi
+        fi
+}
+
+test_25_sub() {
+       mkdir -p $DIR/$tdir
+       chmod 0777 $DIR/$tdir
+       TESTFILE="$DIR/$tdir/$tfile-0"
+       rm -f $TESTFILE
+
+       wait_delete_completed
+
+        # set quota for $TSTUSR
+        log "setquota for $TSTUSR"
+       $LFS setquota $1 $TSTUSR -b 10240 -B 10240 -i 10 -I 10 $DIR
+       sleep 3
+        show_quota $1 $TSTUSR
+
+        # set quota for $TSTUSR2
+        log "setquota for $TSTUSR2"
+       $LFS setquota $1 $TSTUSR2 -b 10240 -B 10240 -i 10 -I 10 $DIR
+       sleep 3
+        show_quota $1 $TSTUSR2
+
+        # set stripe index to 0
+        log "setstripe for $DIR/$tdir to 0"
+       $LFS setstripe $DIR/$tdir -i 0
+       MDS_UUID=`do_facet $SINGLEMDS $LCTL dl | grep -m1 " mdt " | awk '{print $((NF-1))}'`
+       OST0_UUID=`do_facet ost1 $LCTL dl | grep -m1 obdfilter | awk '{print $((NF-1))}'`
+       MDS_QUOTA_USED_OLD=`$LFS quota -o $MDS_UUID $1 $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $4 }'`
+       OST0_QUOTA_USED_OLD=`$LFS quota -o $OST0_UUID $1 $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+       MDS_QUOTA_USED2_OLD=`$LFS quota -o $MDS_UUID $1 $TSTUSR2 $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $4 }'`
+       OST0_QUOTA_USED2_OLD=`$LFS quota -o $OST0_UUID $1 $TSTUSR2 $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+
+        # TSTUSR write 4M
+        log "$TSTUSR write 4M to $TESTFILE"
+        $RUNAS dd if=/dev/zero of=$TESTFILE bs=4K count=1K || error "dd failed"
+        sync
+       show_quota $1 $TSTUSR
+       show_quota $1 $TSTUSR2
+       MDS_QUOTA_USED_NEW=`$LFS quota -o $MDS_UUID $1 $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $4 }'`
+        [ $MDS_QUOTA_USED_NEW -ne $((MDS_QUOTA_USED_OLD + 1)) ] && \
+                error "$TSTUSR inode quota usage error: [$MDS_QUOTA_USED_OLD|$MDS_QUOTA_USED_NEW]"
+       OST0_QUOTA_USED_NEW=`$LFS quota -o $OST0_UUID $1 $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+        OST0_QUOTA_USED_DELTA=$((OST0_QUOTA_USED_NEW - OST0_QUOTA_USED_OLD))
+        [ $OST0_QUOTA_USED_DELTA -lt 4096 ] && \
+                error "$TSTUSR block quota usage error: [$OST0_QUOTA_USED_OLD|$OST0_QUOTA_USED_NEW]"
+
+        # chown/chgrp from $TSTUSR to $TSTUSR2
+        if [ $1 = "-u" ]; then
+                log "chown from $TSTUSR to $TSTUSR2"
+                chown $TSTUSR2 $TESTFILE || error "chown failed"
+        else
+                log "chgrp from $TSTUSR to $TSTUSR2"
+                chgrp $TSTUSR2 $TESTFILE || error "chgrp failed"
+        fi
+        sync
+       show_quota $1 $TSTUSR
+       show_quota $1 $TSTUSR2
+       MDS_QUOTA_USED2_NEW=`$LFS quota -o $MDS_UUID $1 $TSTUSR2 $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $4 }'`
+        [ $MDS_QUOTA_USED2_NEW -ne $((MDS_QUOTA_USED2_OLD + 1)) ] && \
+                error "$TSTUSR2 inode quota usage transfer from $TSTUSR to $TSTUSR2 failed: [$MDS_QUOTA_USED2_OLD|$MDS_QUOTA_USED2_NEW]"
+       OST0_QUOTA_USED2_NEW=`$LFS quota -o $OST0_UUID $1 $TSTUSR2 $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+        OST0_QUOTA_USED2_DELTA=$((OST0_QUOTA_USED2_NEW - OST0_QUOTA_USED2_OLD))
+        [ $OST0_QUOTA_USED2_DELTA -ne $OST0_QUOTA_USED_DELTA ] && \
+                error "$TSTUSR2 block quota usage transfer from $TSTUSR to $TSTUSR2 failed: [$OST0_QUOTA_USED2_OLD|$OST0_QUOTA_USED2_NEW]"
+       MDS_QUOTA_USED_NEW=`$LFS quota -o $MDS_UUID $1 $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $4 }'`
+        [ $MDS_QUOTA_USED_NEW -ne $MDS_QUOTA_USED_OLD ] && \
+                error "$TSTUSR inode quota usage transfer from $TSTUSR to $TSTUSR2 failed: [$MDS_QUOTA_USED_OLD|$MDS_QUOTA_USED_NEW]"
+       OST0_QUOTA_USED_NEW=`$LFS quota -o $OST0_UUID $1 $TSTUSR $DIR | awk '/^.*[[:digit:]+][[:space:]+]/ { print $1 }'`
+        [ $OST0_QUOTA_USED_NEW -ne $OST0_QUOTA_USED_OLD ] && \
+                error "$TSTUSR block quota usage transfer from $TSTUSR to $TSTUSR2 failed: [$OST0_QUOTA_USED_OLD|$OST0_QUOTA_USED_NEW]"
+
+       rm -f $TESTFILE
+       wait_delete_completed
+       resetquota $1 $TSTUSR
+       resetquota $1 $TSTUSR2
+}
+
+test_25() {
+       log "run for chown case"
+       test_25_sub -u
+
+       log "run for chgrp case"
+       test_25_sub -g
+}
+run_test_with_stat 25 "test whether quota usage is transfered when chown/chgrp (18081) ==========="
+
+# turn off quota
+test_99()
+{
+       $LFS quotaoff $DIR
+       lctl set_param debug="-quota"
 
-# turn off quota
-test_99()
-{
-       $LFS quotaoff $DIR
        return 0
 }
-run_test 99 "Quota off ==============================="
+run_test_with_stat 99 "Quota off ==============================="
 
 
 log "cleanup: ======================================================"
 cd $ORIG_PWD
-post_test
 check_and_cleanup_lustre
 echo '=========================== finished ==============================='
 [ -f "$QUOTALOG" ] && cat $QUOTALOG && grep -q FAIL $QUOTALOG && exit 1 || true