Whamcloud - gitweb
correctly skip time estimate if in recovery
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2 # requirement:
3 #       add uml1 uml2 uml3 in your /etc/hosts
4
5 # FIXME - there is no reason to use all of these different
6 #   return codes, espcially when most of them are mapped to something
7 #   else anyway.  The combination of test number and return code
8 #   figure out what failed.
9
10 set -e
11
12 ONLY=${ONLY:-"$*"}
13
14 # bug number for skipped test:      13369
15 ALWAYS_EXCEPT=" $CONF_SANITY_EXCEPT 34a"
16 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
17
18 SRCDIR=`dirname $0`
19 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
20
21 SAVE_PWD=$PWD
22 LUSTRE=${LUSTRE:-`dirname $0`/..}
23 RLUSTRE=${RLUSTRE:-$LUSTRE}
24 HOSTNAME=`hostname`
25
26 . $LUSTRE/tests/test-framework.sh
27 init_test_env $@
28 # STORED_MDSSIZE is used in test_18
29 if [ -n "$MDSSIZE" ]; then
30     STORED_MDSSIZE=$MDSSIZE
31 fi
32 # use small MDS + OST size to speed formatting time
33 MDSSIZE=40000
34 OSTSIZE=40000
35 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
36
37 remote_mds_nodsh && skip "remote MDS with nodsh" && exit 0
38 remote_ost_nodsh && skip "remote OST with nodsh" && exit 0
39
40 #
41 [ "$SLOW" = "no" ] && EXCEPT_SLOW="0 1 2 3 6 7 15 18 24b 25 30 31 32 33 34a 45"
42
43 assert_DIR
44
45 reformat() {
46         formatall
47 }
48
49 writeconf() {
50         local facet=mds
51         shift
52         stop ${facet} -f
53         rm -f ${facet}active
54         # who knows if/where $TUNEFS is installed?  Better reformat if it fails...
55         do_facet ${facet} "$TUNEFS --writeconf $MDSDEV" || echo "tunefs failed, reformatting instead" && reformat
56
57         gen_config
58 }
59
60 gen_config() {
61         # The MGS must be started before the OSTs for a new fs, so start
62         # and stop to generate the startup logs. 
63         start_mds
64         start_ost
65         sleep 5
66         stop_ost
67         stop_mds
68 }
69
70 reformat_and_config() {
71         reformat
72         gen_config
73 }
74
75 start_mds() {
76         echo "start mds service on `facet_active_host mds`"
77         start mds $MDSDEV $MDS_MOUNT_OPTS || return 94
78 }
79
80 stop_mds() {
81         echo "stop mds service on `facet_active_host mds`"
82         # These tests all use non-failover stop
83         stop mds -f  || return 97
84 }
85
86 start_ost() {
87         echo "start ost1 service on `facet_active_host ost1`"
88         start ost1 `ostdevname 1` $OST_MOUNT_OPTS || return 95
89 }
90
91 stop_ost() {
92         echo "stop ost1 service on `facet_active_host ost1`"
93         # These tests all use non-failover stop
94         stop ost1 -f  || return 98
95 }
96
97 start_ost2() {
98         echo "start ost2 service on `facet_active_host ost2`"
99         start ost2 `ostdevname 2` $OST_MOUNT_OPTS || return 92
100 }
101
102 stop_ost2() {
103         echo "stop ost2 service on `facet_active_host ost2`"
104         # These tests all use non-failover stop
105         stop ost2 -f  || return 93
106 }
107
108 start_client() {
109         echo "start client on `facet_active_host client`"
110         start client || return 99 
111 }
112
113 stop_client() {
114         echo "stop client on `facet_active_host client`"
115         stop client || return 100 
116 }
117
118 mount_client() {
119         local MOUNTPATH=$1
120         echo "mount $FSNAME on ${MOUNTPATH}....."
121         zconf_mount `hostname` $MOUNTPATH  || return 96
122 }
123
124 remount_client() {
125         local SAVEMOUNTOPT=$MOUNTOPT
126         MOUNTOPT="remount,$1"
127         local MOUNTPATH=$2
128         echo "remount '$1' lustre on ${MOUNTPATH}....."
129         zconf_mount `hostname`  $MOUNTPATH  || return 96
130         MOUNTOPT=$SAVEMOUNTOPT
131 }
132
133 umount_client() {
134         local MOUNTPATH=$1
135         echo "umount lustre on ${MOUNTPATH}....."
136         zconf_umount `hostname` $MOUNTPATH || return 97
137 }
138
139 manual_umount_client(){
140         local rc
141         local FORCE=$1
142         echo "manual umount lustre on ${MOUNT}...."
143         do_facet client "umount -d ${FORCE} $MOUNT"
144         rc=$?
145         return $rc
146 }
147
148 setup() {
149         start_ost
150         start_mds
151         mount_client $MOUNT
152         df $MOUNT
153 }
154
155 setup_noconfig() {
156         start_mds
157         start_ost
158         mount_client $MOUNT
159 }
160
161 cleanup_nocli() {
162         stop_mds || return 201
163         stop_ost || return 202
164         unload_modules || return 203
165 }
166
167 cleanup() {
168         umount_client $MOUNT || return 200
169         cleanup_nocli || return $?
170 }
171
172 check_mount() {
173         do_facet client "cp /etc/passwd $DIR/a" || return 71
174         do_facet client "rm $DIR/a" || return 72
175         # make sure lustre is actually mounted (touch will block, 
176         # but grep won't, so do it after) 
177         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
178         echo "setup single mount lustre success"
179 }
180
181 check_mount2() {
182         do_facet client "touch $DIR/a" || return 71     
183         do_facet client "rm $DIR/a" || return 72        
184         do_facet client "touch $DIR2/a" || return 73    
185         do_facet client "rm $DIR2/a" || return 74       
186         echo "setup double mount lustre success"
187 }
188
189 build_test_filter
190
191 if [ "$ONLY" == "setup" ]; then
192         setup
193         exit
194 fi
195
196 if [ "$ONLY" == "cleanup" ]; then
197         cleanup
198         exit
199 fi
200
201 #create single point mountpoint
202
203 reformat_and_config
204
205 test_0() {
206         setup
207         check_mount || return 41
208         cleanup || return $?
209 }
210 run_test 0 "single mount setup"
211
212 test_1() {
213         start_ost
214         echo "start ost second time..."
215         setup
216         check_mount || return 42
217         cleanup || return $?
218 }
219 run_test 1 "start up ost twice (should return errors)"
220
221 test_2() {
222         start_ost
223         start_mds       
224         echo "start mds second time.."
225         start_mds
226         mount_client $MOUNT
227         check_mount || return 43
228         cleanup || return $?
229 }
230 run_test 2 "start up mds twice (should return err)"
231
232 test_3() {
233         setup
234         #mount.lustre returns an error if already in mtab
235         mount_client $MOUNT && return $?
236         check_mount || return 44
237         cleanup || return $?
238 }
239 run_test 3 "mount client twice (should return err)"
240
241 test_4() {
242         setup
243         touch $DIR/$tfile || return 85
244         stop_ost -f
245         cleanup
246         eno=$?
247         # ok for ost to fail shutdown
248         if [ 202 -ne $eno ]; then
249                 return $eno;
250         fi
251         return 0
252 }
253 run_test 4 "force cleanup ost, then cleanup"
254
255 test_5a() {     # was test_5
256         setup
257         touch $DIR/$tfile || return 1
258         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
259
260         stop_mds -f || return 2
261
262         # cleanup may return an error from the failed
263         # disconnects; for now I'll consider this successful
264         # if all the modules have unloaded.
265         umount -d $MOUNT &
266         UMOUNT_PID=$!
267         sleep 6
268         echo "killing umount"
269         kill -TERM $UMOUNT_PID
270         echo "waiting for umount to finish"
271         wait $UMOUNT_PID
272         if grep " $MOUNT " /proc/mounts; then
273                 echo "test 5: /proc/mounts after failed umount"
274                 umount $MOUNT &
275                 UMOUNT_PID=$!
276                 sleep 2
277                 echo "killing umount"
278                 kill -TERM $UMOUNT_PID
279                 echo "waiting for umount to finish"
280                 wait $UMOUNT_PID
281                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
282         fi
283
284         manual_umount_client
285         # stop_mds is a no-op here, and should not fail
286         cleanup_nocli || return $?
287         # df may have lingering entry
288         manual_umount_client
289         # mtab may have lingering entry
290         local WAIT=0
291         local MAX_WAIT=20
292         local sleep=1
293         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
294                 sleep $sleep
295                 grep -q $MOUNT" " /etc/mtab || break
296                 echo "Waiting /etc/mtab updated ... "
297                 WAIT=$(( WAIT + sleep))
298         done
299         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
300         echo "/etc/mtab updated in $WAIT secs"
301 }
302 run_test 5a "force cleanup mds, then cleanup"
303
304 test_5b() {
305         start_ost
306         [ -d $MOUNT ] || mkdir -p $MOUNT
307         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab before mount" && return 10
308         mount_client $MOUNT && return 1
309         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab after failed mount" && return 11
310         umount_client $MOUNT    
311         # stop_mds is a no-op here, and should not fail
312         cleanup_nocli || return $?
313         return 0
314 }
315 run_test 5b "mds down, cleanup after failed mount (bug 2712) (should return errs)"
316
317 test_5c() {
318         start_ost
319         start_mds
320         [ -d $MOUNT ] || mkdir -p $MOUNT
321         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab before mount" && return 10
322         local oldfs="${FSNAME}"
323         FSNAME="wrong.${FSNAME}"
324         mount_client $MOUNT || :
325         FSNAME=${oldfs}
326         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab after failed mount" && return 11
327         umount_client $MOUNT
328         cleanup_nocli  || return $?
329 }
330 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
331
332 test_5d() {
333         start_ost
334         start_mds
335         stop_ost -f
336         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab before mount" && return 10
337         mount_client $MOUNT || return 1
338         cleanup  || return $?
339         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab after unmount" && return 11
340         return 0
341 }
342 run_test 5d "mount with ost down"
343
344 test_5e() {
345         start_ost
346         start_mds
347
348 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
349         do_facet client "lctl set_param fail_loc=0x80000506"
350         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab before mount" && return 10
351         mount_client $MOUNT || echo "mount failed (not fatal)"
352         cleanup  || return $?
353         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab after unmount" && return 11
354         return 0
355 }
356 run_test 5e "delayed connect, don't crash (bug 10268)"
357
358 test_6() {
359         setup
360         manual_umount_client
361         mount_client ${MOUNT} || return 87
362         touch $DIR/a || return 86
363         cleanup  || return $?
364 }
365 run_test 6 "manual umount, then mount again"
366
367 test_7() {
368         setup
369         manual_umount_client
370         cleanup_nocli || return $?
371 }
372 run_test 7 "manual umount, then cleanup"
373
374 test_8() {
375         setup
376         mount_client $MOUNT2
377         check_mount2 || return 45
378         umount_client $MOUNT2
379         cleanup  || return $?
380 }
381 run_test 8 "double mount setup"
382
383 test_9() {
384         start_ost
385
386         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
387         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
388
389         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
390         if [ "$CHECK_PTLDEBUG" ] && [ "$CHECK_PTLDEBUG" = "trace inode" ];then
391            echo "lnet.debug success"
392         else
393            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
394            return 1
395         fi
396         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
397         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
398            echo "lnet.subsystem_debug success"
399         else
400            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
401            return 1
402         fi
403         stop_ost || return $?
404 }
405
406 run_test 9 "test ptldebug and subsystem for mkfs"
407
408 test_16() {
409         local TMPMTPT="${TMP}/conf16"
410
411         if [ ! -e "$MDSDEV" ]; then
412             log "no $MDSDEV existing, so mount Lustre to create one"
413             setup
414             check_mount || return 41
415             cleanup || return $?
416         fi
417
418         [ -f "$MDSDEV" ] && LOOPOPT="-o loop"
419
420         log "change the mode of $MDSDEV/OBJECTS,LOGS,PENDING to 555"
421         do_facet mds "mkdir -p $TMPMTPT &&
422                       mount $LOOPOPT -t $FSTYPE $MDSDEV $TMPMTPT &&
423                       chmod 555 $TMPMTPT/{OBJECTS,LOGS,PENDING} &&
424                       umount $TMPMTPT" || return $?
425
426         log "mount Lustre to change the mode of OBJECTS/LOGS/PENDING, then umount Lustre"
427         setup
428         check_mount || return 41
429         cleanup || return $?
430
431         log "read the mode of OBJECTS/LOGS/PENDING and check if they has been changed properly"
432         EXPECTEDOBJECTSMODE=`do_facet mds "$DEBUGFS -R 'stat OBJECTS' $MDSDEV 2> /dev/null" | grep 'Mode: ' | sed -e "s/.*Mode: *//" -e "s/ *Flags:.*//"`
433         EXPECTEDLOGSMODE=`do_facet mds "$DEBUGFS -R 'stat LOGS' $MDSDEV 2> /dev/null" | grep 'Mode: ' | sed -e "s/.*Mode: *//" -e "s/ *Flags:.*//"`
434         EXPECTEDPENDINGMODE=`do_facet mds "$DEBUGFS -R 'stat PENDING' $MDSDEV 2> /dev/null" | grep 'Mode: ' | sed -e "s/.*Mode: *//" -e "s/ *Flags:.*//"`
435
436         if [ "$EXPECTEDOBJECTSMODE" = "0777" ]; then
437                 log "Success:Lustre change the mode of OBJECTS correctly"
438         else
439                 error "Lustre does not change mode of OBJECTS properly"
440         fi
441
442         if [ "$EXPECTEDLOGSMODE" = "0777" ]; then
443                 log "Success:Lustre change the mode of LOGS correctly"
444         else
445                 error "Lustre does not change mode of LOGS properly"
446         fi
447
448         if [ "$EXPECTEDPENDINGMODE" = "0777" ]; then
449                 log "Success:Lustre change the mode of PENDING correctly"
450         else
451                 error "Lustre does not change mode of PENDING properly"
452         fi
453 }
454 run_test 16 "verify that lustre will correct the mode of OBJECTS/LOGS/PENDING"
455
456 test_17() {
457         if [ ! -e "$MDSDEV" ]; then
458             echo "no $MDSDEV existing, so mount Lustre to create one"
459             setup
460             check_mount || return 41
461             cleanup || return $?
462         fi
463
464         echo "Remove mds config log"
465         do_facet mds "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MDSDEV || return \$?" || return $?
466
467         start_ost
468         start_mds && return 42
469         reformat_and_config
470 }
471 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
472
473 test_18() {
474         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return
475
476         local MIN=2000000
477
478         local OK=
479         # check if current MDSSIZE is large enough
480         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
481                 log "use MDSSIZE=$MDSSIZE"
482
483         # check if the global config has a large enough MDSSIZE
484         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
485                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
486                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
487
488         # check if the block device is large enough
489         [ -z "$OK" -a -b $MDSDEV ] && \
490                 [ "$(dd if=$MDSDEV of=/dev/null bs=1k count=1 skip=$MIN 2>&1 |
491                      awk '($3 == "in") { print $1 }')" = "1+0" ] && OK=1 && \
492                 myMDSSIZE=$MIN && log "use device $MDSDEV with MIN=$MIN"
493
494         # check if a loopback device has enough space for fs metadata (5%)
495         [ -z "$OK" ] && [ -f $MDSDEV -o ! -e $MDSDEV ] &&
496                 SPACE=$(df -P $(dirname $MDSDEV) |
497                         awk '($1 != "Filesystem") {print $4}') &&
498                 [ $SPACE -gt $((MIN / 20)) ] && OK=1 && myMDSSIZE=$MIN && \
499                         log "use file $MDSDEV with MIN=$MIN"
500
501         [ -z "$OK" ] && skip "$MDSDEV too small for ${MIN}kB MDS" && return
502
503
504         echo "mount mds with large journal..."
505         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
506
507         MDS_MKFS_OPTS="--mgs --mdt --fsname=$FSNAME --device-size=$myMDSSIZE --param sys.timeout=$TIMEOUT $MDSOPT"
508
509         reformat_and_config
510         echo "mount lustre system..."
511         setup
512         check_mount || return 41
513
514         echo "check journal size..."
515         local FOUNDSIZE=`do_facet mds "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}'`
516         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
517                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
518         else
519                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
520         fi
521
522         cleanup || return $?
523
524         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
525         reformat_and_config
526 }
527 run_test 18 "check mkfs creates large journals"
528
529 test_19a() {
530         start_mds || return 1
531         stop_mds -f || return 2
532 }
533 run_test 19a "start/stop MDS without OSTs"
534
535 test_19b() {
536         start_ost || return 1
537         stop_ost -f || return 2
538 }
539 run_test 19b "start/stop OSTs without MDS"
540
541 test_20() {
542         # first format the ost/mdt
543         start_ost
544         start_mds
545         mount_client $MOUNT
546         check_mount || return 43
547         rm -f $DIR/$tfile
548         remount_client ro $MOUNT || return 44
549         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
550         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
551         remount_client rw $MOUNT || return 47
552         touch $DIR/$tfile
553         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
554         MCNT=`grep -c $MOUNT /etc/mtab`
555         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
556         umount_client $MOUNT
557         stop_mds
558         stop_ost
559 }
560 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
561
562 test_21a() {
563         start_mds
564         start_ost
565         stop_ost
566         stop_mds
567 }
568 run_test 21a "start mds before ost, stop ost first"
569
570 test_21b() {
571         start_ost
572         start_mds
573         stop_mds
574         stop_ost
575 }
576 run_test 21b "start ost before mds, stop mds first"
577
578 test_21c() {
579         start_ost
580         start_mds
581         start_ost2
582         stop_ost
583         stop_ost2
584         stop_mds
585         #writeconf to remove all ost2 traces for subsequent tests
586         writeconf
587 }
588 run_test 21c "start mds between two osts, stop mds last"
589
590 test_22() {
591         start_mds
592
593         echo Client mount with ost in logs, but none running
594         start_ost
595         # wait until mds connected to ost and open client connection
596         # ping_interval + 1
597         sleep $((TIMEOUT / 4 + 1))
598         stop_ost
599         mount_client $MOUNT
600         # check_mount will block trying to contact ost
601         umount_client $MOUNT
602         pass
603
604         echo Client mount with a running ost
605         start_ost
606         mount_client $MOUNT
607         check_mount || return 41
608         pass
609
610         cleanup
611 }
612 run_test 22 "start a client before osts (should return errs)"
613
614 test_23a() {    # was test_23
615         setup
616         # fail mds
617         stop mds   
618         # force down client so that recovering mds waits for reconnect
619         local running=$(grep -c $MOUNT /proc/mounts) || true
620         if [ $running -ne 0 ]; then
621                 echo "Stopping client $MOUNT (opts: -f)"
622                 umount -f $MOUNT
623         fi
624
625         # enter recovery on mds
626         start_mds
627         # try to start a new client
628         mount_client $MOUNT &
629         sleep 5
630         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
631         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
632         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
633         ps --ppid $MOUNT_PID
634         ps --ppid $MOUNT_LUSTRE_PID
635         # FIXME why o why can't I kill these? Manual "ctrl-c" works...
636         kill -TERM $MOUNT_LUSTRE_PID
637         echo "waiting for mount to finish"
638         ps -ef | grep mount
639         # we can not wait $MOUNT_PID because it is not a child of this shell
640         local PID1
641         local PID2
642         local WAIT=0
643         local MAX_WAIT=20
644         local sleep=1
645         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
646                 sleep $sleep
647                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
648                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
649                 echo PID1=$PID1
650                 echo PID2=$PID2
651                 [ -z "$PID1" -a -z "$PID2" ] && break
652                 echo "waiting for mount to finish ... "
653                 WAIT=$(( WAIT + sleep))
654         done
655         [ "$WAIT" -eq "$MAX_WAIT" ] && error "MOUNT_PID $MOUNT_PID and \
656                 MOUNT__LUSTRE_PID $MOUNT__LUSTRE_PID still not killed in $WAIT secs"
657         ps -ef | grep mount
658         stop_mds || error
659         stop_ost || error
660 }
661 run_test 23a "interrupt client during recovery mount delay"
662
663 umount_client $MOUNT
664 cleanup_nocli
665
666 test_23b() {    # was test_23
667         start_ost
668         start_mds
669         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
670         lctl set_param fail_loc=0x80000313
671         mount_client $MOUNT
672         cleanup
673 }
674 run_test 23b "Simulate -EINTR during mount"
675
676 fs2mds_HOST=$mds_HOST
677 fs2ost_HOST=$ost_HOST
678
679 cleanup_24a() {
680         trap 0
681         echo "umount $MOUNT2 ..."
682         umount $MOUNT2 || true
683         echo "stopping fs2mds ..."
684         stop fs2mds -f || true
685         echo "stopping fs2ost ..."
686         stop fs2ost -f || true
687 }
688
689 test_24a() {
690         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
691         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
692                 do_facet mds [ -b "$MDSDEV" ] && \
693                 skip "mixed loopback and real device not working" && return
694         fi
695
696         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
697         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
698
699         # test 8-char fsname as well
700         local FSNAME2=test1234
701         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --nomgs --mgsnode=$MGSNID --reformat $fs2mdsdev || exit 10
702
703         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2ostdev || exit 10
704
705         setup
706         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
707         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
708         mkdir -p $MOUNT2
709         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
710         # 1 still works
711         check_mount || return 2
712         # files written on 1 should not show up on 2
713         cp /etc/passwd $DIR/$tfile
714         sleep 10
715         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
716         # 2 should work
717         cp /etc/passwd $MOUNT2/b || return 3
718         rm $MOUNT2/b || return 4
719         # 2 is actually mounted
720         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
721         # failover 
722         facet_failover fs2mds
723         facet_failover fs2ost
724         df
725         umount_client $MOUNT 
726         # the MDS must remain up until last MDT
727         stop_mds
728         MDS=$(do_facet mds "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDS") { print $4 }')
729         [ -z "$MDS" ] && error "No MDS" && return 8
730         cleanup_24a
731         cleanup_nocli || return 6
732 }
733 run_test 24a "Multiple MDTs on a single node"
734
735 test_24b() {
736         if [ -z "$fs2mds_DEV" ]; then
737                 do_facet mds [ -b "$MDSDEV" ] && \
738                 skip "mixed loopback and real device not working" && return
739         fi
740
741         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
742
743         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME}2 --mgs --reformat $fs2mdsdev || exit 10 
744         setup
745         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
746         cleanup || return 6
747 }
748 run_test 24b "Multiple MGSs on a single node (should return err)"
749
750 test_25() {
751         setup
752         check_mount || return 2
753         local MODULES=$($LCTL modules | awk '{ print $2 }')
754         rmmod $MODULES 2>/dev/null || true
755         cleanup || return 6
756 }
757 run_test 25 "Verify modules are referenced"
758
759 test_26() {
760     load_modules
761     # we need modules before mount for sysctl, so make sure...
762     do_facet mds "lsmod | grep -q lustre || modprobe lustre"
763 #define OBD_FAIL_MDS_FS_SETUP            0x135
764     do_facet mds "lctl set_param fail_loc=0x80000135"
765     start_mds && echo MDS started && return 1
766     lctl get_param -n devices
767     DEVS=$(lctl get_param -n devices | wc -l)
768     [ $DEVS -gt 0 ] && return 2
769     unload_modules || return 203
770 }
771 run_test 26 "MDT startup failure cleans LOV (should return errs)"
772
773 set_and_check() {
774         local myfacet=$1
775         local TEST=$2
776         local PARAM=$3
777         local ORIG=$(do_facet $myfacet "$TEST") 
778         if [ $# -gt 3 ]; then
779             local FINAL=$4
780         else
781             local -i FINAL
782             FINAL=$(($ORIG + 5))
783         fi
784         echo "Setting $PARAM from $ORIG to $FINAL"
785         do_facet mds "$LCTL conf_param $PARAM=$FINAL" || error conf_param failed
786
787         wait_update $(facet_host $myfacet) "$TEST" $FINAL || error check failed!
788 }
789
790 test_27a() {
791         start_ost || return 1
792         start_mds || return 2
793         echo "Requeue thread should have started: " 
794         ps -e | grep ll_cfg_requeue 
795         set_and_check ost1 "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
796         cleanup_nocli
797 }
798 run_test 27a "Reacquire MGS lock if OST started first"
799
800 test_27b() {
801         setup
802         facet_failover mds
803         set_and_check mds "lctl get_param -n mds.$FSNAME-MDT0000.group_acquire_expire" "$FSNAME-MDT0000.mdt.group_acquire_expire" || return 3
804         set_and_check client "lctl get_param -n mdc.$FSNAME-MDT0000-mdc-*.max_rpcs_in_flight" "$FSNAME-MDT0000.mdc.max_rpcs_in_flight" || return 4
805         check_mount
806         cleanup
807 }
808 run_test 27b "Reacquire MGS lock after failover"
809
810 test_28() {
811         setup
812         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
813         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
814         ORIG=$($TEST)
815         FINAL=$(($ORIG + 1))
816         set_and_check client "$TEST" "$PARAM" $FINAL || return 3
817         FINAL=$(($FINAL + 1))
818         set_and_check client "$TEST" "$PARAM" $FINAL || return 4
819         umount_client $MOUNT || return 200
820         mount_client $MOUNT
821         RESULT=$($TEST)
822         if [ $RESULT -ne $FINAL ]; then
823             echo "New config not seen: wanted $FINAL got $RESULT"
824             return 4
825         else
826             echo "New config success: got $RESULT"
827         fi
828         set_and_check client "$TEST" "$PARAM" $ORIG || return 5
829         cleanup
830 }
831 run_test 28 "permanent parameter setting"
832
833 test_29() {
834         [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2, skipping" && return
835         setup > /dev/null 2>&1
836         start_ost2
837         sleep 10
838
839         local PARAM="$FSNAME-OST0001.osc.active"
840         local PROC_ACT="osc.$FSNAME-OST0001-osc-*.active"
841         local PROC_UUID="osc.$FSNAME-OST0001-osc-*.ost_server_uuid"
842
843         ACTV=$(lctl get_param -n $PROC_ACT)
844         DEAC=$((1 - $ACTV))
845         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
846         # also check ost_server_uuid status
847         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
848         if [ -z "$RESULT" ]; then
849             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
850             return 3
851         else
852             echo "Live client success: got $RESULT"
853         fi
854
855         # check MDT too 
856         local MPROC="osc.$FSNAME-OST0001-osc.active"
857         local MAX=30
858         local WAIT=0
859         while [ 1 ]; do
860             sleep 5
861             RESULT=`do_facet mds " lctl get_param -n $MPROC"`
862             [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
863             if [ $RESULT -eq $DEAC ]; then
864                 echo "MDT deactivated also after $WAIT sec (got $RESULT)"
865                 break
866             fi
867             WAIT=$((WAIT + 5))
868             if [ $WAIT -eq $MAX ]; then
869                 echo "MDT not deactivated: wanted $DEAC got $RESULT"
870                 return 4
871             fi
872             echo "Waiting $(($MAX - $WAIT)) secs for MDT deactivated"
873         done
874
875         # test new client starts deactivated
876         umount_client $MOUNT || return 200
877         mount_client $MOUNT
878         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
879         if [ -z "$RESULT" ]; then
880             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
881             return 5
882         else
883             echo "New client success: got $RESULT"
884         fi
885
886         # make sure it reactivates
887         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
888
889         umount_client $MOUNT
890         stop_ost2
891         cleanup_nocli
892         #writeconf to remove all ost2 traces for subsequent tests
893         writeconf
894 }
895 run_test 29 "permanently remove an OST"
896
897 test_30() {
898         setup
899
900         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
901         ORIG=$($TEST)
902         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
903         for i in ${LIST[@]}; do
904             set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
905         done
906         # make sure client restart still works 
907         umount_client $MOUNT
908         mount_client $MOUNT || return 4
909         [ "$($TEST)" -ne "$i" ] && return 5   
910         set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $ORIG || return 6
911         cleanup
912 }
913 run_test 30 "Big config llog"
914
915 test_31() { # bug 10734
916         # ipaddr must not exist
917         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
918         cleanup
919 }
920 run_test 31 "Connect to non-existent node (returns errors, should not crash)"
921
922 # Use these start32/stop32 fn instead of t-f start/stop fn,
923 # for local devices, to skip global facet vars init 
924 stop32 () {
925         local facet=$1
926         shift
927         echo "Stopping local ${MOUNT%/*}/${facet} (opts:$@)"
928         umount -d $@ ${MOUNT%/*}/${facet}
929         losetup -a
930 }
931
932 start32 () {
933         local facet=$1
934         shift
935         local device=$1
936         shift
937         mkdir -p ${MOUNT%/*}/${facet}
938
939         echo "Starting local ${facet}: $@ $device ${MOUNT%/*}/${facet}"
940         mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}
941         RC=$?
942         if [ $RC -ne 0 ]; then
943                 echo "mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}"
944                 echo "Start of ${device} of local ${facet} failed ${RC}"
945         fi 
946         losetup -a
947         return $RC
948 }
949
950 cleanup_nocli32 () {
951         stop32 mds -f
952         stop32 ost1 -f
953         wait_exit_ST client
954 }
955
956 cleanup_32() {
957         trap 0
958         echo "Cleanup test_32 umount $MOUNT ..."
959         umount -f $MOUNT || true
960         echo "Cleanup local mds ost1 ..."
961         cleanup_nocli32
962         unload_modules
963 }
964
965 test_32a() {
966         # this test is totally useless on a client-only system
967         [ -n "$CLIENTONLY" -o -n "$CLIENTMODSONLY" ] && skip "client only testing" && return 0
968         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
969         [ -z "$TUNEFS" ] && skip "No tunefs" && return 0
970
971         local DISK1_4=$LUSTRE/tests/disk1_4.zip
972         [ ! -r $DISK1_4 ] && skip "Cant find $DISK1_4, skipping" && return
973
974         local tmpdir=$TMP/conf32a
975         unzip -o -j -d $tmpdir $DISK1_4 || { skip "Cant unzip $DISK1_4, skipping" && return ; }
976         load_modules
977         lctl set_param debug=$PTLDEBUG
978
979         $TUNEFS $tmpdir/mds || error "tunefs failed"
980
981         # nids are wrong, so client wont work, but server should start
982         start32 mds $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
983                 trap cleanup_32 EXIT INT || return 3
984         
985         local UUID=$(lctl get_param -n mds.lustre-MDT0000.uuid)
986         echo MDS uuid $UUID
987         [ "$UUID" == "mdsA_UUID" ] || error "UUID is wrong: $UUID" 
988
989         $TUNEFS --mgsnode=`hostname` $tmpdir/ost1 || error "tunefs failed"
990         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
991         UUID=$(lctl get_param -n obdfilter.lustre-OST0000.uuid)
992         echo OST uuid $UUID
993         [ "$UUID" == "ost1_UUID" ] || error "UUID is wrong: $UUID" 
994
995         local NID=$($LCTL list_nids | head -1)
996
997         echo "OSC changes should return err:" 
998         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 && return 7
999         $LCTL conf_param lustre-OST0000.failover.node=$NID && return 8
1000         echo "ok."
1001         echo "MDC changes should succeed:" 
1002         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1003         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
1004         echo "ok."
1005
1006         cleanup_32
1007
1008         # mount a second time to make sure we didnt leave upgrade flag on
1009         load_modules
1010         $TUNEFS --dryrun $tmpdir/mds || error "tunefs failed"
1011         start32 mds $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1012                 trap cleanup_32 EXIT INT || return 12
1013
1014         cleanup_32
1015
1016         rm -rf $tmpdir || true  # true is only for TMP on NFS
1017 }
1018 run_test 32a "Upgrade from 1.4 (not live)"
1019
1020 test_32b() {
1021         # this test is totally useless on a client-only system
1022         [ -n "$CLIENTONLY" -o -n "$CLIENTMODSONLY" ] && skip "client only testing" && return 0
1023         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1024         [ -z "$TUNEFS" ] && skip "No tunefs" && return
1025
1026         local DISK1_4=$LUSTRE/tests/disk1_4.zip
1027         [ ! -r $DISK1_4 ] && skip "Cant find $DISK1_4, skipping" && return
1028
1029         local tmpdir=$TMP/conf32b
1030         unzip -o -j -d $tmpdir $DISK1_4 || { skip "Cant unzip $DISK1_4, skipping" && return ; }
1031         load_modules
1032         lctl set_param debug=$PTLDEBUG
1033         local NEWNAME=sofia
1034
1035         # writeconf will cause servers to register with their current nids
1036         $TUNEFS --writeconf --fsname=$NEWNAME $tmpdir/mds || error "tunefs failed"
1037         start32 mds $tmpdir/mds "-o loop" && \
1038                 trap cleanup_32 EXIT INT || return 3
1039
1040         local UUID=$(lctl get_param -n mds.${NEWNAME}-MDT0000.uuid)
1041         echo MDS uuid $UUID
1042         [ "$UUID" == "mdsA_UUID" ] || error "UUID is wrong: $UUID" 
1043
1044         $TUNEFS --mgsnode=`hostname` --fsname=$NEWNAME --writeconf $tmpdir/ost1 || error "tunefs failed"
1045         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1046         UUID=$(lctl get_param -n obdfilter.${NEWNAME}-OST0000.uuid)
1047         echo OST uuid $UUID
1048         [ "$UUID" == "ost1_UUID" ] || error "UUID is wrong: $UUID"
1049
1050         echo "OSC changes should succeed:" 
1051         $LCTL conf_param ${NEWNAME}-OST0000.osc.max_dirty_mb=15 || return 7
1052         $LCTL conf_param ${NEWNAME}-OST0000.failover.node=$NID || return 8
1053         echo "ok."
1054         echo "MDC changes should succeed:" 
1055         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1056         echo "ok."
1057
1058         # MDT and OST should have registered with new nids, so we should have
1059         # a fully-functioning client
1060         echo "Check client and old fs contents"
1061
1062         local device=`h2$NETTYPE $HOSTNAME`:/$NEWNAME
1063         echo "Starting local client: $HOSTNAME: $device $MOUNT"
1064         mount -t lustre $device $MOUNT || return 1
1065
1066         local old=$(lctl get_param -n mdc.*.max_rpcs_in_flight)
1067         local new=$((old + 5))
1068         lctl conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=$new
1069         wait_update $HOSTNAME "lctl get_param -n mdc.*.max_rpcs_in_flight" $new || return 11
1070
1071         [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "2479747619 779" ] || return 12  
1072         echo "ok."
1073
1074         cleanup_32
1075
1076         rm -rf $tmpdir || true  # true is only for TMP on NFS
1077 }
1078 run_test 32b "Upgrade from 1.4 with writeconf"
1079
1080 test_33a() { # bug 12333, was test_33
1081         local rc=0
1082         local FSNAME2=test-123
1083         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1084
1085         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1086                 do_facet mds [ -b "$MDSDEV" ] && \
1087                 skip "mixed loopback and real device not working" && return
1088         fi
1089
1090         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1091         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1092         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1093         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --index=8191 --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1094
1095         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1096         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1097         do_facet mds "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1098         mkdir -p $MOUNT2
1099         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1100         cp /etc/hosts $MOUNT2/. || rc=3
1101         echo "ok."
1102
1103         cp /etc/hosts $MOUNT2/ || rc=3 
1104         $LFS getstripe $MOUNT2/hosts
1105
1106         umount -d $MOUNT2
1107         stop fs2ost -f
1108         stop fs2mds -f
1109         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev
1110         cleanup_nocli || rc=6
1111         return $rc
1112 }
1113 run_test 33a "Mount ost with a large index number"
1114
1115 test_33b() {    # was test_33a
1116         setup
1117
1118         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1119         # Drop lock cancelation reply during umount
1120         #define OBD_FAIL_LDLM_CANCEL             0x304
1121         do_facet client lctl set_param fail_loc=0x80000304
1122         #lctl set_param debug=-1
1123         umount_client $MOUNT
1124         cleanup
1125 }
1126 run_test 33b "Drop cancel during umount"
1127
1128 test_34a() {
1129         setup
1130         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1131         manual_umount_client
1132         rc=$?
1133         do_facet client killall -USR1 multiop
1134         if [ $rc -eq 0 ]; then
1135                 error "umount not fail!"
1136         fi
1137         sleep 1
1138         cleanup
1139 }
1140 run_test 34a "umount with opened file should be fail"
1141
1142
1143 test_34b() {
1144         setup
1145         touch $DIR/$tfile || return 1
1146         stop_mds --force || return 2
1147
1148         manual_umount_client --force
1149         rc=$?
1150         if [ $rc -ne 0 ]; then
1151                 error "mtab after failed umount - rc $rc"
1152         fi
1153
1154         cleanup
1155         return 0        
1156 }
1157 run_test 34b "force umount with failed mds should be normal"
1158
1159 test_34c() {
1160         setup
1161         touch $DIR/$tfile || return 1
1162         stop_ost --force || return 2
1163
1164         manual_umount_client --force
1165         rc=$?
1166         if [ $rc -ne 0 ]; then
1167                 error "mtab after failed umount - rc $rc"
1168         fi
1169
1170         cleanup
1171         return 0        
1172 }
1173 run_test 34c "force umount with failed ost should be normal"
1174
1175 test_35() { # bug 12459
1176         setup
1177
1178         debugsave
1179         lctl set_param debug="ha"
1180
1181         log "Set up a fake failnode for the MDS"
1182         FAKENID="127.0.0.2"
1183         do_facet mds $LCTL conf_param ${FSNAME}-MDT0000.failover.node=$FAKENID || return 4
1184
1185         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1186         sleep 10
1187
1188         MSG="conf-sanity.sh test_35 `date +%F%kh%Mm%Ss`"
1189         $LCTL clear
1190         log "$MSG"
1191         log "Stopping the MDT:"
1192         stop_mds || return 5
1193
1194         df $MOUNT > /dev/null 2>&1 &
1195         DFPID=$!
1196         log "Restarting the MDT:"
1197         start_mds || return 6
1198         log "Wait for df ($DFPID) ... "
1199         wait $DFPID
1200         log "done"
1201         debugrestore
1202
1203         # retrieve from the log the first server that the client tried to
1204         # contact after the connection loss
1205         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1206         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1207                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1208                                 if (start) {
1209                                         if (\\\$NF ~ /$FAKENID/)
1210                                                 print \\\$NF;
1211                                         else
1212                                                 print 0;
1213                                         exit;
1214                                 }
1215                        }" $TMP/lustre-log-$TESTNAME.log`
1216         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1217         cleanup
1218 }
1219 run_test 35 "Reconnect to the last active server first"
1220
1221 test_36() { # 12743
1222         local rc
1223         local FSNAME2=test1234
1224         local fs3ost_HOST=$ost_HOST
1225
1226         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1227         rc=0
1228
1229         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1230                 do_facet mds [ -b "$MDSDEV" ] && \
1231                 skip "mixed loopback and real device not working" && return
1232         fi
1233         [ $OSTCOUNT -lt 2 ] && skip "skipping test for single OST" && return
1234
1235         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1236                 { skip "remote OST" && return 0; }
1237
1238         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1239         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1240         local fs3ostdev=${fs3ost_DEV:-$(ostdevname 2)_2}
1241         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1242         # XXX after we support non 4K disk blocksize, change following --mkfsoptions with
1243         # other argument
1244         add fs2ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1245         add fs3ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs3ostdev || exit 10
1246
1247         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1248         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1249         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1250         mkdir -p $MOUNT2
1251         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1252
1253         sleep 5 # until 11778 fixed
1254
1255         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1256
1257         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1258         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
1259         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
1260         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1261         DFTOTAL=`echo $STRING | cut -d, -f1`
1262         DFUSED=`echo $STRING  | cut -d, -f2`
1263         DFAVAIL=`echo $STRING | cut -d, -f3`
1264         DFFREE=$(($DFTOTAL - $DFUSED))
1265
1266         ALLOWANCE=$((64 * $OSTCOUNT))
1267
1268         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||  
1269            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1270                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1271                 rc=1
1272         fi
1273         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] || 
1274            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1275                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1276                 rc=2
1277         fi
1278         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] || 
1279            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1280                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1281                 rc=3
1282        fi
1283
1284         umount -d $MOUNT2
1285         stop fs3ost -f || return 200
1286         stop fs2ost -f || return 201
1287         stop fs2mds -f || return 202
1288         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev $fs3ostdev
1289         unload_modules || return 203
1290         return $rc
1291 }
1292 run_test 36 "df report consistency on OSTs with different block size"
1293
1294 test_37() {
1295         [ -n "$CLIENTONLY" -o -n "$CLIENTMODSONLY" ] && skip "client only testing" && return 0
1296         LOCAL_MDSDEV="$TMP/mdt.img"
1297         SYM_MDSDEV="$TMP/sym_mdt.img"
1298
1299         echo "MDS :     $LOCAL_MDSDEV"
1300         echo "SYMLINK : $SYM_MDSDEV"
1301         rm -f $LOCAL_MDSDEV
1302
1303         touch $LOCAL_MDSDEV
1304         mkfs.lustre --reformat --fsname=lustre --mdt --mgs --device-size=9000 $LOCAL_MDSDEV ||
1305                 error "mkfs.lustre $LOCAL_MDSDEV failed"
1306         ln -s $LOCAL_MDSDEV $SYM_MDSDEV
1307
1308         echo "mount symlink device - $SYM_MDSDEV"
1309
1310         mount_op=`mount -v -t lustre -o loop $SYM_MDSDEV ${MOUNT%/*}/mds 2>&1 | grep "unable to set tunable"`
1311         umount -d ${MOUNT%/*}/mds
1312         rm -f $LOCAL_MDSDEV $SYM_MDSDEV
1313
1314         if [ -n "$mount_op" ]; then
1315                 error "**** FAIL: set tunables failed for symlink device"
1316         fi
1317         return 0
1318 }
1319 run_test 37 "verify set tunables works for symlink device"
1320
1321 test_38() { # bug 14222
1322         setup
1323         # like runtests
1324         COUNT=10
1325         SRC="/etc /bin"
1326         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1327         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1328         mkdir -p $DIR/$tdir
1329         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1330                 error "copying $SRC to $DIR/$tdir"
1331         sync
1332         umount_client $MOUNT
1333         stop_mds
1334         log "rename lov_objid file on MDS"
1335         rm -f $TMP/lov_objid.orig
1336         do_facet mds "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1337         do_facet mds "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1338
1339         do_facet mds "od -Ax -td8 $TMP/lov_objid.orig"
1340         # check create in mds_lov_connect
1341         start_mds
1342         mount_client $MOUNT
1343         for f in $FILES; do
1344                 [ $V ] && log "verifying $DIR/$tdir/$f"
1345                 diff -q $f $DIR/$tdir/$f || ERROR=y
1346         done
1347         do_facet mds "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1348         do_facet mds "od -Ax -td8 $TMP/lov_objid.new"
1349         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
1350         
1351         
1352         # check it's updates in sync
1353         umount_client $MOUNT
1354         stop_mds
1355         
1356         do_facet mds dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1357         do_facet mds "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1358         do_facet mds "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1359
1360         start_mds
1361         mount_client $MOUNT
1362         for f in $FILES; do
1363                 [ $V ] && log "verifying $DIR/$tdir/$f"
1364                 diff -q $f $DIR/$tdir/$f || ERROR=y
1365         done
1366         do_facet mds "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
1367         do_facet mds "od -Ax -td8 $TMP/lov_objid.new1"
1368         umount_client $MOUNT
1369         stop_mds
1370         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
1371         
1372         log "files compared the same"
1373         cleanup
1374 }
1375 run_test 38 "MDS recreates missing lov_objid file from OST data"
1376
1377 test_39() { #bug 14413
1378         PTLDEBUG=+malloc
1379         setup
1380         cleanup
1381         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' && 
1382                 error "memory leak detected" || true
1383 }
1384 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
1385
1386 test_40() { # bug 15759
1387         start_ost
1388         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
1389         do_facet mds "lctl set_param fail_loc=0x80000706"
1390         start_mds
1391         cleanup
1392 }
1393 run_test 40 "race during service thread startup"
1394
1395 test_41() { #bug 14134
1396         local rc
1397         start mds $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
1398         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
1399         start mds $MDSDEV $MDS_MOUNT_OPTS -o nomgs
1400         mkdir -p $MOUNT
1401         mount_client $MOUNT || return 1
1402         sleep 5
1403
1404         echo "blah blah" > $MOUNT/$tfile
1405         cat $MOUNT/$tfile
1406
1407         umount_client $MOUNT
1408         stop ost1 -f || return 201
1409         stop mds -f || return 202
1410         stop mds -f || return 203
1411         unload_modules || return 204
1412         return $rc
1413 }
1414 run_test 41 "mount mds with --nosvc and --nomgs"
1415
1416 test_42() { #bug 14693
1417         setup
1418         check_mount || return 2
1419         do_facet client lctl conf_param lustre.llite.some_wrong_param=10
1420         umount_client $MOUNT
1421         mount_client $MOUNT || return 1
1422         cleanup
1423         return 0
1424 }
1425 run_test 42 "invalid config param should not prevent client from mounting"
1426
1427 test_43() { #bug 15993
1428         setup
1429         VERSION_1_8=$(do_facet mds $LCTL get_param version | grep ^lustre.*1\.[78])
1430         if [ -z "$VERSION_1_8" ]; then
1431                 skip "skipping test for non 1.8 MDS"
1432                 cleanup
1433                 return 0
1434         fi
1435
1436         check_mount || return 2
1437         testfile=$DIR/$tfile
1438         lma="this-should-be-removed-after-remount-and-accessed"
1439         touch $testfile
1440         echo "set/get trusted.lma"
1441 #define OBD_FAIL_MDS_ALLOW_COMMON_EA_SETTING    0x13f
1442         do_facet mds "lctl set_param fail_loc=0x13f"
1443         lctl set_param fail_loc=0x13f
1444         setfattr -n trusted.lma -v $lma $testfile || error "create common EA"
1445         do_facet mds "lctl set_param fail_loc=0"
1446         lctl set_param fail_loc=0
1447         ATTR=$(getfattr -n trusted.lma $testfile 2> /dev/null | grep trusted.lma)
1448         [ "$ATTR" = "trusted.lma=\"$lma\"" ] || error "check common EA"
1449         umount_client $MOUNT
1450         stop_mds
1451         sleep 5
1452         start_mds
1453         mount_client $MOUNT
1454         check_mount || return 3
1455 #define OBD_FAIL_MDS_REMOVE_COMMON_EA    0x13e
1456         do_facet mds "lctl set_param fail_loc=0x13e"
1457         stat $testfile
1458         do_facet mds "lctl set_param fail_loc=0"
1459         getfattr -d -m trusted $testfile 2> /dev/null | \
1460             grep "trusted.lma" && error "common EA not removed" || true
1461         cleanup
1462         return 0
1463 }
1464 run_test 43 "remove common EA if it exists"
1465
1466 test_44() { # 16317
1467         setup
1468         check_mount || return 2
1469         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
1470         STATS_FOUND=no
1471         UUIDS=$(do_facet mds "$LCTL get_param mds.${FSNAME}*.exports.*.uuid")
1472         for VAL in $UUIDS; do
1473                 NID=$(echo $VAL | cut -d= -f1)
1474                 CLUUID=$(echo $VAL | cut -d= -f2)
1475                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
1476         done
1477         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
1478         cleanup
1479         return 0
1480 }
1481 run_test 44 "mounted client proc entry exists"
1482
1483 test_45() { #17310
1484         setup
1485         check_mount || return 2
1486         stop_mds
1487         df -h $MOUNT &
1488         log "sleep 60 sec"
1489         sleep 60
1490 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
1491         do_facet client "lctl set_param fail_loc=0x50f"
1492         log "sleep 10 sec"
1493         sleep 10
1494         manual_umount_client --force || return 3
1495         do_facet client "lctl set_param fail_loc=0x0"
1496         start_mds
1497         mount_client $MOUNT || return 4
1498         cleanup
1499         return 0
1500 }
1501 run_test 45 "long unlink handling in ptlrpcd"
1502
1503 test_46a() {
1504         OSTCOUNT=6
1505         reformat
1506         start_mds || return 1
1507         #first client should see only one ost
1508         start_ost || return 2
1509         #start_client
1510         mount_client $MOUNT || return 3
1511         
1512         start_ost2 || return 4
1513         start ost3 `ostdevname 3` $OST_MOUNT_OPTS || return 5
1514         start ost4 `ostdevname 4` $OST_MOUNT_OPTS || return 6
1515         start ost5 `ostdevname 5` $OST_MOUNT_OPTS || return 7
1516         # wait until ost2-5 is sync
1517         # ping_interval + 1
1518         sleep $((TIMEOUT / 4 + 1))
1519         #second client see both ost's
1520
1521         mount_client $MOUNT2 || return 8
1522         $LFS setstripe $MOUNT2 -c -1 || return 9
1523         $LFS getstripe $MOUNT2 || return 10
1524
1525         echo "ok" > $MOUNT2/widestripe
1526         $LFS getstripe $MOUNT2/widestripe || return 11
1527         # fill acl buffer for avoid expand lsm to them
1528         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do  
1529             setfacl -m $acl $MOUNT2/widestripe
1530         done
1531
1532         # will be deadlock
1533         stat $MOUNT/widestripe || return 12
1534
1535         umount_client $MOUNT2 || return 13
1536         umount_client $MOUNT || return 14
1537         stop ost5 -f || return 20
1538         stop ost4 -f || return 21
1539         stop ost3 -f || return 22
1540         stop_ost2 || return 23
1541         stop_ost || return 24
1542         stop_mds || return 25
1543 }
1544 run_test 46a "handle ost additional - wide striped file"
1545
1546 test_47() { #17674
1547         reformat
1548         setup_noconfig
1549         check_mount || return 2
1550         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
1551
1552         local lru_size=[]
1553         local count=0
1554         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1555             lrs=$(echo $ns | sed 's/.*lru_size=//')
1556             lru_size[count]=$lrs
1557             let count=count+1
1558         done
1559         
1560         facet_failover ost1
1561         facet_failover mds
1562         df -h $MOUNT || return 3
1563
1564         count=0
1565         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1566             lrs=$(echo $ns | sed 's/.*lru_size=//')
1567             if ! test "$lrs" -eq "${lru_size[count]}"; then
1568                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
1569                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
1570             fi
1571             let count=count+1
1572         done
1573         
1574         cleanup
1575         return 0
1576 }
1577 run_test 47 "server restart does not make client loss lru_resize settings"
1578
1579 cleanup_48() {
1580         trap 0
1581
1582         # reformat after this test is needed - if test will failed
1583         # we will have unkillable file at FS
1584         reformat_and_config
1585 }
1586
1587 test_48() { # bug 17636
1588         reformat
1589         setup_noconfig
1590         check_mount || return 2
1591
1592         $LFS setstripe $MOUNT -c -1 || return 9
1593         $LFS getstripe $MOUNT || return 10
1594
1595         echo "ok" > $MOUNT/widestripe
1596         $LFS getstripe $MOUNT/widestripe || return 11
1597
1598         trap cleanup_48 EXIT ERR
1599
1600         # fill acl buffer for avoid expand lsm to them
1601         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
1602             setfacl -m $acl $MOUNT/widestripe
1603         done
1604
1605         stat $MOUNT/widestripe || return 12
1606         
1607         cleanup_48
1608         return 0
1609 }
1610 run_test 48 "too many acls on file"
1611
1612 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
1613 test_49() { # bug 17710
1614         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
1615         local OLD_OST_MKFS_OPTS=$OST_MKFS_OPTS
1616         local LOCAL_TIMEOUT=20
1617
1618         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$LOCAL_TIMEOUT $MKFSOPT $OSTOPT"
1619
1620         reformat
1621         start_mds
1622         start_ost
1623         mount_client $MOUNT
1624         check_mount || return 1
1625
1626         echo "check ldlm_timout..."
1627         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1628         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1629         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1630
1631         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1632                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1633         fi
1634
1635         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
1636                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1637         fi
1638
1639         umount_client $MOUNT
1640         stop_ost || return 2
1641         stop_mds || return 3
1642
1643         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$((LOCAL_TIMEOUT - 1)) $MKFSOPT $OSTOPT"
1644         
1645         reformat
1646         start_mds || return 4
1647         start_ost || return 5
1648         mount_client $MOUNT || return 6
1649         check_mount || return 7
1650
1651         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1652         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1653         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1654
1655         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1656                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1657         fi
1658         
1659         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
1660                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1661         fi
1662                 
1663         cleanup || return $?
1664
1665         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
1666         OST_MKFS_OPTS=$OLD_OST_MKFS_OPTS
1667 }
1668 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
1669
1670 lazystatfs() {
1671         # Test both statfs and lfs df and fail if either one fails
1672         multiop_bg_pause $1 f_
1673         RC1=$?
1674         PID=$!
1675         killall -USR1 multiop
1676         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
1677         wait $PID || { RC1=$?; log "multiop return error "; }
1678
1679         $LFS df &
1680         PID=$!
1681         sleep 5
1682         kill -s 0 $PID
1683         RC2=$?
1684         if [ $RC2 -eq 0 ]; then
1685             kill -s 9 $PID
1686             log "lazystatfs df failed"
1687         fi
1688
1689         RC=0
1690         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
1691         return $RC
1692 }
1693
1694 test_50a() {
1695         setup
1696         lctl set_param llite.$FSNAME-*.lazystatfs=1
1697         touch $DIR/$tfile
1698
1699         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
1700
1701         cleanup || return $?
1702 }
1703 run_test 50a "lazystatfs all servers available =========================="
1704
1705 test_50b() {
1706         setup
1707         lctl set_param llite.$FSNAME-*.lazystatfs=1
1708         touch $DIR/$tfile
1709
1710         # Wait for client to detect down OST
1711         stop_ost || error "Unable to stop OST1"
1712         CONN_PROC="osc.$FSNAME-OST0000-osc.ost_server_uuid"
1713         CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1714         while [ ${CONN_STATE} = "FULL" ]; do
1715                 sleep 1
1716                 CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1717         done
1718         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
1719
1720         umount_client $MOUNT || error "Unable to unmount client"
1721         stop_mds || error "Unable to stop MDS"
1722 }
1723 run_test 50b "lazystatfs all servers down =========================="
1724
1725 test_50c() {
1726         start_mds || error "Unable to start MDS"
1727         start_ost || error "Unable to start OST1"
1728         start_ost2 || error "Unable to start OST2"
1729         mount_client $MOUNT || error "Unable to mount client"
1730         lctl set_param llite.$FSNAME-*.lazystatfs=1
1731         touch $DIR/$tfile
1732
1733         # Wait for client to detect down OST
1734         stop_ost || error "Unable to stop OST1"
1735         CONN_PROC="osc.$FSNAME-OST0000-osc.ost_server_uuid"
1736         CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1737         while [ ${CONN_STATE} = "FULL" ]; do
1738                 sleep 1
1739                 CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1740         done
1741         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1742
1743         umount_client $MOUNT || error "Unable to unmount client"
1744         stop_ost2 || error "Unable to stop OST2"
1745         stop_mds || error "Unable to stop MDS"
1746 }
1747 run_test 50c "lazystatfs one server down =========================="
1748
1749 test_50d() {
1750         start_mds || error "Unable to start MDS"
1751         start_ost || error "Unable to start OST1"
1752         start_ost2 || error "Unable to start OST2"
1753         mount_client $MOUNT || error "Unable to mount client"
1754         lctl set_param llite.$FSNAME-*.lazystatfs=1
1755         touch $DIR/$tfile
1756
1757         # Issue the statfs during the window where the client still
1758         # belives the OST to be available but it is in fact down.
1759         # No failure just a statfs which hangs for a timeout interval.
1760         stop_ost || error "Unable to stop OST1"
1761         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1762
1763         umount_client $MOUNT || error "Unable to unmount client"
1764         stop_ost2 || error "Unable to stop OST2"
1765         stop_mds || error "Unable to stop MDS"
1766 }
1767 run_test 50d "lazystatfs client/server conn race =========================="
1768
1769 test_50e() {
1770         local RC1
1771         local pid
1772         CONN_PROC="osc.$FSNAME-OST0000-osc.ost_server_uuid"
1773         
1774         reformat_and_config
1775         start_mds || return 1
1776         #first client should see only one ost
1777         start_ost || return 2
1778         CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1779         while [ ${CONN_STATE} != "FULL" ]; do
1780                 sleep 1
1781                 CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1782         done
1783
1784         lctl set_param llite.$FSNAME-*.lazystatfs=0
1785
1786         # Wait for client to detect down OST
1787         stop_ost || error "Unable to stop OST1"
1788
1789         CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1790         while [ ${CONN_STATE} = "FULL" ]; do
1791                 sleep 1
1792                 CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1793         done
1794         
1795         mount_client $MOUNT || error "Unable to mount client"
1796         
1797         multiop_bg_pause $MOUNT _f
1798         RC1=$?
1799         pid=$!
1800
1801         if [ $RC1 -ne 0 ]; then
1802                 log "lazystatfs multiop failed $RC1"
1803         else
1804             kill -USR1 $pid
1805             sleep $(( $TIMEOUT+1 ))
1806             kill -0 $pid
1807             [ $? -ne 0 ] && error "process isn't sleep"
1808             start_ost || error "Unable to start OST1"               
1809             wait $pid || error "statfs failed"
1810         fi
1811
1812         umount_client $MOUNT || error "Unable to unmount client"
1813         stop_ost || error "Unable to stop OST1" 
1814         stop_mds || error "Unable to stop MDS"
1815 }
1816 run_test 50e "normal statfs all servers down =========================="
1817
1818 test_50f() {
1819         local RC1
1820         local pid
1821         CONN_PROC="osc.$FSNAME-OST0001-osc.ost_server_uuid"
1822         
1823         start_mds || error "Unable to start mds"
1824         #first client should see only one ost
1825         start_ost || error "Unable to start OST1"
1826         start_ost2 || error "Unable to start OST2"
1827         CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1828         while [ ${CONN_STATE} != "FULL" ]; do
1829                 sleep 1
1830                 CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1831         done
1832
1833         lctl set_param llite.$FSNAME-*.lazystatfs=0
1834
1835         # Wait for client to detect down OST
1836         stop_ost2 || error "Unable to stop OST2"
1837
1838         CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1839         while [ ${CONN_STATE} = "FULL" ]; do
1840                 sleep 1
1841                 CONN_STATE=`lctl get_param -n $CONN_PROC | cut -f2`
1842         done
1843         
1844         mount_client $MOUNT || error "Unable to mount client"
1845         
1846         multiop_bg_pause $MOUNT _f
1847         RC1=$?
1848         pid=$!
1849
1850         if [ $RC1 -ne 0 ]; then
1851                 log "lazystatfs multiop failed $RC1"
1852         else
1853             kill -USR1 $pid
1854             sleep $(( $TIMEOUT+1 ))
1855             kill -0 $pid
1856             [ $? -ne 0 ] && error "process isn't sleep"
1857             start_ost2 || error "Unable to start OST1"              
1858             wait $pid || error "statfs failed"
1859         fi
1860
1861         umount_client $MOUNT || error "Unable to unmount client"
1862         stop_ost || error "Unable to stop OST1" 
1863         stop_mds || error "Unable to stop MDS"
1864 }
1865 run_test 50f "normal statfs one server in down =========================="
1866
1867 equals_msg `basename $0`: test complete
1868 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true