Whamcloud - gitweb
b=15253 add conf_param -d to remove permanent settings
[fs/lustre-release.git] / lustre / tests / conf-sanity.sh
1 #!/bin/bash
2 # -*- mode: Bash; tab-width: 4; indent-tabs-mode: t; -*-
3 # vim:autoindent:shiftwidth=4:tabstop=4:
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:
15 #               15977
16 ALWAYS_EXCEPT="$CONF_SANITY_EXCEPT"
17 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
18
19 SRCDIR=`dirname $0`
20 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
21
22 PTLDEBUG=${PTLDEBUG:--1}
23 SAVE_PWD=$PWD
24 LUSTRE=${LUSTRE:-`dirname $0`/..}
25 RLUSTRE=${RLUSTRE:-$LUSTRE}
26
27 . $LUSTRE/tests/test-framework.sh
28 init_test_env $@
29
30 # use small MDS + OST size to speed formatting time
31 # do not use too small MDSSIZE/OSTSIZE, which affect the default jouranl size
32 MDSSIZE=200000
33 OSTSIZE=200000
34 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
35
36 # STORED_MDSSIZE is used in test_18
37 if [ -n "$MDSSIZE" ]; then
38     STORED_MDSSIZE=$MDSSIZE
39 fi
40
41 init_logging
42
43 require_dsh_mds || exit 0
44 require_dsh_ost || exit 0
45
46 [ "$SLOW" = "no" ] && EXCEPT_SLOW="0 1 2 3 6 7 15 18 24b 25 30 31 32 33 34a 45"
47
48 assert_DIR
49
50 reformat() {
51         formatall
52 }
53
54 writeconf() {
55         local facet=$SINGLEMDS
56         local dev=${facet}_dev
57         shift
58         stop ${facet} -f
59         rm -f ${facet}active
60         # who knows if/where $TUNEFS is installed?  Better reformat if it fails...
61         do_facet ${facet} "$TUNEFS --writeconf ${!dev}" ||
62                 echo "tunefs failed, reformatting instead" && reformat_and_config
63
64 }
65
66 gen_config() {
67         # The MGS must be started before the OSTs for a new fs, so start
68         # and stop to generate the startup logs.
69         start_mds
70         start_ost
71         wait_osc_import_state mds ost FULL
72         stop_ost
73         stop_mds
74 }
75
76 reformat_and_config() {
77         reformat
78         if ! combined_mgs_mds ; then
79                 start_mgs
80         fi
81         gen_config
82 }
83
84 start_mgs () {
85         echo "start mgs"
86         start mgs $MGSDEV $mgs_MOUNT_OPTS
87 }
88
89 start_mds() {
90         local facet=$SINGLEMDS
91         # we can not use MDSDEV1 here because SINGLEMDS could be set not to mds1 only
92         local num=$(echo $facet | tr -d "mds")
93         local dev=$(mdsdevname $num)
94         echo "start mds service on `facet_active_host $facet`"
95         start $facet ${dev} $MDS_MOUNT_OPTS || return 94
96 }
97
98 stop_mds() {
99         echo "stop mds service on `facet_active_host $SINGLEMDS`"
100         # These tests all use non-failover stop
101         stop $SINGLEMDS -f  || return 97
102 }
103
104 start_ost() {
105         echo "start ost1 service on `facet_active_host ost1`"
106         start ost1 `ostdevname 1` $OST_MOUNT_OPTS || return 95
107 }
108
109 stop_ost() {
110         echo "stop ost1 service on `facet_active_host ost1`"
111         # These tests all use non-failover stop
112         stop ost1 -f  || return 98
113 }
114
115 start_ost2() {
116         echo "start ost2 service on `facet_active_host ost2`"
117         start ost2 `ostdevname 2` $OST_MOUNT_OPTS || return 92
118 }
119
120 stop_ost2() {
121         echo "stop ost2 service on `facet_active_host ost2`"
122         # These tests all use non-failover stop
123         stop ost2 -f  || return 93
124 }
125
126 mount_client() {
127         local MOUNTPATH=$1
128         echo "mount $FSNAME on ${MOUNTPATH}....."
129         zconf_mount `hostname` $MOUNTPATH  || return 96
130 }
131
132 remount_client() {
133         local SAVEMOUNTOPT=$MOUNTOPT
134         MOUNTOPT="remount,$1"
135         local MOUNTPATH=$2
136         echo "remount '$1' lustre on ${MOUNTPATH}....."
137         zconf_mount `hostname`  $MOUNTPATH  || return 96
138         MOUNTOPT=$SAVEMOUNTOPT
139 }
140
141 umount_client() {
142         local MOUNTPATH=$1
143         echo "umount lustre on ${MOUNTPATH}....."
144         zconf_umount `hostname` $MOUNTPATH || return 97
145 }
146
147 manual_umount_client(){
148         local rc
149         local FORCE=$1
150         echo "manual umount lustre on ${MOUNT}...."
151         do_facet client "umount -d ${FORCE} $MOUNT"
152         rc=$?
153         return $rc
154 }
155
156 setup() {
157         start_ost || error "OST start failed"
158         start_mds || error "MDT start failed"
159         mount_client $MOUNT || error "client start failed"
160 }
161
162 setup_noconfig() {
163         if ! combined_mgs_mds ; then
164                 start_mgs
165         fi
166
167         start_mds
168         start_ost
169         mount_client $MOUNT
170 }
171
172 cleanup_nocli() {
173         stop_mds || return 201
174         stop_ost || return 202
175         unload_modules || return 203
176 }
177
178 cleanup() {
179         umount_client $MOUNT || return 200
180         cleanup_nocli || return $?
181 }
182
183 check_mount() {
184         do_facet client "cp /etc/passwd $DIR/a" || return 71
185         do_facet client "rm $DIR/a" || return 72
186         # make sure lustre is actually mounted (touch will block,
187         # but grep won't, so do it after)
188         do_facet client "grep $MOUNT' ' /proc/mounts > /dev/null" || return 73
189         echo "setup single mount lustre success"
190 }
191
192 check_mount2() {
193         do_facet client "touch $DIR/a" || return 71
194         do_facet client "rm $DIR/a" || return 72
195         do_facet client "touch $DIR2/a" || return 73
196         do_facet client "rm $DIR2/a" || return 74
197         echo "setup double mount lustre success"
198 }
199
200 build_test_filter
201
202 if [ "$ONLY" == "setup" ]; then
203         setup
204         exit
205 fi
206
207 if [ "$ONLY" == "cleanup" ]; then
208         cleanup
209         exit
210 fi
211
212 init_gss
213
214 #create single point mountpoint
215
216 reformat_and_config
217
218 test_0() {
219         setup
220         check_mount || return 41
221         cleanup || return $?
222 }
223 run_test 0 "single mount setup"
224
225 test_1() {
226         start_ost
227         echo "start ost second time..."
228         start_ost && error "2nd OST start should fail"
229         start_mds || error "MDT start failed"
230         mount_client $MOUNT || error "client start failed"
231         check_mount || return 42
232         cleanup || return $?
233 }
234 run_test 1 "start up ost twice (should return errors)"
235
236 test_2() {
237         start_ost
238         start_mds
239         echo "start mds second time.."
240         start_mds && error "2nd MDT start should fail"
241         mount_client $MOUNT
242         check_mount || return 43
243         cleanup || return $?
244 }
245 run_test 2 "start up mds twice (should return err)"
246
247 test_3() {
248         setup
249         #mount.lustre returns an error if already in mtab
250         mount_client $MOUNT && error "2nd client mount should fail"
251         check_mount || return 44
252         cleanup || return $?
253 }
254 run_test 3 "mount client twice (should return err)"
255
256 test_4() {
257         setup
258         touch $DIR/$tfile || return 85
259         stop_ost -f
260         cleanup
261         eno=$?
262         # ok for ost to fail shutdown
263         if [ 202 -ne $eno ]; then
264                 return $eno;
265         fi
266         return 0
267 }
268 run_test 4 "force cleanup ost, then cleanup"
269
270 test_5a() {     # was test_5
271         setup
272         touch $DIR/$tfile || return 1
273         fuser -m -v $MOUNT && echo "$MOUNT is in use by user space process."
274
275         stop_mds -f || return 2
276
277         # cleanup may return an error from the failed
278         # disconnects; for now I'll consider this successful
279         # if all the modules have unloaded.
280         umount -d $MOUNT &
281         UMOUNT_PID=$!
282         sleep 6
283         echo "killing umount"
284         kill -TERM $UMOUNT_PID
285         echo "waiting for umount to finish"
286         wait $UMOUNT_PID
287         if grep " $MOUNT " /proc/mounts; then
288                 echo "test 5: /proc/mounts after failed umount"
289                 umount $MOUNT &
290                 UMOUNT_PID=$!
291                 sleep 2
292                 echo "killing umount"
293                 kill -TERM $UMOUNT_PID
294                 echo "waiting for umount to finish"
295                 wait $UMOUNT_PID
296                 grep " $MOUNT " /proc/mounts && echo "test 5: /proc/mounts after second umount" && return 11
297         fi
298
299         manual_umount_client
300         # stop_mds is a no-op here, and should not fail
301         cleanup_nocli || return $?
302         # df may have lingering entry
303         manual_umount_client
304         # mtab may have lingering entry
305         local WAIT=0
306         local MAX_WAIT=20
307         local sleep=1
308         while [ "$WAIT" -ne "$MAX_WAIT" ]; do
309                 sleep $sleep
310                 grep -q $MOUNT" " /etc/mtab || break
311                 echo "Waiting /etc/mtab updated ... "
312                 WAIT=$(( WAIT + sleep))
313         done
314         [ "$WAIT" -eq "$MAX_WAIT" ] && error "/etc/mtab is not updated in $WAIT secs"
315         echo "/etc/mtab updated in $WAIT secs"
316 }
317 run_test 5a "force cleanup mds, then cleanup"
318
319 test_5b() {
320         start_ost
321         [ -d $MOUNT ] || mkdir -p $MOUNT
322         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab before mount" && return 10
323         mount_client $MOUNT && return 1
324         grep " $MOUNT " /etc/mtab && echo "test 5b: mtab after failed mount" && return 11
325         umount_client $MOUNT
326         # stop_mds is a no-op here, and should not fail
327         cleanup_nocli || return $?
328         return 0
329 }
330 run_test 5b "mds down, cleanup after failed mount (bug 2712) (should return errs)"
331
332 test_5c() {
333         start_ost
334         start_mds
335         [ -d $MOUNT ] || mkdir -p $MOUNT
336         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab before mount" && return 10
337         local oldfs="${FSNAME}"
338         FSNAME="wrong.${FSNAME}"
339         mount_client $MOUNT || :
340         FSNAME=${oldfs}
341         grep " $MOUNT " /etc/mtab && echo "test 5c: mtab after failed mount" && return 11
342         umount_client $MOUNT
343         cleanup_nocli  || return $?
344 }
345 run_test 5c "cleanup after failed mount (bug 2712) (should return errs)"
346
347 test_5d() {
348         start_ost
349         start_mds
350         stop_ost -f
351         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab before mount" && return 10
352         mount_client $MOUNT || return 1
353         cleanup  || return $?
354         grep " $MOUNT " /etc/mtab && echo "test 5d: mtab after unmount" && return 11
355         return 0
356 }
357 run_test 5d "mount with ost down"
358
359 test_5e() {
360         start_ost
361         start_mds
362
363 #define OBD_FAIL_PTLRPC_DELAY_SEND       0x506
364         do_facet client "lctl set_param fail_loc=0x80000506"
365         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab before mount" && return 10
366         mount_client $MOUNT || echo "mount failed (not fatal)"
367         cleanup  || return $?
368         grep " $MOUNT " /etc/mtab && echo "test 5e: mtab after unmount" && return 11
369         return 0
370 }
371 run_test 5e "delayed connect, don't crash (bug 10268)"
372
373 test_6() {
374         setup
375         manual_umount_client
376         mount_client ${MOUNT} || return 87
377         touch $DIR/a || return 86
378         cleanup  || return $?
379 }
380 run_test 6 "manual umount, then mount again"
381
382 test_7() {
383         setup
384         manual_umount_client
385         cleanup_nocli || return $?
386 }
387 run_test 7 "manual umount, then cleanup"
388
389 test_8() {
390         setup
391         mount_client $MOUNT2
392         check_mount2 || return 45
393         umount_client $MOUNT2
394         cleanup  || return $?
395 }
396 run_test 8 "double mount setup"
397
398 test_9() {
399         start_ost
400
401         do_facet ost1 lctl set_param debug=\'inode trace\' || return 1
402         do_facet ost1 lctl set_param subsystem_debug=\'mds ost\' || return 1
403
404         CHECK_PTLDEBUG="`do_facet ost1 lctl get_param -n debug`"
405         if [ "$CHECK_PTLDEBUG" ] && { \
406            [ "$CHECK_PTLDEBUG" = "trace inode warning error emerg console" ] ||
407            [ "$CHECK_PTLDEBUG" = "trace inode" ]; }; then
408            echo "lnet.debug success"
409         else
410            echo "lnet.debug: want 'trace inode', have '$CHECK_PTLDEBUG'"
411            return 1
412         fi
413         CHECK_SUBSYS="`do_facet ost1 lctl get_param -n subsystem_debug`"
414         if [ "$CHECK_SUBSYS" ] && [ "$CHECK_SUBSYS" = "mds ost" ]; then
415            echo "lnet.subsystem_debug success"
416         else
417            echo "lnet.subsystem_debug: want 'mds ost', have '$CHECK_SUBSYS'"
418            return 1
419         fi
420         stop_ost || return $?
421 }
422
423 run_test 9 "test ptldebug and subsystem for mkfs"
424
425 # LOGS/PENDING do not exist anymore since CMD3
426 test_16() {
427         local TMPMTPT="${TMP}/conf16"
428         local dev=${SINGLEMDS}_dev
429         local MDSDEV=${!dev}
430         if [ ! -e "$MDSDEV" ]; then
431             log "no $MDSDEV existing, so mount Lustre to create one"
432             setup
433             check_mount || return 41
434             cleanup || return $?
435         fi
436
437         [ -f "$MDSDEV" ] && LOOPOPT="-o loop"
438
439         log "change the mode of $MDSDEV/OBJECTS to 555"
440         do_facet $SINGLEMDS "mkdir -p $TMPMTPT &&
441                       mount $LOOPOPT -t $FSTYPE $MDSDEV $TMPMTPT &&
442                       chmod 555 $TMPMTPT/OBJECTS &&
443                       umount $TMPMTPT" || return $?
444
445         log "mount Lustre to change the mode of OBJECTS, then umount Lustre"
446         setup
447         check_mount || return 41
448         cleanup || return $?
449
450         log "read the mode of OBJECTS and check if they has been changed properly"
451         EXPECTEDOBJECTSMODE=`do_facet $SINGLEMDS "$DEBUGFS -R 'stat OBJECTS' $MDSDEV 2> /dev/null" | grep 'Mode: ' | sed -e "s/.*Mode: *//" -e "s/ *Flags:.*//"`
452
453         if [ "$EXPECTEDOBJECTSMODE" = "0777" ]; then
454                 log "Success:Lustre change the mode of OBJECTS correctly"
455         else
456                 error "Lustre does not change mode of OBJECTS properly"
457         fi
458 }
459 run_test 16 "verify that lustre will correct the mode of OBJECTS"
460
461 test_17() {
462         local dev=${SINGLEMDS}_dev
463         local MDSDEV=${!dev}
464
465         if [ ! -e "$MDSDEV" ]; then
466             echo "no $MDSDEV existing, so mount Lustre to create one"
467             setup
468             check_mount || return 41
469             cleanup || return $?
470         fi
471
472         echo "Remove mds config log"
473         do_facet $SINGLEMDS "$DEBUGFS -w -R 'unlink CONFIGS/$FSNAME-MDT0000' $MDSDEV || return \$?" || return $?
474
475         start_ost
476         start_mds && return 42
477         reformat_and_config
478 }
479 run_test 17 "Verify failed mds_postsetup won't fail assertion (2936) (should return errs)"
480
481 test_18() {
482         [ "$FSTYPE" != "ldiskfs" ] && skip "not needed for FSTYPE=$FSTYPE" && return
483
484         local dev=${SINGLEMDS}_dev
485         local MDSDEV=${!dev}
486
487         local MIN=2000000
488
489         local OK=
490         # check if current MDSSIZE is large enough
491         [ $MDSSIZE -ge $MIN ] && OK=1 && myMDSSIZE=$MDSSIZE && \
492                 log "use MDSSIZE=$MDSSIZE"
493
494         # check if the global config has a large enough MDSSIZE
495         [ -z "$OK" -a ! -z "$STORED_MDSSIZE" ] && [ $STORED_MDSSIZE -ge $MIN ] && \
496                 OK=1 && myMDSSIZE=$STORED_MDSSIZE && \
497                 log "use STORED_MDSSIZE=$STORED_MDSSIZE"
498
499         # check if the block device is large enough
500         [ -z "$OK" -a -b $MDSDEV ] && \
501                 [ "$(dd if=$MDSDEV of=/dev/null bs=1k count=1 skip=$MIN 2>&1 |
502                      awk '($3 == "in") { print $1 }')" = "1+0" ] && OK=1 && \
503                 myMDSSIZE=$MIN && log "use device $MDSDEV with MIN=$MIN"
504
505         # check if a loopback device has enough space for fs metadata (5%)
506         [ -z "$OK" ] && [ -f $MDSDEV -o ! -e $MDSDEV ] &&
507                 SPACE=$(df -P $(dirname $MDSDEV) |
508                         awk '($1 != "Filesystem") {print $4}') &&
509                 [ $SPACE -gt $((MIN / 20)) ] && OK=1 && myMDSSIZE=$MIN && \
510                         log "use file $MDSDEV with MIN=$MIN"
511
512         [ -z "$OK" ] && skip_env "$MDSDEV too small for ${MIN}kB MDS" && return
513
514
515         echo "mount mds with large journal..."
516         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
517
518         MDS_MKFS_OPTS="--mgs --mdt --fsname=$FSNAME --device-size=$myMDSSIZE --param sys.timeout=$TIMEOUT $MDSOPT"
519
520         reformat_and_config
521         echo "mount lustre system..."
522         setup
523         check_mount || return 41
524
525         echo "check journal size..."
526         local FOUNDSIZE=`do_facet mds "$DEBUGFS -c -R 'stat <8>' $MDSDEV" | awk '/Size: / { print $NF; exit;}'`
527         if [ $FOUNDSIZE -gt $((32 * 1024 * 1024)) ]; then
528                 log "Success: mkfs creates large journals. Size: $((FOUNDSIZE >> 20))M"
529         else
530                 error "expected journal size > 32M, found $((FOUNDSIZE >> 20))M"
531         fi
532
533         cleanup || return $?
534
535         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
536         reformat_and_config
537 }
538 run_test 18 "check mkfs creates large journals"
539
540 test_19a() {
541         start_mds || return 1
542         stop_mds -f || return 2
543 }
544 run_test 19a "start/stop MDS without OSTs"
545
546 test_19b() {
547         start_ost || return 1
548         stop_ost -f || return 2
549 }
550 run_test 19b "start/stop OSTs without MDS"
551
552 test_20() {
553         # first format the ost/mdt
554         start_ost
555         start_mds
556         mount_client $MOUNT
557         check_mount || return 43
558         rm -f $DIR/$tfile
559         remount_client ro $MOUNT || return 44
560         touch $DIR/$tfile && echo "$DIR/$tfile created incorrectly" && return 45
561         [ -e $DIR/$tfile ] && echo "$DIR/$tfile exists incorrectly" && return 46
562         remount_client rw $MOUNT || return 47
563         touch $DIR/$tfile
564         [ ! -f $DIR/$tfile ] && echo "$DIR/$tfile missing" && return 48
565         MCNT=`grep -c $MOUNT /etc/mtab`
566         [ "$MCNT" -ne 1 ] && echo "$MOUNT in /etc/mtab $MCNT times" && return 49
567         umount_client $MOUNT
568         stop_mds
569         stop_ost
570 }
571 run_test 20 "remount ro,rw mounts work and doesn't break /etc/mtab"
572
573 test_21a() {
574         start_mds
575         start_ost
576         wait_osc_import_state mds ost FULL
577         stop_ost
578         stop_mds
579 }
580 run_test 21a "start mds before ost, stop ost first"
581
582 test_21b() {
583         start_ost
584         start_mds
585         wait_osc_import_state mds ost FULL
586         stop_mds
587         stop_ost
588 }
589 run_test 21b "start ost before mds, stop mds first"
590
591 test_21c() {
592         start_ost
593         start_mds
594         start_ost2
595         wait_osc_import_state mds ost2 FULL
596         stop_ost
597         stop_ost2
598         stop_mds
599         #writeconf to remove all ost2 traces for subsequent tests
600         writeconf
601 }
602 run_test 21c "start mds between two osts, stop mds last"
603
604 test_22() {
605         start_mds
606
607         echo Client mount with ost in logs, but none running
608         start_ost
609         # wait until mds connected to ost and open client connection
610         wait_osc_import_state mds ost FULL
611         stop_ost
612         mount_client $MOUNT
613         # check_mount will block trying to contact ost
614         mcreate $DIR/$tfile || return 40
615         rm -f $DIR/$tfile || return 42
616         umount_client $MOUNT
617         pass
618
619         echo Client mount with a running ost
620         start_ost
621         if $GSS; then
622                 # if gss enabled, wait full time to let connection from
623                 # mds to ost be established, due to the mismatch between
624                 # initial connect timeout and gss context negotiation timeout.
625                 # This perhaps could be remove after AT landed.
626                 echo "sleep $((TIMEOUT + TIMEOUT + TIMEOUT))s"
627                 sleep $((TIMEOUT + TIMEOUT + TIMEOUT))
628         fi
629         mount_client $MOUNT
630         check_mount || return 41
631         pass
632
633         cleanup
634 }
635 run_test 22 "start a client before osts (should return errs)"
636
637 test_23a() {    # was test_23
638         setup
639         # fail mds
640         stop $SINGLEMDS
641         # force down client so that recovering mds waits for reconnect
642         local running=$(grep -c $MOUNT /proc/mounts) || true
643         if [ $running -ne 0 ]; then
644                 echo "Stopping client $MOUNT (opts: -f)"
645                 umount -f $MOUNT
646         fi
647
648         # enter recovery on mds
649         start_mds
650         # try to start a new client
651         mount_client $MOUNT &
652         sleep 5
653         MOUNT_PID=$(ps -ef | grep "t lustre" | grep -v grep | awk '{print $2}')
654         MOUNT_LUSTRE_PID=`ps -ef | grep mount.lustre | grep -v grep | awk '{print $2}'`
655         echo mount pid is ${MOUNT_PID}, mount.lustre pid is ${MOUNT_LUSTRE_PID}
656         ps --ppid $MOUNT_PID
657         ps --ppid $MOUNT_LUSTRE_PID
658         # FIXME why o why can't I kill these? Manual "ctrl-c" works...
659         kill -TERM $MOUNT_LUSTRE_PID
660         echo "waiting for mount to finish"
661         ps -ef | grep mount
662         # we can not wait $MOUNT_PID because it is not a child of this shell
663         local PID1
664         local PID2
665         local WAIT=0
666         local MAX_WAIT=30
667         local sleep=1
668         while [ "$WAIT" -lt "$MAX_WAIT" ]; do
669                 sleep $sleep
670                 PID1=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_PID)
671                 PID2=$(ps -ef | awk '{print $2}' | grep -w $MOUNT_LUSTRE_PID)
672                 echo PID1=$PID1
673                 echo PID2=$PID2
674                 [ -z "$PID1" -a -z "$PID2" ] && break
675                 echo "waiting for mount to finish ... "
676                 WAIT=$(( WAIT + sleep))
677         done
678         if [ "$WAIT" -eq "$MAX_WAIT" ]; then
679                 error "MOUNT_PID $MOUNT_PID and "\
680                 "MOUNT_LUSTRE_PID $MOUNT_LUSTRE_PID still not killed in $WAIT secs"
681                 ps -ef | grep mount
682         fi
683         stop_mds || error
684         stop_ost || error
685 }
686 run_test 23a "interrupt client during recovery mount delay"
687
688 umount_client $MOUNT
689 cleanup_nocli
690
691 test_23b() {    # was test_23
692         start_ost
693         start_mds
694         # Simulate -EINTR during mount OBD_FAIL_LDLM_CLOSE_THREAD
695         lctl set_param fail_loc=0x80000313
696         mount_client $MOUNT
697         cleanup
698 }
699 run_test 23b "Simulate -EINTR during mount"
700
701 fs2mds_HOST=$mds_HOST
702 fs2ost_HOST=$ost_HOST
703
704 cleanup_24a() {
705         trap 0
706         echo "umount $MOUNT2 ..."
707         umount $MOUNT2 || true
708         echo "stopping fs2mds ..."
709         stop fs2mds -f || true
710         echo "stopping fs2ost ..."
711         stop fs2ost -f || true
712 }
713
714 test_24a() {
715         #set up fs1
716         gen_config
717         #set up fs2
718         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
719         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
720                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
721                 skip_env "mixed loopback and real device not working" && return
722         fi
723
724         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
725         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
726
727         # test 8-char fsname as well
728         local FSNAME2=test1234
729         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --nomgs --mgsnode=$MGSNID --reformat $fs2mdsdev || exit 10
730
731         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2ostdev || exit 10
732
733         setup
734         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
735         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
736         mkdir -p $MOUNT2
737         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
738         # 1 still works
739         check_mount || return 2
740         # files written on 1 should not show up on 2
741         cp /etc/passwd $DIR/$tfile
742         sleep 10
743         [ -e $MOUNT2/$tfile ] && error "File bleed" && return 7
744         # 2 should work
745         sleep 5
746         cp /etc/passwd $MOUNT2/b || return 3
747         rm $MOUNT2/b || return 4
748         # 2 is actually mounted
749         grep $MOUNT2' ' /proc/mounts > /dev/null || return 5
750         # failover
751         facet_failover fs2mds
752         facet_failover fs2ost
753         df
754         umount_client $MOUNT
755         # the MDS must remain up until last MDT
756         stop_mds
757         MDS=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
758         [ -z "$MDS" ] && error "No MDT" && return 8
759         cleanup_24a
760         cleanup_nocli || return 6
761 }
762 run_test 24a "Multiple MDTs on a single node"
763
764 test_24b() {
765         if [ -z "$fs2mds_DEV" ]; then
766                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
767                 skip_env "mixed loopback and real device not working" && return
768         fi
769
770         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
771
772         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME}2 --mgs --reformat $fs2mdsdev || exit 10
773         setup
774         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && return 2
775         cleanup || return 6
776 }
777 run_test 24b "Multiple MGSs on a single node (should return err)"
778
779 test_25() {
780         setup
781         check_mount || return 2
782         local MODULES=$($LCTL modules | awk '{ print $2 }')
783         rmmod $MODULES 2>/dev/null || true
784         cleanup || return 6
785 }
786 run_test 25 "Verify modules are referenced"
787
788 test_26() {
789     load_modules
790     # we need modules before mount for sysctl, so make sure...
791     do_facet $SINGLEMDS "lsmod | grep -q lustre || modprobe lustre"
792 #define OBD_FAIL_MDS_FS_SETUP            0x135
793     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000135"
794     start_mds && echo MDS started && return 1
795     lctl get_param -n devices
796     DEVS=$(lctl get_param -n devices | wc -l)
797     [ $DEVS -gt 0 ] && return 2
798     unload_modules || return 203
799 }
800 run_test 26 "MDT startup failure cleans LOV (should return errs)"
801
802 set_and_check() {
803         local myfacet=$1
804         local TEST=$2
805         local PARAM=$3
806         local ORIG=$(do_facet $myfacet "$TEST")
807         if [ $# -gt 3 ]; then
808             local FINAL=$4
809         else
810             local -i FINAL
811             FINAL=$(($ORIG + 5))
812         fi
813         echo "Setting $PARAM from $ORIG to $FINAL"
814         do_facet $SINGLEMDS "$LCTL conf_param $PARAM='$FINAL'" || error conf_param failed
815
816         wait_update $(facet_host $myfacet) "$TEST" "$FINAL" || error check failed!
817 }
818
819 test_27a() {
820         start_ost || return 1
821         start_mds || return 2
822         echo "Requeue thread should have started: "
823         ps -e | grep ll_cfg_requeue
824         set_and_check ost1 "lctl get_param -n obdfilter.$FSNAME-OST0000.client_cache_seconds" "$FSNAME-OST0000.ost.client_cache_seconds" || return 3
825         cleanup_nocli
826 }
827 run_test 27a "Reacquire MGS lock if OST started first"
828
829 test_27b() {
830         # FIXME. ~grev
831         setup
832         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }')
833
834         facet_failover $SINGLEMDS
835         set_and_check $SINGLEMDS "lctl get_param -n mdt.$device.identity_acquire_expire" "$device.mdt.identity_acquire_expire" || return 3
836         set_and_check client "lctl get_param -n mdc.$device-mdc-*.max_rpcs_in_flight" "$device.mdc.max_rpcs_in_flight" || return 4
837         check_mount
838         cleanup
839 }
840 run_test 27b "Reacquire MGS lock after failover"
841
842 test_28() {
843         setup
844         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
845         PARAM="$FSNAME.llite.max_read_ahead_whole_mb"
846         ORIG=$($TEST)
847         FINAL=$(($ORIG + 1))
848         set_and_check client "$TEST" "$PARAM" $FINAL || return 3
849         FINAL=$(($FINAL + 1))
850         set_and_check client "$TEST" "$PARAM" $FINAL || return 4
851         umount_client $MOUNT || return 200
852         mount_client $MOUNT
853         RESULT=$($TEST)
854         if [ $RESULT -ne $FINAL ]; then
855             echo "New config not seen: wanted $FINAL got $RESULT"
856             return 4
857         else
858             echo "New config success: got $RESULT"
859         fi
860         set_and_check client "$TEST" "$PARAM" $ORIG || return 5
861         cleanup
862 }
863 run_test 28 "permanent parameter setting"
864
865 test_29() {
866         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
867         setup > /dev/null 2>&1
868         start_ost2
869         sleep 10
870
871         local PARAM="$FSNAME-OST0001.osc.active"
872         local PROC_ACT="osc.$FSNAME-OST0001-osc-[^M]*.active"
873         local PROC_UUID="osc.$FSNAME-OST0001-osc-[^M]*.ost_server_uuid"
874
875         ACTV=$(lctl get_param -n $PROC_ACT)
876         DEAC=$((1 - $ACTV))
877         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $DEAC || return 2
878         # also check ost_server_uuid status
879         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV)
880         if [ -z "$RESULT" ]; then
881             echo "Live client not deactivated: $(lctl get_param -n $PROC_UUID)"
882             return 3
883         else
884             echo "Live client success: got $RESULT"
885         fi
886
887         # check MDT too
888         local MPROC="osc.$FSNAME-OST0001-osc-[M]*.active"
889         local MAX=30
890         local WAIT=0
891         while [ 1 ]; do
892             sleep 5
893             RESULT=`do_facet $SINGLEMDS " lctl get_param -n $MPROC"`
894             [ ${PIPESTATUS[0]} = 0 ] || error "Can't read $MPROC"
895             if [ $RESULT -eq $DEAC ]; then
896                 echo "MDT deactivated also after $WAIT sec (got $RESULT)"
897                 break
898             fi
899             WAIT=$((WAIT + 5))
900             if [ $WAIT -eq $MAX ]; then
901                 echo "MDT not deactivated: wanted $DEAC got $RESULT"
902                 return 4
903             fi
904             echo "Waiting $(($MAX - $WAIT)) secs for MDT deactivated"
905         done
906
907         # test new client starts deactivated
908         umount_client $MOUNT || return 200
909         mount_client $MOUNT
910         RESULT=$(lctl get_param -n $PROC_UUID | grep DEACTIV | grep NEW)
911         if [ -z "$RESULT" ]; then
912             echo "New client not deactivated from start: $(lctl get_param -n $PROC_UUID)"
913             return 5
914         else
915             echo "New client success: got $RESULT"
916         fi
917
918         # make sure it reactivates
919         set_and_check client "lctl get_param -n $PROC_ACT" "$PARAM" $ACTV || return 6
920
921         umount_client $MOUNT
922         stop_ost2
923         cleanup_nocli
924         #writeconf to remove all ost2 traces for subsequent tests
925         writeconf
926 }
927 run_test 29 "permanently remove an OST"
928
929 test_30() {
930         setup
931
932         echo Big config llog
933         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
934         ORIG=$($TEST)
935         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
936         for i in ${LIST[@]}; do
937             set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
938         done
939         # make sure client restart still works
940         umount_client $MOUNT
941         mount_client $MOUNT || return 4
942         [ "$($TEST)" -ne "$i" ] && return 5
943         pass
944
945         echo Erase parameter setting
946         do_facet mgs "$LCTL conf_param -d $FSNAME.llite.max_read_ahead_whole_mb" || return 6
947         umount_client $MOUNT
948         mount_client $MOUNT || return 6
949         FINAL=$($TEST)
950         echo "deleted (default) value=$FINAL, orig=$ORIG"
951         # assumes this parameter started at the default value
952         [ "$FINAL" -eq "$ORIG" ] || fail "Deleted value=$FINAL, orig=$ORIG"
953
954         cleanup
955 }
956 run_test 30 "Big config llog and conf_param deletion"
957
958 test_31() { # bug 10734
959         # ipaddr must not exist
960         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
961         cleanup
962 }
963 run_test 31 "Connect to non-existent node (shouldn't crash)"
964
965 # Use these start32/stop32 fn instead of t-f start/stop fn,
966 # for local devices, to skip global facet vars init
967 stop32 () {
968         local facet=$1
969         shift
970         echo "Stopping local ${MOUNT%/*}/${facet} (opts:$@)"
971         umount -d $@ ${MOUNT%/*}/${facet}
972         losetup -a
973 }
974
975 start32 () {
976         local facet=$1
977         shift
978         local device=$1
979         shift
980         mkdir -p ${MOUNT%/*}/${facet}
981
982         echo "Starting local ${facet}: $@ $device ${MOUNT%/*}/${facet}"
983         mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}
984         local RC=$?
985         if [ $RC -ne 0 ]; then
986                 echo "mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}"
987                 echo "Start of ${device} of local ${facet} failed ${RC}"
988         fi
989         losetup -a
990         return $RC
991 }
992
993 cleanup_nocli32 () {
994         stop32 mds1 -f
995         stop32 ost1 -f
996         wait_exit_ST client
997 }
998
999 cleanup_32() {
1000         trap 0
1001         echo "Cleanup test_32 umount $MOUNT ..."
1002         umount -f $MOUNT || true
1003         echo "Cleanup local mds ost1 ..."
1004         cleanup_nocli32
1005         unload_modules
1006 }
1007
1008 test_32a() {
1009         client_only && skip "client only testing" && return 0
1010         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1011         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return 0
1012
1013         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
1014         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
1015         local tmpdir=$TMP/conf32a
1016         mkdir -p $tmpdir
1017         tar xjvf $DISK1_8 -C $tmpdir || \
1018                 { skip_env "Cannot untar $DISK1_8" && return 0; }
1019
1020         load_modules
1021         $LCTL set_param debug=$PTLDEBUG
1022
1023         $TUNEFS $tmpdir/mds || error "tunefs failed"
1024
1025         # nids are wrong, so client wont work, but server should start
1026         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1027                 trap cleanup_32 EXIT INT || return 3
1028
1029         local UUID=$($LCTL get_param -n mdt.lustre-MDT0000.uuid)
1030         echo MDS uuid $UUID
1031         [ "$UUID" == "lustre-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
1032
1033         $TUNEFS --mgsnode=$HOSTNAME $tmpdir/ost1 || error "tunefs failed"
1034         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1035         UUID=$($LCTL get_param -n obdfilter.lustre-OST0000.uuid)
1036         echo OST uuid $UUID
1037         [ "$UUID" == "lustre-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1038
1039         local NID=$($LCTL list_nids | head -1)
1040
1041         echo "OSC changes should succeed:"
1042         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 || return 7
1043         $LCTL conf_param lustre-OST0000.failover.node=$NID || return 8
1044         echo "ok."
1045
1046         echo "MDC changes should succeed:"
1047         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1048         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
1049         echo "ok."
1050
1051         echo "LOV changes should succeed:"
1052         $LCTL pool_new lustre.interop || return 11
1053         $LCTL conf_param lustre-MDT0000.lov.stripesize=4M || return 12
1054         echo "ok."
1055
1056         cleanup_32
1057
1058         # mount a second time to make sure we didnt leave upgrade flag on
1059         load_modules
1060         $TUNEFS --dryrun $tmpdir/mds || error "tunefs failed"
1061         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1062                 trap cleanup_32 EXIT INT || return 12
1063
1064         cleanup_32
1065
1066         rm -rf $tmpdir || true  # true is only for TMP on NFS
1067 }
1068 run_test 32a "Upgrade from 1.8 (not live)"
1069
1070 test_32b() {
1071         client_only && skip "client only testing" && return 0
1072         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1073         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return
1074
1075         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
1076         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
1077         local tmpdir=$TMP/conf32b
1078         mkdir -p $tmpdir
1079         tar xjvf $DISK1_8 -C $tmpdir || \
1080                 { skip_env "Cannot untar $DISK1_8" && return ; }
1081
1082         load_modules
1083         $LCTL set_param debug="config"
1084         local NEWNAME=lustre
1085
1086         # writeconf will cause servers to register with their current nids
1087         $TUNEFS --writeconf --fsname=$NEWNAME $tmpdir/mds || error "tunefs failed"
1088         start32 mds1 $tmpdir/mds "-o loop" && \
1089                 trap cleanup_32 EXIT INT || return 3
1090
1091         local UUID=$($LCTL get_param -n mdt.${NEWNAME}-MDT0000.uuid)
1092         echo MDS uuid $UUID
1093         [ "$UUID" == "${NEWNAME}-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
1094
1095         $TUNEFS --mgsnode=$HOSTNAME --writeconf --fsname=$NEWNAME $tmpdir/ost1 ||\
1096             error "tunefs failed"
1097         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1098         UUID=$($LCTL get_param -n obdfilter.${NEWNAME}-OST0000.uuid)
1099         echo OST uuid $UUID
1100         [ "$UUID" == "${NEWNAME}-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1101
1102         local NID=$($LCTL list_nids | head -1)
1103
1104         echo "OSC changes should succeed:"
1105         $LCTL conf_param ${NEWNAME}-OST0000.osc.max_dirty_mb=15 || return 7
1106         $LCTL conf_param ${NEWNAME}-OST0000.failover.node=$NID || return 8
1107         echo "ok."
1108
1109         echo "MDC changes should succeed:"
1110         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1111         $LCTL conf_param ${NEWNAME}-MDT0000.failover.node=$NID || return 10
1112         echo "ok."
1113
1114         echo "LOV changes should succeed:"
1115         $LCTL pool_new ${NEWNAME}.interop || return 11
1116         $LCTL conf_param ${NEWNAME}-MDT0000.lov.stripesize=4M || return 12
1117         echo "ok."
1118
1119         # MDT and OST should have registered with new nids, so we should have
1120         # a fully-functioning client
1121         echo "Check client and old fs contents"
1122
1123         local device=`h2$NETTYPE $HOSTNAME`:/$NEWNAME
1124         echo "Starting local client: $HOSTNAME: $device $MOUNT"
1125         mount -t lustre $device $MOUNT || return 1
1126
1127         local old=$($LCTL get_param -n mdc.*.max_rpcs_in_flight)
1128         local new=$((old + 5))
1129         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=$new
1130         wait_update $HOSTNAME "$LCTL get_param -n mdc.*.max_rpcs_in_flight" $new || return 11
1131
1132         [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "94306271 1478" ] || return 12
1133         echo "ok."
1134
1135         cleanup_32
1136
1137         rm -rf $tmpdir || true  # true is only for TMP on NFS
1138 }
1139 run_test 32b "Upgrade from 1.8 with writeconf"
1140
1141 test_33a() { # bug 12333, was test_33
1142         local rc=0
1143         local FSNAME2=test-123
1144         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1145
1146         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1147                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1148                 skip_env "mixed loopback and real device not working" && return
1149         fi
1150
1151         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1152         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1153         add fs2mds $MDS_MKFS_OPTS --mkfsoptions='\"-J size=8\"' --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1154         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --index=8191 --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1155
1156         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1157         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1158         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1159         mkdir -p $MOUNT2
1160         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1161         echo "ok."
1162
1163         cp /etc/hosts $MOUNT2/ || rc=3
1164         $LFS getstripe $MOUNT2/hosts
1165
1166         umount -d $MOUNT2
1167         stop fs2ost -f
1168         stop fs2mds -f
1169         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev
1170         cleanup_nocli || rc=6
1171         return $rc
1172 }
1173 run_test 33a "Mount ost with a large index number"
1174
1175 test_33b() {    # was test_34
1176         setup
1177
1178         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1179         # Drop lock cancelation reply during umount
1180         #define OBD_FAIL_LDLM_CANCEL             0x304
1181         do_facet client lctl set_param fail_loc=0x80000304
1182         #lctl set_param debug=-1
1183         umount_client $MOUNT
1184         cleanup
1185 }
1186 run_test 33b "Drop cancel during umount"
1187
1188 test_34a() {
1189         setup
1190         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1191         manual_umount_client
1192         rc=$?
1193         do_facet client killall -USR1 multiop
1194         if [ $rc -eq 0 ]; then
1195                 error "umount not fail!"
1196         fi
1197         sleep 1
1198         cleanup
1199 }
1200 run_test 34a "umount with opened file should be fail"
1201
1202
1203 test_34b() {
1204         setup
1205         touch $DIR/$tfile || return 1
1206         stop_mds --force || return 2
1207
1208         manual_umount_client --force
1209         rc=$?
1210         if [ $rc -ne 0 ]; then
1211                 error "mtab after failed umount - rc $rc"
1212         fi
1213
1214         cleanup
1215         return 0
1216 }
1217 run_test 34b "force umount with failed mds should be normal"
1218
1219 test_34c() {
1220         setup
1221         touch $DIR/$tfile || return 1
1222         stop_ost --force || return 2
1223
1224         manual_umount_client --force
1225         rc=$?
1226         if [ $rc -ne 0 ]; then
1227                 error "mtab after failed umount - rc $rc"
1228         fi
1229
1230         cleanup
1231         return 0
1232 }
1233 run_test 34c "force umount with failed ost should be normal"
1234
1235 test_35a() { # bug 12459
1236         setup
1237
1238         DBG_SAVE="`lctl get_param -n debug`"
1239         lctl set_param debug="ha"
1240
1241         log "Set up a fake failnode for the MDS"
1242         FAKENID="127.0.0.2"
1243         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1244         do_facet $SINGLEMDS $LCTL conf_param ${device}.failover.node=$FAKENID || return 4
1245
1246         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1247         sleep 10
1248
1249         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
1250         $LCTL clear
1251         log "$MSG"
1252         log "Stopping the MDT:"
1253         stop_mds || return 5
1254
1255         df $MOUNT > /dev/null 2>&1 &
1256         DFPID=$!
1257         log "Restarting the MDT:"
1258         start_mds || return 6
1259         log "Wait for df ($DFPID) ... "
1260         wait $DFPID
1261         log "done"
1262         lctl set_param debug="$DBG_SAVE"
1263
1264         # retrieve from the log the first server that the client tried to
1265         # contact after the connection loss
1266         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1267         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1268                        /import_select_connection.*$device-mdc.* using connection/ {
1269                                 if (start) {
1270                                         if (\\\$NF ~ /$FAKENID/)
1271                                                 print \\\$NF;
1272                                         else
1273                                                 print 0;
1274                                         exit;
1275                                 }
1276                        }" $TMP/lustre-log-$TESTNAME.log`
1277         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1278         cleanup
1279 }
1280 run_test 35a "Reconnect to the last active server first"
1281
1282 test_35b() { # bug 18674
1283         remote_mds || { skip "local MDS" && return 0; }
1284         setup
1285
1286         debugsave
1287         $LCTL set_param debug="ha"
1288         $LCTL clear
1289         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
1290         log "$MSG"
1291
1292         log "Set up a fake failnode for the MDS"
1293         FAKENID="127.0.0.2"
1294         local device=$(do_facet mds "$LCTL get_param -n devices" | \
1295                         awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1296         do_facet mds "$LCTL conf_param ${device}.failover.node=$FAKENID" || \
1297                 return 1
1298
1299         local at_max_saved=0
1300         # adaptive timeouts may prevent seeing the issue 
1301         if at_is_enabled; then
1302                 at_max_saved=$(at_max_get mds)
1303                 at_max_set 0 mds client
1304         fi
1305
1306         mkdir -p $MOUNT/testdir
1307         touch $MOUNT/testdir/test
1308
1309         log "Injecting EBUSY on MDS"
1310         # Setting OBD_FAIL_MDS_RESEND=0x136
1311         do_facet mds "$LCTL set_param fail_loc=0x80000136" || return 2
1312
1313         log "Stat on a test file"
1314         stat $MOUNT/testdir/test
1315
1316         log "Stop injecting EBUSY on MDS"
1317         do_facet mds "$LCTL set_param fail_loc=0" || return 3
1318         rm -f $MOUNT/testdir/test
1319
1320         log "done"
1321         # restore adaptive timeout
1322         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
1323
1324         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1325
1326         # retrieve from the log if the client has ever tried to
1327         # contact the fake server after the loss of connection
1328         FAILCONN=`awk "BEGIN {ret = 0;}
1329                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1330                                 ret = 1;
1331                                 if (\\\$NF ~ /$FAKENID/) {
1332                                         ret = 2;
1333                                         exit;
1334                                 }
1335                        }
1336                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
1337
1338         [ "$FAILCONN" == "0" ] && \
1339                 log "ERROR: The client reconnection has not been triggered" && \
1340                 return 4
1341         [ "$FAILCONN" == "2" ] && \
1342                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
1343                 return 5
1344
1345         cleanup
1346 }
1347 run_test 35b "Continue reconnection retries, if the active server is busy"
1348
1349 test_36() { # 12743
1350         local rc
1351         local FSNAME2=test1234
1352         local fs3ost_HOST=$ost_HOST
1353
1354         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1355         rc=0
1356
1357         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1358                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1359                 skip_env "mixed loopback and real device not working" && return
1360         fi
1361         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
1362
1363         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1364                 { skip "remote OST" && return 0; }
1365
1366         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1367         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1368         local fs3ostdev=${fs3ost_DEV:-$(ostdevname 2)_2}
1369         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1370         # XXX after we support non 4K disk blocksize, change following --mkfsoptions with
1371         # other argument
1372         add fs2ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1373         add fs3ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs3ostdev || exit 10
1374
1375         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1376         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1377         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1378         mkdir -p $MOUNT2
1379         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1380
1381         sleep 5 # until 11778 fixed
1382
1383         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1384
1385         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1386         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
1387         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
1388         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1389         DFTOTAL=`echo $STRING | cut -d, -f1`
1390         DFUSED=`echo $STRING  | cut -d, -f2`
1391         DFAVAIL=`echo $STRING | cut -d, -f3`
1392         DFFREE=$(($DFTOTAL - $DFUSED))
1393
1394         ALLOWANCE=$((64 * $OSTCOUNT))
1395
1396         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
1397            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1398                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1399                 rc=1
1400         fi
1401         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
1402            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1403                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1404                 rc=2
1405         fi
1406         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
1407            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1408                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1409                 rc=3
1410        fi
1411
1412         umount -d $MOUNT2
1413         stop fs3ost -f || return 200
1414         stop fs2ost -f || return 201
1415         stop fs2mds -f || return 202
1416         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev $fs3ostdev
1417         unload_modules || return 203
1418         return $rc
1419 }
1420 run_test 36 "df report consistency on OSTs with different block size"
1421
1422 test_37() {
1423         client_only && skip "client only testing" && return 0
1424         LOCAL_MDSDEV="$TMP/mdt.img"
1425         SYM_MDSDEV="$TMP/sym_mdt.img"
1426
1427         echo "MDS :     $LOCAL_MDSDEV"
1428         echo "SYMLINK : $SYM_MDSDEV"
1429         rm -f $LOCAL_MDSDEV
1430
1431         touch $LOCAL_MDSDEV
1432         mkfs.lustre --reformat --fsname=lustre --mdt --mgs --device-size=9000 $LOCAL_MDSDEV ||
1433                 error "mkfs.lustre $LOCAL_MDSDEV failed"
1434         ln -s $LOCAL_MDSDEV $SYM_MDSDEV
1435
1436         echo "mount symlink device - $SYM_MDSDEV"
1437
1438         mount_op=`mount -v -t lustre -o loop $SYM_MDSDEV ${MOUNT%/*}/mds 2>&1 | grep "unable to set tunable"`
1439         umount -d ${MOUNT%/*}/mds
1440         rm -f $LOCAL_MDSDEV $SYM_MDSDEV
1441
1442         if [ -n "$mount_op" ]; then
1443                 error "**** FAIL: set tunables failed for symlink device"
1444         fi
1445         return 0
1446 }
1447 run_test 37 "verify set tunables works for symlink device"
1448
1449 test_38() { # bug 14222
1450         setup
1451         # like runtests
1452         COUNT=10
1453         SRC="/etc /bin"
1454         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1455         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1456         mkdir -p $DIR/$tdir
1457         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1458                 error "copying $SRC to $DIR/$tdir"
1459         sync
1460         umount_client $MOUNT
1461         stop_mds
1462         log "rename lov_objid file on MDS"
1463         rm -f $TMP/lov_objid.orig
1464
1465         local dev=${SINGLEMDS}_dev
1466         local MDSDEV=${!dev}
1467         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1468         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1469
1470         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
1471         # check create in mds_lov_connect
1472         start_mds
1473         mount_client $MOUNT
1474         for f in $FILES; do
1475                 [ $V ] && log "verifying $DIR/$tdir/$f"
1476                 diff -q $f $DIR/$tdir/$f || ERROR=y
1477         done
1478         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1479         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
1480         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
1481
1482         # check it's updates in sync
1483         umount_client $MOUNT
1484         stop_mds
1485
1486         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1487         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1488         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1489
1490         start_mds
1491         mount_client $MOUNT
1492         for f in $FILES; do
1493                 [ $V ] && log "verifying $DIR/$tdir/$f"
1494                 diff -q $f $DIR/$tdir/$f || ERROR=y
1495         done
1496         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
1497         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
1498         umount_client $MOUNT
1499         stop_mds
1500         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
1501
1502         log "files compared the same"
1503         cleanup
1504 }
1505 run_test 38 "MDS recreates missing lov_objid file from OST data"
1506
1507 test_39() {
1508         PTLDEBUG=+malloc
1509         setup
1510         cleanup
1511         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
1512                 error "memory leak detected" || true
1513 }
1514 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
1515
1516 test_40() { # bug 15759
1517         start_ost
1518         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
1519         do_facet $SINGLEMDS "sysctl -w lustre.fail_loc=0x80000706"
1520         start_mds
1521         cleanup
1522 }
1523 run_test 40 "race during service thread startup"
1524
1525 test_41() { #bug 14134
1526         local rc
1527         local dev=${SINGLEMDS}_dev
1528         local MDSDEV=${!dev}
1529
1530         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
1531         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
1532         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
1533         mkdir -p $MOUNT
1534         mount_client $MOUNT || return 1
1535         sleep 5
1536
1537         echo "blah blah" > $MOUNT/$tfile
1538         cat $MOUNT/$tfile
1539
1540         umount_client $MOUNT
1541         stop ost1 -f || return 201
1542         stop_mds -f || return 202
1543         stop_mds -f || return 203
1544         unload_modules || return 204
1545         return $rc
1546 }
1547 run_test 41 "mount mds with --nosvc and --nomgs"
1548
1549 test_42() { #bug 14693
1550         setup
1551         check_mount || return 2
1552         do_facet mgs $LCTL conf_param lustre.llite.some_wrong_param=10
1553         umount_client $MOUNT
1554         mount_client $MOUNT || return 1
1555         cleanup
1556         return 0
1557 }
1558 run_test 42 "invalid config param should not prevent client from mounting"
1559
1560 test_43() {
1561     [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
1562     setup
1563     chmod ugo+x $DIR || error "chmod 0 failed"
1564     set_and_check mds                                        \
1565         "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"  \
1566         "$FSNAME.mdt.root_squash"                            \
1567         "0:0"
1568     set_and_check mds                                        \
1569        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1570        "$FSNAME.mdt.nosquash_nids"                           \
1571        "NONE"
1572
1573     #
1574     # create set of test files
1575     #
1576     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
1577     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
1578     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
1579
1580     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
1581     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
1582
1583     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
1584     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
1585     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
1586
1587     #
1588     # check root_squash:
1589     #   set root squash UID:GID to RUNAS_ID
1590     #   root should be able to access only files owned by RUNAS_ID
1591     #
1592     set_and_check mds                                        \
1593        "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"   \
1594        "$FSNAME.mdt.root_squash"                             \
1595        "$RUNAS_ID:$RUNAS_ID"
1596
1597     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
1598     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1599         error "$ST: root read permission is denied"
1600     echo "$ST: root read permission is granted - ok"
1601
1602     echo "444" | \
1603     dd conv=notrunc if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1604         error "$ST: root write permission is denied"
1605     echo "$ST: root write permission is granted - ok"
1606
1607     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1608     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1609         error "$ST: root read permission is granted"
1610     echo "$ST: root read permission is denied - ok"
1611
1612     echo "555" | \
1613     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1614         error "$ST: root write permission is granted"
1615     echo "$ST: root write permission is denied - ok"
1616
1617     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1618     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
1619         error "$ST: root unlink permission is granted"
1620     echo "$ST: root unlink permission is denied - ok"
1621
1622     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
1623         error "$ST: root create permission is granted"
1624     echo "$ST: root create permission is denied - ok"
1625
1626     #
1627     # check nosquash_nids:
1628     #   put client's NID into nosquash_nids list,
1629     #   root should be able to access root file after that
1630     #
1631     local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
1632     NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
1633     NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
1634     set_and_check mds                                        \
1635        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1636        "$FSNAME-MDTall.mdt.nosquash_nids"                    \
1637        "$NIDLIST"
1638
1639     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1640     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1641         error "$ST: root read permission is denied"
1642     echo "$ST: root read permission is granted - ok"
1643
1644     echo "666" | \
1645     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1646         error "$ST: root write permission is denied"
1647     echo "$ST: root write permission is granted - ok"
1648
1649     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1650     rm $DIR/$tdir-rootdir/tfile-1 || \
1651         error "$ST: root unlink permission is denied"
1652     echo "$ST: root unlink permission is granted - ok"
1653     touch $DIR/$tdir-rootdir/tfile-2 || \
1654         error "$ST: root create permission is denied"
1655     echo "$ST: root create permission is granted - ok"
1656
1657     return 0
1658 }
1659 run_test 43 "check root_squash and nosquash_nids"
1660
1661 umount_client $MOUNT
1662 cleanup_nocli
1663
1664 test_44() { # 16317
1665         setup
1666         check_mount || return 2
1667         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
1668         STATS_FOUND=no
1669         UUIDS=$(do_facet mds "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
1670         for VAL in $UUIDS; do
1671                 NID=$(echo $VAL | cut -d= -f1)
1672                 CLUUID=$(echo $VAL | cut -d= -f2)
1673                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
1674         done
1675         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
1676         cleanup
1677         return 0
1678 }
1679 run_test 44 "mounted client proc entry exists"
1680
1681 test_45() { #17310
1682         setup
1683         check_mount || return 2
1684         stop_mds
1685         df -h $MOUNT &
1686         log "sleep 60 sec"
1687         sleep 60
1688 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
1689         do_facet client "lctl set_param fail_loc=0x50f"
1690         log "sleep 10 sec"
1691         sleep 10
1692         manual_umount_client --force || return 3
1693         do_facet client "lctl set_param fail_loc=0x0"
1694         start_mds
1695         mount_client $MOUNT || return 4
1696         cleanup
1697         return 0
1698 }
1699 run_test 45 "long unlink handling in ptlrpcd"
1700
1701 cleanup_46a() {
1702         trap 0
1703         local rc=0
1704         local count=$1
1705
1706         umount_client $MOUNT2 || rc=$?
1707         umount_client $MOUNT || rc=$?
1708         while [ $count -gt 0 ]; do
1709                 stop ost${count} -f || rc=$?
1710                 let count=count-1
1711         done    
1712         stop_mds || rc=$? 
1713         # writeconf is needed after the test, otherwise,
1714         # we might end up with extra OSTs
1715         writeconf || rc=$?
1716         cleanup_nocli || rc=$?
1717         return $rc
1718 }
1719
1720 test_46a() {
1721         echo "Testing with $OSTCOUNT OSTs"
1722         reformat_and_config
1723         start_mds || return 1
1724         #first client should see only one ost
1725         start_ost || return 2
1726         wait_osc_import_state mds ost FULL
1727         #start_client
1728         mount_client $MOUNT || return 3
1729         trap "cleanup_46a $OSTCOUNT" EXIT ERR
1730
1731         local i 
1732         for (( i=2; i<=$OSTCOUNT; i++ )); do
1733             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
1734         done
1735
1736         # wait until osts in sync
1737         for (( i=2; i<=$OSTCOUNT; i++ )); do
1738             wait_osc_import_state mds ost$i FULL
1739         done
1740
1741
1742         #second client see all ost's
1743
1744         mount_client $MOUNT2 || return 8
1745         $LFS setstripe $MOUNT2 -c -1 || return 9
1746         $LFS getstripe $MOUNT2 || return 10
1747
1748         echo "ok" > $MOUNT2/widestripe
1749         $LFS getstripe $MOUNT2/widestripe || return 11
1750         # fill acl buffer for avoid expand lsm to them
1751         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
1752             setfacl -m $acl $MOUNT2/widestripe
1753         done
1754
1755         # will be deadlock
1756         stat $MOUNT/widestripe || return 12
1757
1758         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
1759         return 0
1760 }
1761 run_test 46a "handle ost additional - wide striped file"
1762
1763 test_47() { #17674
1764         reformat
1765         setup_noconfig
1766         check_mount || return 2
1767         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
1768
1769         local lru_size=[]
1770         local count=0
1771         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1772             if echo $ns | grep "MDT[[:digit:]]*"; then
1773                 continue
1774             fi
1775             lrs=$(echo $ns | sed 's/.*lru_size=//')
1776             lru_size[count]=$lrs
1777             let count=count+1
1778         done
1779
1780         facet_failover ost1
1781         facet_failover $SINGLEMDS
1782         client_up || return 3
1783
1784         count=0
1785         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1786             if echo $ns | grep "MDT[[:digit:]]*"; then
1787                 continue
1788             fi
1789             lrs=$(echo $ns | sed 's/.*lru_size=//')
1790             if ! test "$lrs" -eq "${lru_size[count]}"; then
1791                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
1792                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
1793             fi
1794             let count=count+1
1795         done
1796
1797         cleanup
1798         return 0
1799 }
1800 run_test 47 "server restart does not make client loss lru_resize settings"
1801
1802 cleanup_48() {
1803         trap 0
1804
1805         # reformat after this test is needed - if test will failed
1806         # we will have unkillable file at FS
1807         reformat_and_config
1808 }
1809
1810 test_48() { # bug 17636
1811         reformat
1812         setup_noconfig
1813         check_mount || return 2
1814
1815         $LFS setstripe $MOUNT -c -1 || return 9
1816         $LFS getstripe $MOUNT || return 10
1817
1818         echo "ok" > $MOUNT/widestripe
1819         $LFS getstripe $MOUNT/widestripe || return 11
1820
1821         trap cleanup_48 EXIT ERR
1822
1823         # fill acl buffer for avoid expand lsm to them
1824         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
1825             setfacl -m $acl $MOUNT/widestripe
1826         done
1827
1828         stat $MOUNT/widestripe || return 12
1829
1830         cleanup_48
1831         return 0
1832 }
1833 run_test 48 "too many acls on file"
1834
1835 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
1836 test_49() { # bug 17710
1837         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
1838         local OLD_OST_MKFS_OPTS=$OST_MKFS_OPTS
1839         local LOCAL_TIMEOUT=20
1840
1841
1842         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$LOCAL_TIMEOUT $MKFSOPT $OSTOPT"
1843
1844         reformat
1845         setup_noconfig
1846         check_mount || return 1
1847
1848         echo "check ldlm_timout..."
1849         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1850         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1851         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1852
1853         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1854                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1855         fi
1856
1857         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
1858                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1859         fi
1860
1861         umount_client $MOUNT
1862         stop_ost || return 2
1863         stop_mds || return 3
1864
1865         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"
1866
1867         reformat
1868         setup_noconfig
1869         check_mount || return 7
1870
1871         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1872         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1873         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1874
1875         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1876                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1877         fi
1878
1879         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
1880                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1881         fi
1882
1883         cleanup || return $?
1884
1885         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
1886         OST_MKFS_OPTS=$OLD_OST_MKFS_OPTS
1887 }
1888 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
1889
1890 lazystatfs() {
1891         # Test both statfs and lfs df and fail if either one fails
1892         multiop_bg_pause $1 f_
1893         RC1=$?
1894         PID=$!
1895         killall -USR1 multiop
1896         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
1897         wait $PID || { RC1=$?; log "multiop return error "; }
1898
1899         $LFS df &
1900         PID=$!
1901         sleep 5
1902         kill -s 0 $PID
1903         RC2=$?
1904         if [ $RC2 -eq 0 ]; then
1905             kill -s 9 $PID
1906             log "lazystatfs df failed"
1907         fi
1908
1909         RC=0
1910         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
1911         return $RC
1912 }
1913
1914 test_50a() {
1915         setup
1916         lctl set_param llite.$FSNAME-*.lazystatfs=1
1917         touch $DIR/$tfile
1918
1919         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
1920
1921         cleanup || return $?
1922 }
1923 run_test 50a "lazystatfs all servers available =========================="
1924
1925 test_50b() {
1926         setup
1927         lctl set_param llite.$FSNAME-*.lazystatfs=1
1928         touch $DIR/$tfile
1929
1930         # Wait for client to detect down OST
1931         stop_ost || error "Unable to stop OST1"
1932         wait_osc_import_state mds ost DISCONN
1933
1934         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
1935
1936         umount_client $MOUNT || error "Unable to unmount client"
1937         stop_mds || error "Unable to stop MDS"
1938 }
1939 run_test 50b "lazystatfs all servers down =========================="
1940
1941 test_50c() {
1942         start_mds || error "Unable to start MDS"
1943         start_ost || error "Unable to start OST1"
1944         start_ost2 || error "Unable to start OST2"
1945         mount_client $MOUNT || error "Unable to mount client"
1946         lctl set_param llite.$FSNAME-*.lazystatfs=1
1947         touch $DIR/$tfile
1948
1949         # Wait for client to detect down OST
1950         stop_ost || error "Unable to stop OST1"
1951         wait_osc_import_state mds ost DISCONN
1952         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1953
1954         umount_client $MOUNT || error "Unable to unmount client"
1955         stop_ost2 || error "Unable to stop OST2"
1956         stop_mds || error "Unable to stop MDS"
1957 }
1958 run_test 50c "lazystatfs one server down =========================="
1959
1960 test_50d() {
1961         start_mds || error "Unable to start MDS"
1962         start_ost || error "Unable to start OST1"
1963         start_ost2 || error "Unable to start OST2"
1964         mount_client $MOUNT || error "Unable to mount client"
1965         lctl set_param llite.$FSNAME-*.lazystatfs=1
1966         touch $DIR/$tfile
1967
1968         # Issue the statfs during the window where the client still
1969         # belives the OST to be available but it is in fact down.
1970         # No failure just a statfs which hangs for a timeout interval.
1971         stop_ost || error "Unable to stop OST1"
1972         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1973
1974         umount_client $MOUNT || error "Unable to unmount client"
1975         stop_ost2 || error "Unable to stop OST2"
1976         stop_mds || error "Unable to stop MDS"
1977 }
1978 run_test 50d "lazystatfs client/server conn race =========================="
1979
1980 test_50e() {
1981         local RC1
1982         local pid
1983
1984         reformat_and_config
1985         start_mds || return 1
1986         #first client should see only one ost
1987         start_ost || return 2
1988         wait_osc_import_state mds ost FULL
1989
1990         # Wait for client to detect down OST
1991         stop_ost || error "Unable to stop OST1"
1992         wait_osc_import_state mds ost DISCONN
1993
1994         mount_client $MOUNT || error "Unable to mount client"
1995         lctl set_param llite.$FSNAME-*.lazystatfs=0
1996
1997         multiop_bg_pause $MOUNT _f
1998         RC1=$?
1999         pid=$!
2000
2001         if [ $RC1 -ne 0 ]; then
2002                 log "multiop failed $RC1"
2003         else
2004             kill -USR1 $pid
2005             sleep $(( $TIMEOUT+1 ))
2006             kill -0 $pid
2007             [ $? -ne 0 ] && error "process isn't sleep"
2008             start_ost || error "Unable to start OST1"
2009             wait $pid || error "statfs failed"
2010         fi
2011
2012         umount_client $MOUNT || error "Unable to unmount client"
2013         stop_ost || error "Unable to stop OST1"
2014         stop_mds || error "Unable to stop MDS"
2015 }
2016 run_test 50e "normal statfs all servers down =========================="
2017
2018 test_50f() {
2019         local RC1
2020         local pid
2021         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
2022
2023         start_mds || error "Unable to start mds"
2024         #first client should see only one ost
2025         start_ost || error "Unable to start OST1"
2026         wait_osc_import_state mds ost FULL
2027
2028         start_ost2 || error "Unable to start OST2"
2029         wait_osc_import_state mds ost2 FULL
2030
2031         # Wait for client to detect down OST
2032         stop_ost2 || error "Unable to stop OST2"
2033
2034         wait_osc_import_state mds ost2 DISCONN
2035         mount_client $MOUNT || error "Unable to mount client"
2036         lctl set_param llite.$FSNAME-*.lazystatfs=0
2037
2038         multiop_bg_pause $MOUNT _f
2039         RC1=$?
2040         pid=$!
2041
2042         if [ $RC1 -ne 0 ]; then
2043                 log "lazystatfs multiop failed $RC1"
2044         else
2045             kill -USR1 $pid
2046             sleep $(( $TIMEOUT+1 ))
2047             kill -0 $pid
2048             [ $? -ne 0 ] && error "process isn't sleep"
2049             start_ost2 || error "Unable to start OST2"
2050             wait $pid || error "statfs failed"
2051             stop_ost2 || error "Unable to stop OST2"
2052         fi
2053
2054         umount_client $MOUNT || error "Unable to unmount client"
2055         stop_ost || error "Unable to stop OST1"
2056         stop_mds || error "Unable to stop MDS"
2057         writeconf
2058 }
2059 run_test 50f "normal statfs one server in down =========================="
2060
2061 test_50g() {
2062         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
2063         setup
2064         start_ost2 || error "Unable to start OST2"
2065
2066         local PARAM="${FSNAME}-OST0001.osc.active"
2067
2068         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
2069         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
2070
2071         umount_client $MOUNT || error "Unable to unmount client"
2072         mount_client $MOUNT || error "Unable to mount client"
2073         # This df should not cause a panic
2074         df -k $MOUNT
2075
2076         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
2077         rm -f $DIR/$tfile
2078         umount_client $MOUNT || error "Unable to unmount client"
2079         stop_ost2 || error "Unable to stop OST2"
2080         stop_ost || error "Unable to stop OST1"
2081         stop_mds || error "Unable to stop MDS"
2082         writeconf
2083 }
2084 run_test 50g "deactivated OST should not cause panic====================="
2085
2086 test_51() {
2087         local LOCAL_TIMEOUT=20
2088
2089         reformat
2090         setup_noconfig
2091         check_mount || return 1
2092
2093         mkdir $MOUNT/d1
2094         $LFS setstripe -c -1 $MOUNT/d1
2095         #define OBD_FAIL_MDS_REINT_DELAY         0x142
2096         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
2097         touch $MOUNT/d1/f1 &
2098         local pid=$!
2099         sleep 2
2100         start_ost2 || return 2
2101         wait $pid
2102         stop_ost2 || return 3
2103         cleanup
2104 }
2105 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
2106
2107 copy_files_xattrs()
2108 {
2109         local node=$1
2110         local dest=$2
2111         local xattrs=$3
2112         shift 3
2113
2114         do_node $node mkdir -p $dest
2115         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2116
2117         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
2118                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2119         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
2120
2121         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
2122         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
2123 }
2124
2125 diff_files_xattrs()
2126 {
2127         local node=$1
2128         local backup=$2
2129         local xattrs=$3
2130         shift 3
2131
2132         local backup2=${TMP}/backup2
2133
2134         do_node $node mkdir -p $backup2
2135         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2136
2137         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
2138                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2139         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
2140
2141         do_node $node "diff -rq $backup $backup2"
2142         [ $? -eq 0 ] || { error "contents differ"; return 3; }
2143
2144         local xattrs2=${TMP}/xattrs2
2145         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
2146         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
2147
2148         do_node $node "diff $xattrs $xattrs2"
2149         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
2150
2151         do_node $node "rm -rf $backup2 $xattrs2"
2152         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
2153 }
2154
2155 test_52() {
2156         start_mds
2157         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
2158         start_ost
2159         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
2160         mount_client $MOUNT
2161         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
2162
2163         local nrfiles=8
2164         local ost1mnt=${MOUNT%/*}/ost1
2165         local ost1node=$(facet_active_host ost1)
2166         local ost1tmp=$TMP/conf52
2167
2168         mkdir -p $DIR/$tdir
2169         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
2170         touch $TMP/modified_first
2171         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
2172         do_node $ost1node "mkdir -p $ost1tmp && touch $ost1tmp/modified_first"
2173         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
2174         sleep 1
2175
2176         $LFS setstripe $DIR/$tdir -c -1 -s 1M
2177         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
2178
2179         for (( i=0; i < nrfiles; i++ )); do
2180                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
2181                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
2182                 echo -n .
2183         done
2184         echo
2185
2186         # backup files
2187         echo backup files to $TMP/files
2188         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
2189         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2190         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
2191
2192         umount_client $MOUNT
2193         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
2194         stop_ost
2195         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
2196
2197         echo mount ost1 as ldiskfs
2198         do_node $ost1node mount -t $FSTYPE $ost1_dev $ost1mnt $OST_MOUNT_OPTS
2199         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
2200
2201         # backup objects
2202         echo backup objects to $ost1tmp/objects
2203         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/0 -type f -size +0'\
2204                         '-newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
2205         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2206         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
2207
2208         # move objects to lost+found
2209         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
2210         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
2211
2212         # recover objects
2213         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
2214         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
2215
2216         # compare restored objects against saved ones
2217         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2218         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
2219
2220         do_node $ost1node "umount $ost1_dev"
2221         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
2222
2223         start_ost
2224         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
2225         mount_client $MOUNT
2226         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
2227
2228         # compare files
2229         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2230         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
2231
2232         rm -rf $TMP/files $TMP/file_xattrs
2233         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
2234         do_node $ost1node "rm -rf $ost1tmp"
2235         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
2236         cleanup
2237 }
2238 run_test 52 "check recovering objects from lost+found"
2239
2240 # Checks threads_min/max/started for some service
2241 #
2242 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
2243 # parameter pattern prefix like 'ost.*.ost'.
2244 thread_sanity() {
2245         local modname=$1
2246         local facet=$2
2247         local parampat=$3
2248         local opts=$4
2249         local tmin
2250         local tmin2
2251         local tmax
2252         local tmax2
2253         local tstarted
2254         local paramp
2255         local msg="Insane $modname thread counts"
2256         shift 4
2257
2258         setup
2259         check_mount || return 41
2260
2261         # We need to expand $parampat, but it may match multiple parameters, so
2262         # we'll pick the first one
2263         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
2264                 error "Couldn't expand ${parampat}.threads_min parameter name"
2265                 return 22
2266         fi
2267
2268         # Remove the .threads_min part
2269         paramp=${paramp%.threads_min}
2270
2271         # Check for sanity in defaults
2272         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2273         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2274         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
2275         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
2276         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= tmax ))' || return $?
2277
2278         # Check that we can lower min/max
2279         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin - 1))"
2280         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - 10))"
2281         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2282         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2283         lassert 25 "$msg" '(($tmin2 == ($tmin - 1) && $tmax2 == ($tmax -10)))' || return $?
2284
2285         # Check that we can set min/max to the same value
2286         do_facet $facet "lctl set_param ${paramp}.threads_min=$tmin"
2287         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
2288         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2289         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2290         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
2291
2292         # Check that we can't set max < min
2293         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
2294         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2295         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2296         lassert 27 "$msg" '(($tmin <= $tmax2))' || return $?
2297
2298         # We need to ensure that we get the module options desired; to do this
2299         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
2300         LOAD_MODULES_REMOTE=true
2301         cleanup
2302         local oldvalue
2303         setmodopts -a $modname "$opts" oldvalue
2304
2305         load_modules
2306         setup
2307         check_mount || return 41
2308
2309         # Restore previous setting of MODOPTS_*
2310         setmodopts $modname "$oldvalue"
2311
2312         # Check that $opts took
2313         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
2314         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
2315         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
2316         lassert 28 "$msg" '(($tstarted == $tmin && $tstarted == $tmax ))' || return $?
2317         cleanup
2318
2319         # Workaround a YALA bug where YALA expects that modules will remain
2320         # loaded on the servers
2321         LOAD_MODULES_REMOTE=false
2322         load_modules
2323         setup
2324         cleanup
2325 }
2326
2327 test_53a() {
2328         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads=64'
2329 }
2330 run_test 53a "check OSS thread count params"
2331
2332 test_53b() {
2333         thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads=64'
2334 }
2335 run_test 53b "check MDT thread count params"
2336
2337 if ! combined_mgs_mds ; then
2338         stop mgs
2339 fi
2340
2341 run_llverfs()
2342 {
2343         local dir=$1
2344         local partial_arg=""
2345         local size=$(df -B G $dir | tail -1 | awk '{print $2}' | sed 's/G//') # Gb
2346
2347         # Run in partial (fast) mode if the size
2348         # of a partition > 10 GB
2349         [ $size -gt 10 ] && partial_arg="-p"
2350
2351         llverfs $partial_arg $dir
2352 }
2353
2354 test_54a() {
2355     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1)
2356     [ $? -eq 0 ] || error "llverdev failed!"
2357     reformat_and_config
2358 }
2359 run_test 54a "llverdev"
2360
2361 test_54b() {
2362     setup
2363     run_llverfs $MOUNT
2364     [ $? -eq 0 ] || error "llverfs failed!"
2365     cleanup
2366 }
2367 run_test 54b "llverfs"
2368
2369 cleanup_gss
2370 equals_msg `basename $0`: test complete
2371 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true