Whamcloud - gitweb
b=22671 Check for modules directly instead of keeping state
[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         TEST="lctl get_param -n llite.$FSNAME-*.max_read_ahead_whole_mb"
933         ORIG=$($TEST)
934         LIST=(1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5)
935         for i in ${LIST[@]}; do
936             set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $i || return 3
937         done
938         # make sure client restart still works
939         umount_client $MOUNT
940         mount_client $MOUNT || return 4
941         [ "$($TEST)" -ne "$i" ] && return 5
942         set_and_check client "$TEST" "$FSNAME.llite.max_read_ahead_whole_mb" $ORIG || return 6
943         cleanup
944 }
945 run_test 30 "Big config llog"
946
947 test_31() { # bug 10734
948         # ipaddr must not exist
949         mount -t lustre 4.3.2.1@tcp:/lustre $MOUNT || true
950         cleanup
951 }
952 run_test 31 "Connect to non-existent node (shouldn't crash)"
953
954 # Use these start32/stop32 fn instead of t-f start/stop fn,
955 # for local devices, to skip global facet vars init
956 stop32 () {
957         local facet=$1
958         shift
959         echo "Stopping local ${MOUNT%/*}/${facet} (opts:$@)"
960         umount -d $@ ${MOUNT%/*}/${facet}
961         losetup -a
962 }
963
964 start32 () {
965         local facet=$1
966         shift
967         local device=$1
968         shift
969         mkdir -p ${MOUNT%/*}/${facet}
970
971         echo "Starting local ${facet}: $@ $device ${MOUNT%/*}/${facet}"
972         mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}
973         local RC=$?
974         if [ $RC -ne 0 ]; then
975                 echo "mount -t lustre $@ ${device} ${MOUNT%/*}/${facet}"
976                 echo "Start of ${device} of local ${facet} failed ${RC}"
977         fi
978         losetup -a
979         return $RC
980 }
981
982 cleanup_nocli32 () {
983         stop32 mds1 -f
984         stop32 ost1 -f
985         wait_exit_ST client
986 }
987
988 cleanup_32() {
989         trap 0
990         echo "Cleanup test_32 umount $MOUNT ..."
991         umount -f $MOUNT || true
992         echo "Cleanup local mds ost1 ..."
993         cleanup_nocli32
994         unload_modules
995 }
996
997 test_32a() {
998         client_only && skip "client only testing" && return 0
999         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1000         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return 0
1001
1002         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
1003         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
1004         local tmpdir=$TMP/conf32a
1005         mkdir -p $tmpdir
1006         tar xjvf $DISK1_8 -C $tmpdir || \
1007                 { skip_env "Cannot untar $DISK1_8" && return 0; }
1008
1009         load_modules
1010         $LCTL set_param debug=$PTLDEBUG
1011
1012         $TUNEFS $tmpdir/mds || error "tunefs failed"
1013
1014         # nids are wrong, so client wont work, but server should start
1015         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1016                 trap cleanup_32 EXIT INT || return 3
1017
1018         local UUID=$($LCTL get_param -n mdt.lustre-MDT0000.uuid)
1019         echo MDS uuid $UUID
1020         [ "$UUID" == "lustre-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
1021
1022         $TUNEFS --mgsnode=$HOSTNAME $tmpdir/ost1 || error "tunefs failed"
1023         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1024         UUID=$($LCTL get_param -n obdfilter.lustre-OST0000.uuid)
1025         echo OST uuid $UUID
1026         [ "$UUID" == "lustre-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1027
1028         local NID=$($LCTL list_nids | head -1)
1029
1030         echo "OSC changes should succeed:"
1031         $LCTL conf_param lustre-OST0000.osc.max_dirty_mb=15 || return 7
1032         $LCTL conf_param lustre-OST0000.failover.node=$NID || return 8
1033         echo "ok."
1034
1035         echo "MDC changes should succeed:"
1036         $LCTL conf_param lustre-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1037         $LCTL conf_param lustre-MDT0000.failover.node=$NID || return 10
1038         echo "ok."
1039
1040         echo "LOV changes should succeed:"
1041         $LCTL pool_new lustre.interop || return 11
1042         $LCTL conf_param lustre-MDT0000.lov.stripesize=4M || return 12
1043         echo "ok."
1044
1045         cleanup_32
1046
1047         # mount a second time to make sure we didnt leave upgrade flag on
1048         load_modules
1049         $TUNEFS --dryrun $tmpdir/mds || error "tunefs failed"
1050         start32 mds1 $tmpdir/mds "-o loop,exclude=lustre-OST0000" && \
1051                 trap cleanup_32 EXIT INT || return 12
1052
1053         cleanup_32
1054
1055         rm -rf $tmpdir || true  # true is only for TMP on NFS
1056 }
1057 run_test 32a "Upgrade from 1.8 (not live)"
1058
1059 test_32b() {
1060         client_only && skip "client only testing" && return 0
1061         [ "$NETTYPE" = "tcp" ] || { skip "NETTYPE != tcp" && return 0; }
1062         [ -z "$TUNEFS" ] && skip_env "No tunefs" && return
1063
1064         local DISK1_8=$LUSTRE/tests/disk1_8.tar.bz2
1065         [ ! -r $DISK1_8 ] && skip_env "Cannot find $DISK1_8" && return 0
1066         local tmpdir=$TMP/conf32b
1067         mkdir -p $tmpdir
1068         tar xjvf $DISK1_8 -C $tmpdir || \
1069                 { skip_env "Cannot untar $DISK1_8" && return ; }
1070
1071         load_modules
1072         $LCTL set_param debug="config"
1073         local NEWNAME=lustre
1074
1075         # writeconf will cause servers to register with their current nids
1076         $TUNEFS --writeconf --fsname=$NEWNAME $tmpdir/mds || error "tunefs failed"
1077         start32 mds1 $tmpdir/mds "-o loop" && \
1078                 trap cleanup_32 EXIT INT || return 3
1079
1080         local UUID=$($LCTL get_param -n mdt.${NEWNAME}-MDT0000.uuid)
1081         echo MDS uuid $UUID
1082         [ "$UUID" == "${NEWNAME}-MDT0000_UUID" ] || error "UUID is wrong: $UUID"
1083
1084         $TUNEFS --mgsnode=$HOSTNAME --writeconf --fsname=$NEWNAME $tmpdir/ost1 ||\
1085             error "tunefs failed"
1086         start32 ost1 $tmpdir/ost1 "-o loop" || return 5
1087         UUID=$($LCTL get_param -n obdfilter.${NEWNAME}-OST0000.uuid)
1088         echo OST uuid $UUID
1089         [ "$UUID" == "${NEWNAME}-OST0000_UUID" ] || error "UUID is wrong: $UUID"
1090
1091         local NID=$($LCTL list_nids | head -1)
1092
1093         echo "OSC changes should succeed:"
1094         $LCTL conf_param ${NEWNAME}-OST0000.osc.max_dirty_mb=15 || return 7
1095         $LCTL conf_param ${NEWNAME}-OST0000.failover.node=$NID || return 8
1096         echo "ok."
1097
1098         echo "MDC changes should succeed:"
1099         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=9 || return 9
1100         $LCTL conf_param ${NEWNAME}-MDT0000.failover.node=$NID || return 10
1101         echo "ok."
1102
1103         echo "LOV changes should succeed:"
1104         $LCTL pool_new ${NEWNAME}.interop || return 11
1105         $LCTL conf_param ${NEWNAME}-MDT0000.lov.stripesize=4M || return 12
1106         echo "ok."
1107
1108         # MDT and OST should have registered with new nids, so we should have
1109         # a fully-functioning client
1110         echo "Check client and old fs contents"
1111
1112         local device=`h2$NETTYPE $HOSTNAME`:/$NEWNAME
1113         echo "Starting local client: $HOSTNAME: $device $MOUNT"
1114         mount -t lustre $device $MOUNT || return 1
1115
1116         local old=$($LCTL get_param -n mdc.*.max_rpcs_in_flight)
1117         local new=$((old + 5))
1118         $LCTL conf_param ${NEWNAME}-MDT0000.mdc.max_rpcs_in_flight=$new
1119         wait_update $HOSTNAME "$LCTL get_param -n mdc.*.max_rpcs_in_flight" $new || return 11
1120
1121         [ "$(cksum $MOUNT/passwd | cut -d' ' -f 1,2)" == "94306271 1478" ] || return 12
1122         echo "ok."
1123
1124         cleanup_32
1125
1126         rm -rf $tmpdir || true  # true is only for TMP on NFS
1127 }
1128 run_test 32b "Upgrade from 1.8 with writeconf"
1129
1130 test_33a() { # bug 12333, was test_33
1131         local rc=0
1132         local FSNAME2=test-123
1133         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST
1134
1135         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" ]; then
1136                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1137                 skip_env "mixed loopback and real device not working" && return
1138         fi
1139
1140         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1141         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1142         add fs2mds $MDS_MKFS_OPTS --mkfsoptions='\"-J size=8\"' --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1143         add fs2ost $OST_MKFS_OPTS --fsname=${FSNAME2} --index=8191 --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1144
1145         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS && trap cleanup_24a EXIT INT
1146         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1147         do_facet $SINGLEMDS "$LCTL conf_param $FSNAME2.sys.timeout=200" || rc=1
1148         mkdir -p $MOUNT2
1149         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || rc=2
1150         echo "ok."
1151
1152         cp /etc/hosts $MOUNT2/ || rc=3
1153         $LFS getstripe $MOUNT2/hosts
1154
1155         umount -d $MOUNT2
1156         stop fs2ost -f
1157         stop fs2mds -f
1158         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev
1159         cleanup_nocli || rc=6
1160         return $rc
1161 }
1162 run_test 33a "Mount ost with a large index number"
1163
1164 test_33b() {    # was test_34
1165         setup
1166
1167         do_facet client dd if=/dev/zero of=$MOUNT/24 bs=1024k count=1
1168         # Drop lock cancelation reply during umount
1169         #define OBD_FAIL_LDLM_CANCEL             0x304
1170         do_facet client lctl set_param fail_loc=0x80000304
1171         #lctl set_param debug=-1
1172         umount_client $MOUNT
1173         cleanup
1174 }
1175 run_test 33b "Drop cancel during umount"
1176
1177 test_34a() {
1178         setup
1179         do_facet client "sh runmultiop_bg_pause $DIR/file O_c"
1180         manual_umount_client
1181         rc=$?
1182         do_facet client killall -USR1 multiop
1183         if [ $rc -eq 0 ]; then
1184                 error "umount not fail!"
1185         fi
1186         sleep 1
1187         cleanup
1188 }
1189 run_test 34a "umount with opened file should be fail"
1190
1191
1192 test_34b() {
1193         setup
1194         touch $DIR/$tfile || return 1
1195         stop_mds --force || return 2
1196
1197         manual_umount_client --force
1198         rc=$?
1199         if [ $rc -ne 0 ]; then
1200                 error "mtab after failed umount - rc $rc"
1201         fi
1202
1203         cleanup
1204         return 0
1205 }
1206 run_test 34b "force umount with failed mds should be normal"
1207
1208 test_34c() {
1209         setup
1210         touch $DIR/$tfile || return 1
1211         stop_ost --force || return 2
1212
1213         manual_umount_client --force
1214         rc=$?
1215         if [ $rc -ne 0 ]; then
1216                 error "mtab after failed umount - rc $rc"
1217         fi
1218
1219         cleanup
1220         return 0
1221 }
1222 run_test 34c "force umount with failed ost should be normal"
1223
1224 test_35a() { # bug 12459
1225         setup
1226
1227         DBG_SAVE="`lctl get_param -n debug`"
1228         lctl set_param debug="ha"
1229
1230         log "Set up a fake failnode for the MDS"
1231         FAKENID="127.0.0.2"
1232         local device=$(do_facet $SINGLEMDS "lctl get_param -n devices" | awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1233         do_facet $SINGLEMDS $LCTL conf_param ${device}.failover.node=$FAKENID || return 4
1234
1235         log "Wait for RECONNECT_INTERVAL seconds (10s)"
1236         sleep 10
1237
1238         MSG="conf-sanity.sh test_35a `date +%F%kh%Mm%Ss`"
1239         $LCTL clear
1240         log "$MSG"
1241         log "Stopping the MDT:"
1242         stop_mds || return 5
1243
1244         df $MOUNT > /dev/null 2>&1 &
1245         DFPID=$!
1246         log "Restarting the MDT:"
1247         start_mds || return 6
1248         log "Wait for df ($DFPID) ... "
1249         wait $DFPID
1250         log "done"
1251         lctl set_param debug="$DBG_SAVE"
1252
1253         # retrieve from the log the first server that the client tried to
1254         # contact after the connection loss
1255         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1256         NEXTCONN=`awk "/${MSG}/ {start = 1;}
1257                        /import_select_connection.*$device-mdc.* using connection/ {
1258                                 if (start) {
1259                                         if (\\\$NF ~ /$FAKENID/)
1260                                                 print \\\$NF;
1261                                         else
1262                                                 print 0;
1263                                         exit;
1264                                 }
1265                        }" $TMP/lustre-log-$TESTNAME.log`
1266         [ "$NEXTCONN" != "0" ] && log "The client didn't try to reconnect to the last active server (tried ${NEXTCONN} instead)" && return 7
1267         cleanup
1268 }
1269 run_test 35a "Reconnect to the last active server first"
1270
1271 test_35b() { # bug 18674
1272         remote_mds || { skip "local MDS" && return 0; }
1273         setup
1274
1275         debugsave
1276         $LCTL set_param debug="ha"
1277         $LCTL clear
1278         MSG="conf-sanity.sh test_35b `date +%F%kh%Mm%Ss`"
1279         log "$MSG"
1280
1281         log "Set up a fake failnode for the MDS"
1282         FAKENID="127.0.0.2"
1283         local device=$(do_facet mds "$LCTL get_param -n devices" | \
1284                         awk '($3 ~ "mdt" && $4 ~ "MDT") { print $4 }' | head -1)
1285         do_facet mds "$LCTL conf_param ${device}.failover.node=$FAKENID" || \
1286                 return 1
1287
1288         local at_max_saved=0
1289         # adaptive timeouts may prevent seeing the issue 
1290         if at_is_enabled; then
1291                 at_max_saved=$(at_max_get mds)
1292                 at_max_set 0 mds client
1293         fi
1294
1295         mkdir -p $MOUNT/testdir
1296         touch $MOUNT/testdir/test
1297
1298         log "Injecting EBUSY on MDS"
1299         # Setting OBD_FAIL_MDS_RESEND=0x136
1300         do_facet mds "$LCTL set_param fail_loc=0x80000136" || return 2
1301
1302         log "Stat on a test file"
1303         stat $MOUNT/testdir/test
1304
1305         log "Stop injecting EBUSY on MDS"
1306         do_facet mds "$LCTL set_param fail_loc=0" || return 3
1307         rm -f $MOUNT/testdir/test
1308
1309         log "done"
1310         # restore adaptive timeout
1311         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds client
1312
1313         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1314
1315         # retrieve from the log if the client has ever tried to
1316         # contact the fake server after the loss of connection
1317         FAILCONN=`awk "BEGIN {ret = 0;}
1318                        /import_select_connection.*${FSNAME}-MDT0000-mdc.* using connection/ {
1319                                 ret = 1;
1320                                 if (\\\$NF ~ /$FAKENID/) {
1321                                         ret = 2;
1322                                         exit;
1323                                 }
1324                        }
1325                        END {print ret}" $TMP/lustre-log-$TESTNAME.log`
1326
1327         [ "$FAILCONN" == "0" ] && \
1328                 log "ERROR: The client reconnection has not been triggered" && \
1329                 return 4
1330         [ "$FAILCONN" == "2" ] && \
1331                 log "ERROR: The client tried to reconnect to the failover server while the primary was busy" && \
1332                 return 5
1333
1334         cleanup
1335 }
1336 run_test 35b "Continue reconnection retries, if the active server is busy"
1337
1338 test_36() { # 12743
1339         local rc
1340         local FSNAME2=test1234
1341         local fs3ost_HOST=$ost_HOST
1342
1343         [ -n "$ost1_HOST" ] && fs2ost_HOST=$ost1_HOST && fs3ost_HOST=$ost1_HOST
1344         rc=0
1345
1346         if [ -z "$fs2ost_DEV" -o -z "$fs2mds_DEV" -o -z "$fs3ost_DEV" ]; then
1347                 do_facet $SINGLEMDS [ -b "$MDSDEV" ] && \
1348                 skip_env "mixed loopback and real device not working" && return
1349         fi
1350         [ $OSTCOUNT -lt 2 ] && skip_env "skipping test for single OST" && return
1351
1352         [ "$ost_HOST" = "`hostname`" -o "$ost1_HOST" = "`hostname`" ] || \
1353                 { skip "remote OST" && return 0; }
1354
1355         local fs2mdsdev=${fs2mds_DEV:-${MDSDEV}_2}
1356         local fs2ostdev=${fs2ost_DEV:-$(ostdevname 1)_2}
1357         local fs3ostdev=${fs3ost_DEV:-$(ostdevname 2)_2}
1358         add fs2mds $MDS_MKFS_OPTS --fsname=${FSNAME2} --reformat $fs2mdsdev || exit 10
1359         # XXX after we support non 4K disk blocksize, change following --mkfsoptions with
1360         # other argument
1361         add fs2ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs2ostdev || exit 10
1362         add fs3ost $OST_MKFS_OPTS --mkfsoptions='-b4096' --fsname=${FSNAME2} --mgsnode=$MGSNID --reformat $fs3ostdev || exit 10
1363
1364         start fs2mds $fs2mdsdev $MDS_MOUNT_OPTS
1365         start fs2ost $fs2ostdev $OST_MOUNT_OPTS
1366         start fs3ost $fs3ostdev $OST_MOUNT_OPTS
1367         mkdir -p $MOUNT2
1368         mount -t lustre $MGSNID:/${FSNAME2} $MOUNT2 || return 1
1369
1370         sleep 5 # until 11778 fixed
1371
1372         dd if=/dev/zero of=$MOUNT2/$tfile bs=1M count=7 || return 2
1373
1374         BKTOTAL=`lctl get_param -n obdfilter.*.kbytestotal | awk 'BEGIN{total=0}; {total+=$1}; END{print total}'`
1375         BKFREE=`lctl get_param -n obdfilter.*.kbytesfree | awk 'BEGIN{free=0}; {free+=$1}; END{print free}'`
1376         BKAVAIL=`lctl get_param -n obdfilter.*.kbytesavail | awk 'BEGIN{avail=0}; {avail+=$1}; END{print avail}'`
1377         STRING=`df -P $MOUNT2 | tail -n 1 | awk '{print $2","$3","$4}'`
1378         DFTOTAL=`echo $STRING | cut -d, -f1`
1379         DFUSED=`echo $STRING  | cut -d, -f2`
1380         DFAVAIL=`echo $STRING | cut -d, -f3`
1381         DFFREE=$(($DFTOTAL - $DFUSED))
1382
1383         ALLOWANCE=$((64 * $OSTCOUNT))
1384
1385         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
1386            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
1387                 echo "**** FAIL: df total($DFTOTAL) mismatch OST total($BKTOTAL)"
1388                 rc=1
1389         fi
1390         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
1391            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
1392                 echo "**** FAIL: df free($DFFREE) mismatch OST free($BKFREE)"
1393                 rc=2
1394         fi
1395         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
1396            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
1397                 echo "**** FAIL: df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
1398                 rc=3
1399        fi
1400
1401         umount -d $MOUNT2
1402         stop fs3ost -f || return 200
1403         stop fs2ost -f || return 201
1404         stop fs2mds -f || return 202
1405         rm -rf $MOUNT2 $fs2mdsdev $fs2ostdev $fs3ostdev
1406         unload_modules || return 203
1407         return $rc
1408 }
1409 run_test 36 "df report consistency on OSTs with different block size"
1410
1411 test_37() {
1412         client_only && skip "client only testing" && return 0
1413         LOCAL_MDSDEV="$TMP/mdt.img"
1414         SYM_MDSDEV="$TMP/sym_mdt.img"
1415
1416         echo "MDS :     $LOCAL_MDSDEV"
1417         echo "SYMLINK : $SYM_MDSDEV"
1418         rm -f $LOCAL_MDSDEV
1419
1420         touch $LOCAL_MDSDEV
1421         mkfs.lustre --reformat --fsname=lustre --mdt --mgs --device-size=9000 $LOCAL_MDSDEV ||
1422                 error "mkfs.lustre $LOCAL_MDSDEV failed"
1423         ln -s $LOCAL_MDSDEV $SYM_MDSDEV
1424
1425         echo "mount symlink device - $SYM_MDSDEV"
1426
1427         mount_op=`mount -v -t lustre -o loop $SYM_MDSDEV ${MOUNT%/*}/mds 2>&1 | grep "unable to set tunable"`
1428         umount -d ${MOUNT%/*}/mds
1429         rm -f $LOCAL_MDSDEV $SYM_MDSDEV
1430
1431         if [ -n "$mount_op" ]; then
1432                 error "**** FAIL: set tunables failed for symlink device"
1433         fi
1434         return 0
1435 }
1436 run_test 37 "verify set tunables works for symlink device"
1437
1438 test_38() { # bug 14222
1439         setup
1440         # like runtests
1441         COUNT=10
1442         SRC="/etc /bin"
1443         FILES=`find $SRC -type f -mtime +1 | head -n $COUNT`
1444         log "copying $(echo $FILES | wc -w) files to $DIR/$tdir"
1445         mkdir -p $DIR/$tdir
1446         tar cf - $FILES | tar xf - -C $DIR/$tdir || \
1447                 error "copying $SRC to $DIR/$tdir"
1448         sync
1449         umount_client $MOUNT
1450         stop_mds
1451         log "rename lov_objid file on MDS"
1452         rm -f $TMP/lov_objid.orig
1453
1454         local dev=${SINGLEMDS}_dev
1455         local MDSDEV=${!dev}
1456         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.orig\\\" $MDSDEV"
1457         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1458
1459         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.orig"
1460         # check create in mds_lov_connect
1461         start_mds
1462         mount_client $MOUNT
1463         for f in $FILES; do
1464                 [ $V ] && log "verifying $DIR/$tdir/$f"
1465                 diff -q $f $DIR/$tdir/$f || ERROR=y
1466         done
1467         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new\\\"  $MDSDEV"
1468         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new"
1469         [ "$ERROR" = "y" ] && error "old and new files are different after connect" || true
1470
1471         # check it's updates in sync
1472         umount_client $MOUNT
1473         stop_mds
1474
1475         do_facet $SINGLEMDS dd if=/dev/zero of=$TMP/lov_objid.clear bs=4096 count=1
1476         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"rm lov_objid\\\" $MDSDEV"
1477         do_facet $SINGLEMDS "$DEBUGFS -w -R \\\"write $TMP/lov_objid.clear lov_objid\\\" $MDSDEV "
1478
1479         start_mds
1480         mount_client $MOUNT
1481         for f in $FILES; do
1482                 [ $V ] && log "verifying $DIR/$tdir/$f"
1483                 diff -q $f $DIR/$tdir/$f || ERROR=y
1484         done
1485         do_facet $SINGLEMDS "$DEBUGFS -c -R \\\"dump lov_objid $TMP/lov_objid.new1\\\" $MDSDEV"
1486         do_facet $SINGLEMDS "od -Ax -td8 $TMP/lov_objid.new1"
1487         umount_client $MOUNT
1488         stop_mds
1489         [ "$ERROR" = "y" ] && error "old and new files are different after sync" || true
1490
1491         log "files compared the same"
1492         cleanup
1493 }
1494 run_test 38 "MDS recreates missing lov_objid file from OST data"
1495
1496 test_39() {
1497         PTLDEBUG=+malloc
1498         setup
1499         cleanup
1500         perl $SRCDIR/leak_finder.pl $TMP/debug 2>&1 | egrep '*** Leak:' &&
1501                 error "memory leak detected" || true
1502 }
1503 run_test 39 "leak_finder recognizes both LUSTRE and LNET malloc messages"
1504
1505 test_40() { # bug 15759
1506         start_ost
1507         #define OBD_FAIL_TGT_TOOMANY_THREADS     0x706
1508         do_facet $SINGLEMDS "sysctl -w lustre.fail_loc=0x80000706"
1509         start_mds
1510         cleanup
1511 }
1512 run_test 40 "race during service thread startup"
1513
1514 test_41() { #bug 14134
1515         local rc
1516         local dev=${SINGLEMDS}_dev
1517         local MDSDEV=${!dev}
1518
1519         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nosvc -n
1520         start ost1 `ostdevname 1` $OST_MOUNT_OPTS
1521         start $SINGLEMDS $MDSDEV $MDS_MOUNT_OPTS -o nomgs,force
1522         mkdir -p $MOUNT
1523         mount_client $MOUNT || return 1
1524         sleep 5
1525
1526         echo "blah blah" > $MOUNT/$tfile
1527         cat $MOUNT/$tfile
1528
1529         umount_client $MOUNT
1530         stop ost1 -f || return 201
1531         stop_mds -f || return 202
1532         stop_mds -f || return 203
1533         unload_modules || return 204
1534         return $rc
1535 }
1536 run_test 41 "mount mds with --nosvc and --nomgs"
1537
1538 test_42() { #bug 14693
1539         setup
1540         check_mount || return 2
1541         do_facet mgs $LCTL conf_param lustre.llite.some_wrong_param=10
1542         umount_client $MOUNT
1543         mount_client $MOUNT || return 1
1544         cleanup
1545         return 0
1546 }
1547 run_test 42 "invalid config param should not prevent client from mounting"
1548
1549 test_43() {
1550     [ $UID -ne 0 -o $RUNAS_ID -eq 0 ] && skip_env "run as root"
1551     setup
1552     chmod ugo+x $DIR || error "chmod 0 failed"
1553     set_and_check mds                                        \
1554         "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"  \
1555         "$FSNAME.mdt.root_squash"                            \
1556         "0:0"
1557     set_and_check mds                                        \
1558        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1559        "$FSNAME.mdt.nosquash_nids"                           \
1560        "NONE"
1561
1562     #
1563     # create set of test files
1564     #
1565     echo "111" > $DIR/$tfile-userfile || error "write 1 failed"
1566     chmod go-rw $DIR/$tfile-userfile  || error "chmod 1 failed"
1567     chown $RUNAS_ID.$RUNAS_ID $DIR/$tfile-userfile || error "chown failed"
1568
1569     echo "222" > $DIR/$tfile-rootfile || error "write 2 failed"
1570     chmod go-rw $DIR/$tfile-rootfile  || error "chmod 2 faield"
1571
1572     mkdir $DIR/$tdir-rootdir -p       || error "mkdir failed"
1573     chmod go-rwx $DIR/$tdir-rootdir   || error "chmod 3 failed"
1574     touch $DIR/$tdir-rootdir/tfile-1  || error "touch failed"
1575
1576     #
1577     # check root_squash:
1578     #   set root squash UID:GID to RUNAS_ID
1579     #   root should be able to access only files owned by RUNAS_ID
1580     #
1581     set_and_check mds                                        \
1582        "lctl get_param -n mdt.$FSNAME-MDT0000.root_squash"   \
1583        "$FSNAME.mdt.root_squash"                             \
1584        "$RUNAS_ID:$RUNAS_ID"
1585
1586     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-userfile)
1587     dd if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1588         error "$ST: root read permission is denied"
1589     echo "$ST: root read permission is granted - ok"
1590
1591     echo "444" | \
1592     dd conv=notrunc if=$DIR/$tfile-userfile 1>/dev/null 2>/dev/null || \
1593         error "$ST: root write permission is denied"
1594     echo "$ST: root write permission is granted - ok"
1595
1596     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1597     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1598         error "$ST: root read permission is granted"
1599     echo "$ST: root read permission is denied - ok"
1600
1601     echo "555" | \
1602     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null && \
1603         error "$ST: root write permission is granted"
1604     echo "$ST: root write permission is denied - ok"
1605
1606     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1607     rm $DIR/$tdir-rootdir/tfile-1 1>/dev/null 2>/dev/null && \
1608         error "$ST: root unlink permission is granted"
1609     echo "$ST: root unlink permission is denied - ok"
1610
1611     touch $DIR/tdir-rootdir/tfile-2 1>/dev/null 2>/dev/null && \
1612         error "$ST: root create permission is granted"
1613     echo "$ST: root create permission is denied - ok"
1614
1615     #
1616     # check nosquash_nids:
1617     #   put client's NID into nosquash_nids list,
1618     #   root should be able to access root file after that
1619     #
1620     local NIDLIST=$(lctl list_nids all | tr '\n' ' ')
1621     NIDLIST="2@elan $NIDLIST 192.168.0.[2,10]@tcp"
1622     NIDLIST=$(echo $NIDLIST | tr -s ' ' ' ')
1623     set_and_check mds                                        \
1624        "lctl get_param -n mdt.$FSNAME-MDT0000.nosquash_nids" \
1625        "$FSNAME-MDTall.mdt.nosquash_nids"                    \
1626        "$NIDLIST"
1627
1628     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tfile-rootfile)
1629     dd if=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1630         error "$ST: root read permission is denied"
1631     echo "$ST: root read permission is granted - ok"
1632
1633     echo "666" | \
1634     dd conv=notrunc of=$DIR/$tfile-rootfile 1>/dev/null 2>/dev/null || \
1635         error "$ST: root write permission is denied"
1636     echo "$ST: root write permission is granted - ok"
1637
1638     ST=$(stat -c "%n: owner uid %u (%A)" $DIR/$tdir-rootdir)
1639     rm $DIR/$tdir-rootdir/tfile-1 || \
1640         error "$ST: root unlink permission is denied"
1641     echo "$ST: root unlink permission is granted - ok"
1642     touch $DIR/$tdir-rootdir/tfile-2 || \
1643         error "$ST: root create permission is denied"
1644     echo "$ST: root create permission is granted - ok"
1645
1646     return 0
1647 }
1648 run_test 43 "check root_squash and nosquash_nids"
1649
1650 umount_client $MOUNT
1651 cleanup_nocli
1652
1653 test_44() { # 16317
1654         setup
1655         check_mount || return 2
1656         UUID=$($LCTL get_param llite.${FSNAME}*.uuid | cut -d= -f2)
1657         STATS_FOUND=no
1658         UUIDS=$(do_facet mds "$LCTL get_param mdt.${FSNAME}*.exports.*.uuid")
1659         for VAL in $UUIDS; do
1660                 NID=$(echo $VAL | cut -d= -f1)
1661                 CLUUID=$(echo $VAL | cut -d= -f2)
1662                 [ "$UUID" = "$CLUUID" ] && STATS_FOUND=yes && break
1663         done
1664         [ "$STATS_FOUND" = "no" ] && error "stats not found for client"
1665         cleanup
1666         return 0
1667 }
1668 run_test 44 "mounted client proc entry exists"
1669
1670 test_45() { #17310
1671         setup
1672         check_mount || return 2
1673         stop_mds
1674         df -h $MOUNT &
1675         log "sleep 60 sec"
1676         sleep 60
1677 #define OBD_FAIL_PTLRPC_LONG_UNLINK   0x50f
1678         do_facet client "lctl set_param fail_loc=0x50f"
1679         log "sleep 10 sec"
1680         sleep 10
1681         manual_umount_client --force || return 3
1682         do_facet client "lctl set_param fail_loc=0x0"
1683         start_mds
1684         mount_client $MOUNT || return 4
1685         cleanup
1686         return 0
1687 }
1688 run_test 45 "long unlink handling in ptlrpcd"
1689
1690 cleanup_46a() {
1691         trap 0
1692         local rc=0
1693         local count=$1
1694
1695         umount_client $MOUNT2 || rc=$?
1696         umount_client $MOUNT || rc=$?
1697         while [ $count -gt 0 ]; do
1698                 stop ost${count} -f || rc=$?
1699                 let count=count-1
1700         done    
1701         stop_mds || rc=$? 
1702         # writeconf is needed after the test, otherwise,
1703         # we might end up with extra OSTs
1704         writeconf || rc=$?
1705         cleanup_nocli || rc=$?
1706         return $rc
1707 }
1708
1709 test_46a() {
1710         echo "Testing with $OSTCOUNT OSTs"
1711         reformat_and_config
1712         start_mds || return 1
1713         #first client should see only one ost
1714         start_ost || return 2
1715         wait_osc_import_state mds ost FULL
1716         #start_client
1717         mount_client $MOUNT || return 3
1718         trap "cleanup_46a $OSTCOUNT" EXIT ERR
1719
1720         local i 
1721         for (( i=2; i<=$OSTCOUNT; i++ )); do
1722             start ost$i `ostdevname $i` $OST_MOUNT_OPTS || return $((i+2))
1723         done
1724
1725         # wait until osts in sync
1726         for (( i=2; i<=$OSTCOUNT; i++ )); do
1727             wait_osc_import_state mds ost$i FULL
1728         done
1729
1730
1731         #second client see all ost's
1732
1733         mount_client $MOUNT2 || return 8
1734         $LFS setstripe $MOUNT2 -c -1 || return 9
1735         $LFS getstripe $MOUNT2 || return 10
1736
1737         echo "ok" > $MOUNT2/widestripe
1738         $LFS getstripe $MOUNT2/widestripe || return 11
1739         # fill acl buffer for avoid expand lsm to them
1740         awk -F : '{if (FNR < 25) { print "u:"$1":rwx" }}' /etc/passwd | while read acl; do
1741             setfacl -m $acl $MOUNT2/widestripe
1742         done
1743
1744         # will be deadlock
1745         stat $MOUNT/widestripe || return 12
1746
1747         cleanup_46a $OSTCOUNT || { echo "cleanup_46a failed!" && return 13; }
1748         return 0
1749 }
1750 run_test 46a "handle ost additional - wide striped file"
1751
1752 test_47() { #17674
1753         reformat
1754         setup_noconfig
1755         check_mount || return 2
1756         $LCTL set_param ldlm.namespaces.$FSNAME-*-*-*.lru_size=100
1757
1758         local lru_size=[]
1759         local count=0
1760         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1761             if echo $ns | grep "MDT[[:digit:]]*"; then
1762                 continue
1763             fi
1764             lrs=$(echo $ns | sed 's/.*lru_size=//')
1765             lru_size[count]=$lrs
1766             let count=count+1
1767         done
1768
1769         facet_failover ost1
1770         facet_failover $SINGLEMDS
1771         client_up || return 3
1772
1773         count=0
1774         for ns in $($LCTL get_param ldlm.namespaces.$FSNAME-*-*-*.lru_size); do
1775             if echo $ns | grep "MDT[[:digit:]]*"; then
1776                 continue
1777             fi
1778             lrs=$(echo $ns | sed 's/.*lru_size=//')
1779             if ! test "$lrs" -eq "${lru_size[count]}"; then
1780                 n=$(echo $ns | sed -e 's/ldlm.namespaces.//' -e 's/.lru_size=.*//')
1781                 error "$n has lost lru_size: $lrs vs. ${lru_size[count]}"
1782             fi
1783             let count=count+1
1784         done
1785
1786         cleanup
1787         return 0
1788 }
1789 run_test 47 "server restart does not make client loss lru_resize settings"
1790
1791 cleanup_48() {
1792         trap 0
1793
1794         # reformat after this test is needed - if test will failed
1795         # we will have unkillable file at FS
1796         reformat_and_config
1797 }
1798
1799 test_48() { # bug 17636
1800         reformat
1801         setup_noconfig
1802         check_mount || return 2
1803
1804         $LFS setstripe $MOUNT -c -1 || return 9
1805         $LFS getstripe $MOUNT || return 10
1806
1807         echo "ok" > $MOUNT/widestripe
1808         $LFS getstripe $MOUNT/widestripe || return 11
1809
1810         trap cleanup_48 EXIT ERR
1811
1812         # fill acl buffer for avoid expand lsm to them
1813         getent passwd | awk -F : '{ print "u:"$1":rwx" }' |  while read acl; do
1814             setfacl -m $acl $MOUNT/widestripe
1815         done
1816
1817         stat $MOUNT/widestripe || return 12
1818
1819         cleanup_48
1820         return 0
1821 }
1822 run_test 48 "too many acls on file"
1823
1824 # check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE
1825 test_49() { # bug 17710
1826         local OLD_MDS_MKFS_OPTS=$MDS_MKFS_OPTS
1827         local OLD_OST_MKFS_OPTS=$OST_MKFS_OPTS
1828         local LOCAL_TIMEOUT=20
1829
1830
1831         OST_MKFS_OPTS="--ost --fsname=$FSNAME --device-size=$OSTSIZE --mgsnode=$MGSNID --param sys.timeout=$LOCAL_TIMEOUT --param sys.ldlm_timeout=$LOCAL_TIMEOUT $MKFSOPT $OSTOPT"
1832
1833         reformat
1834         setup_noconfig
1835         check_mount || return 1
1836
1837         echo "check ldlm_timout..."
1838         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1839         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1840         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1841
1842         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1843                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1844         fi
1845
1846         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT / 3)) ]; then
1847                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1848         fi
1849
1850         umount_client $MOUNT
1851         stop_ost || return 2
1852         stop_mds || return 3
1853
1854         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"
1855
1856         reformat
1857         setup_noconfig
1858         check_mount || return 7
1859
1860         LDLM_MDS="`do_facet mds lctl get_param -n ldlm_timeout`"
1861         LDLM_OST1="`do_facet ost1 lctl get_param -n ldlm_timeout`"
1862         LDLM_CLIENT="`do_facet client lctl get_param -n ldlm_timeout`"
1863
1864         if [ $LDLM_MDS -ne $LDLM_OST1 ] || [ $LDLM_MDS -ne $LDLM_CLIENT ]; then
1865                 error "Different LDLM_TIMEOUT:$LDLM_MDS $LDLM_OST1 $LDLM_CLIENT"
1866         fi
1867
1868         if [ $LDLM_MDS -ne $((LOCAL_TIMEOUT - 1)) ]; then
1869                 error "LDLM_TIMEOUT($LDLM_MDS) is not correct"
1870         fi
1871
1872         cleanup || return $?
1873
1874         MDS_MKFS_OPTS=$OLD_MDS_MKFS_OPTS
1875         OST_MKFS_OPTS=$OLD_OST_MKFS_OPTS
1876 }
1877 run_test 49 "check PARAM_SYS_LDLM_TIMEOUT option of MKFS.LUSTRE"
1878
1879 lazystatfs() {
1880         # Test both statfs and lfs df and fail if either one fails
1881         multiop_bg_pause $1 f_
1882         RC1=$?
1883         PID=$!
1884         killall -USR1 multiop
1885         [ $RC1 -ne 0 ] && log "lazystatfs multiop failed"
1886         wait $PID || { RC1=$?; log "multiop return error "; }
1887
1888         $LFS df &
1889         PID=$!
1890         sleep 5
1891         kill -s 0 $PID
1892         RC2=$?
1893         if [ $RC2 -eq 0 ]; then
1894             kill -s 9 $PID
1895             log "lazystatfs df failed"
1896         fi
1897
1898         RC=0
1899         [[ $RC1 -ne 0 || $RC2 -eq 0 ]] && RC=1
1900         return $RC
1901 }
1902
1903 test_50a() {
1904         setup
1905         lctl set_param llite.$FSNAME-*.lazystatfs=1
1906         touch $DIR/$tfile
1907
1908         lazystatfs $MOUNT || error "lazystatfs failed but no down servers"
1909
1910         cleanup || return $?
1911 }
1912 run_test 50a "lazystatfs all servers available =========================="
1913
1914 test_50b() {
1915         setup
1916         lctl set_param llite.$FSNAME-*.lazystatfs=1
1917         touch $DIR/$tfile
1918
1919         # Wait for client to detect down OST
1920         stop_ost || error "Unable to stop OST1"
1921         wait_osc_import_state mds ost DISCONN
1922
1923         lazystatfs $MOUNT || error "lazystatfs should don't have returned EIO"
1924
1925         umount_client $MOUNT || error "Unable to unmount client"
1926         stop_mds || error "Unable to stop MDS"
1927 }
1928 run_test 50b "lazystatfs all servers down =========================="
1929
1930 test_50c() {
1931         start_mds || error "Unable to start MDS"
1932         start_ost || error "Unable to start OST1"
1933         start_ost2 || error "Unable to start OST2"
1934         mount_client $MOUNT || error "Unable to mount client"
1935         lctl set_param llite.$FSNAME-*.lazystatfs=1
1936         touch $DIR/$tfile
1937
1938         # Wait for client to detect down OST
1939         stop_ost || error "Unable to stop OST1"
1940         wait_osc_import_state mds ost DISCONN
1941         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1942
1943         umount_client $MOUNT || error "Unable to unmount client"
1944         stop_ost2 || error "Unable to stop OST2"
1945         stop_mds || error "Unable to stop MDS"
1946 }
1947 run_test 50c "lazystatfs one server down =========================="
1948
1949 test_50d() {
1950         start_mds || error "Unable to start MDS"
1951         start_ost || error "Unable to start OST1"
1952         start_ost2 || error "Unable to start OST2"
1953         mount_client $MOUNT || error "Unable to mount client"
1954         lctl set_param llite.$FSNAME-*.lazystatfs=1
1955         touch $DIR/$tfile
1956
1957         # Issue the statfs during the window where the client still
1958         # belives the OST to be available but it is in fact down.
1959         # No failure just a statfs which hangs for a timeout interval.
1960         stop_ost || error "Unable to stop OST1"
1961         lazystatfs $MOUNT || error "lazystatfs failed with one down server"
1962
1963         umount_client $MOUNT || error "Unable to unmount client"
1964         stop_ost2 || error "Unable to stop OST2"
1965         stop_mds || error "Unable to stop MDS"
1966 }
1967 run_test 50d "lazystatfs client/server conn race =========================="
1968
1969 test_50e() {
1970         local RC1
1971         local pid
1972
1973         reformat_and_config
1974         start_mds || return 1
1975         #first client should see only one ost
1976         start_ost || return 2
1977         wait_osc_import_state mds ost FULL
1978
1979         # Wait for client to detect down OST
1980         stop_ost || error "Unable to stop OST1"
1981         wait_osc_import_state mds ost DISCONN
1982
1983         mount_client $MOUNT || error "Unable to mount client"
1984         lctl set_param llite.$FSNAME-*.lazystatfs=0
1985
1986         multiop_bg_pause $MOUNT _f
1987         RC1=$?
1988         pid=$!
1989
1990         if [ $RC1 -ne 0 ]; then
1991                 log "multiop failed $RC1"
1992         else
1993             kill -USR1 $pid
1994             sleep $(( $TIMEOUT+1 ))
1995             kill -0 $pid
1996             [ $? -ne 0 ] && error "process isn't sleep"
1997             start_ost || error "Unable to start OST1"
1998             wait $pid || error "statfs failed"
1999         fi
2000
2001         umount_client $MOUNT || error "Unable to unmount client"
2002         stop_ost || error "Unable to stop OST1"
2003         stop_mds || error "Unable to stop MDS"
2004 }
2005 run_test 50e "normal statfs all servers down =========================="
2006
2007 test_50f() {
2008         local RC1
2009         local pid
2010         CONN_PROC="osc.$FSNAME-OST0001-osc-[M]*.ost_server_uuid"
2011
2012         start_mds || error "Unable to start mds"
2013         #first client should see only one ost
2014         start_ost || error "Unable to start OST1"
2015         wait_osc_import_state mds ost FULL
2016
2017         start_ost2 || error "Unable to start OST2"
2018         wait_osc_import_state mds ost2 FULL
2019
2020         # Wait for client to detect down OST
2021         stop_ost2 || error "Unable to stop OST2"
2022
2023         wait_osc_import_state mds ost2 DISCONN
2024         mount_client $MOUNT || error "Unable to mount client"
2025         lctl set_param llite.$FSNAME-*.lazystatfs=0
2026
2027         multiop_bg_pause $MOUNT _f
2028         RC1=$?
2029         pid=$!
2030
2031         if [ $RC1 -ne 0 ]; then
2032                 log "lazystatfs multiop failed $RC1"
2033         else
2034             kill -USR1 $pid
2035             sleep $(( $TIMEOUT+1 ))
2036             kill -0 $pid
2037             [ $? -ne 0 ] && error "process isn't sleep"
2038             start_ost2 || error "Unable to start OST2"
2039             wait $pid || error "statfs failed"
2040             stop_ost2 || error "Unable to stop OST2"
2041         fi
2042
2043         umount_client $MOUNT || error "Unable to unmount client"
2044         stop_ost || error "Unable to stop OST1"
2045         stop_mds || error "Unable to stop MDS"
2046         writeconf
2047 }
2048 run_test 50f "normal statfs one server in down =========================="
2049
2050 test_50g() {
2051         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2, skipping" && return
2052         setup
2053         start_ost2 || error "Unable to start OST2"
2054
2055         local PARAM="${FSNAME}-OST0001.osc.active"
2056
2057         $LFS setstripe -c -1 $DIR/$tfile || error "Unable to lfs setstripe"
2058         do_facet mgs $LCTL conf_param $PARAM=0 || error "Unable to deactivate OST"
2059
2060         umount_client $MOUNT || error "Unable to unmount client"
2061         mount_client $MOUNT || error "Unable to mount client"
2062         # This df should not cause a panic
2063         df -k $MOUNT
2064
2065         do_facet mgs $LCTL conf_param $PARAM=1 || error "Unable to activate OST"
2066         rm -f $DIR/$tfile
2067         umount_client $MOUNT || error "Unable to unmount client"
2068         stop_ost2 || error "Unable to stop OST2"
2069         stop_ost || error "Unable to stop OST1"
2070         stop_mds || error "Unable to stop MDS"
2071         writeconf
2072 }
2073 run_test 50g "deactivated OST should not cause panic====================="
2074
2075 test_51() {
2076         local LOCAL_TIMEOUT=20
2077
2078         reformat
2079         setup_noconfig
2080         check_mount || return 1
2081
2082         mkdir $MOUNT/d1
2083         $LFS setstripe -c -1 $MOUNT/d1
2084         #define OBD_FAIL_MDS_REINT_DELAY         0x142
2085         do_facet $SINGLEMDS "lctl set_param fail_loc=0x142"
2086         touch $MOUNT/d1/f1 &
2087         local pid=$!
2088         sleep 2
2089         start_ost2 || return 2
2090         wait $pid
2091         stop_ost2 || return 3
2092         cleanup
2093 }
2094 run_test 51 "Verify that mdt_reint handles RMF_MDT_MD correctly when an OST is added"
2095
2096 copy_files_xattrs()
2097 {
2098         local node=$1
2099         local dest=$2
2100         local xattrs=$3
2101         shift 3
2102
2103         do_node $node mkdir -p $dest
2104         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2105
2106         do_node $node  'tar cf - '$@' | tar xf - -C '$dest';
2107                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2108         [ $? -eq 0 ] || { error "Unable to tar files"; return 2; }
2109
2110         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs
2111         [ $? -eq 0 ] || { error "Unable to read xattrs"; return 3; }
2112 }
2113
2114 diff_files_xattrs()
2115 {
2116         local node=$1
2117         local backup=$2
2118         local xattrs=$3
2119         shift 3
2120
2121         local backup2=${TMP}/backup2
2122
2123         do_node $node mkdir -p $backup2
2124         [ $? -eq 0 ] || { error "Unable to create directory"; return 1; }
2125
2126         do_node $node  'tar cf - '$@' | tar xf - -C '$backup2';
2127                         [ \"\${PIPESTATUS[*]}\" = \"0 0\" ] || exit 1'
2128         [ $? -eq 0 ] || { error "Unable to tar files to diff"; return 2; }
2129
2130         do_node $node "diff -rq $backup $backup2"
2131         [ $? -eq 0 ] || { error "contents differ"; return 3; }
2132
2133         local xattrs2=${TMP}/xattrs2
2134         do_node $node 'getfattr -d -m "[a-z]*\\." '$@' > '$xattrs2
2135         [ $? -eq 0 ] || { error "Unable to read xattrs to diff"; return 4; }
2136
2137         do_node $node "diff $xattrs $xattrs2"
2138         [ $? -eq 0 ] || { error "xattrs differ"; return 5; }
2139
2140         do_node $node "rm -rf $backup2 $xattrs2"
2141         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 6; }
2142 }
2143
2144 test_52() {
2145         start_mds
2146         [ $? -eq 0 ] || { error "Unable to start MDS"; return 1; }
2147         start_ost
2148         [ $? -eq 0 ] || { error "Unable to start OST1"; return 2; }
2149         mount_client $MOUNT
2150         [ $? -eq 0 ] || { error "Unable to mount client"; return 3; }
2151
2152         local nrfiles=8
2153         local ost1mnt=${MOUNT%/*}/ost1
2154         local ost1node=$(facet_active_host ost1)
2155         local ost1tmp=$TMP/conf52
2156
2157         mkdir -p $DIR/$tdir
2158         [ $? -eq 0 ] || { error "Unable to create tdir"; return 4; }
2159         touch $TMP/modified_first
2160         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 5; }
2161         do_node $ost1node "mkdir -p $ost1tmp && touch $ost1tmp/modified_first"
2162         [ $? -eq 0 ] || { error "Unable to create temporary file"; return 6; }
2163         sleep 1
2164
2165         $LFS setstripe $DIR/$tdir -c -1 -s 1M
2166         [ $? -eq 0 ] || { error "lfs setstripe failed"; return 7; }
2167
2168         for (( i=0; i < nrfiles; i++ )); do
2169                 multiop $DIR/$tdir/$tfile-$i Ow1048576w1048576w524288c
2170                 [ $? -eq 0 ] || { error "multiop failed"; return 8; }
2171                 echo -n .
2172         done
2173         echo
2174
2175         # backup files
2176         echo backup files to $TMP/files
2177         local files=$(find $DIR/$tdir -type f -newer $TMP/modified_first)
2178         copy_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2179         [ $? -eq 0 ] || { error "Unable to copy files"; return 9; }
2180
2181         umount_client $MOUNT
2182         [ $? -eq 0 ] || { error "Unable to umount client"; return 10; }
2183         stop_ost
2184         [ $? -eq 0 ] || { error "Unable to stop ost1"; return 11; }
2185
2186         echo mount ost1 as ldiskfs
2187         do_node $ost1node mount -t $FSTYPE $ost1_dev $ost1mnt $OST_MOUNT_OPTS
2188         [ $? -eq 0 ] || { error "Unable to mount ost1 as ldiskfs"; return 12; }
2189
2190         # backup objects
2191         echo backup objects to $ost1tmp/objects
2192         local objects=$(do_node $ost1node 'find '$ost1mnt'/O/0 -type f -size +0'\
2193                         '-newer '$ost1tmp'/modified_first -regex ".*\/[0-9]+"')
2194         copy_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2195         [ $? -eq 0 ] || { error "Unable to copy objects"; return 13; }
2196
2197         # move objects to lost+found
2198         do_node $ost1node 'mv '$objects' '${ost1mnt}'/lost+found'
2199         [ $? -eq 0 ] || { error "Unable to move objects"; return 14; }
2200
2201         # recover objects
2202         do_node $ost1node "ll_recover_lost_found_objs -d $ost1mnt/lost+found"
2203         [ $? -eq 0 ] || { error "ll_recover_lost_found_objs failed"; return 15; }
2204
2205         # compare restored objects against saved ones
2206         diff_files_xattrs $ost1node $ost1tmp/objects $ost1tmp/object_xattrs $objects
2207         [ $? -eq 0 ] || { error "Unable to diff objects"; return 16; }
2208
2209         do_node $ost1node "umount $ost1_dev"
2210         [ $? -eq 0 ] || { error "Unable to umount ost1 as ldiskfs"; return 17; }
2211
2212         start_ost
2213         [ $? -eq 0 ] || { error "Unable to start ost1"; return 18; }
2214         mount_client $MOUNT
2215         [ $? -eq 0 ] || { error "Unable to mount client"; return 19; }
2216
2217         # compare files
2218         diff_files_xattrs `hostname` $TMP/files $TMP/file_xattrs $files
2219         [ $? -eq 0 ] || { error "Unable to diff files"; return 20; }
2220
2221         rm -rf $TMP/files $TMP/file_xattrs
2222         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 21; }
2223         do_node $ost1node "rm -rf $ost1tmp"
2224         [ $? -eq 0 ] || { error "Unable to delete temporary files"; return 22; }
2225         cleanup
2226 }
2227 run_test 52 "check recovering objects from lost+found"
2228
2229 # Checks threads_min/max/started for some service
2230 #
2231 # Arguments: service name (OST or MDT), facet (e.g., ost1, $SINGLEMDS), and a
2232 # parameter pattern prefix like 'ost.*.ost'.
2233 thread_sanity() {
2234         local modname=$1
2235         local facet=$2
2236         local parampat=$3
2237         local opts=$4
2238         local tmin
2239         local tmin2
2240         local tmax
2241         local tmax2
2242         local tstarted
2243         local paramp
2244         local msg="Insane $modname thread counts"
2245         shift 4
2246
2247         setup
2248         check_mount || return 41
2249
2250         # We need to expand $parampat, but it may match multiple parameters, so
2251         # we'll pick the first one
2252         if ! paramp=$(do_facet $facet "lctl get_param -N ${parampat}.threads_min"|head -1); then
2253                 error "Couldn't expand ${parampat}.threads_min parameter name"
2254                 return 22
2255         fi
2256
2257         # Remove the .threads_min part
2258         paramp=${paramp%.threads_min}
2259
2260         # Check for sanity in defaults
2261         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2262         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2263         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started" || echo 0)
2264         lassert 23 "$msg (PDSH problems?)" '(($tstarted && $tmin && $tmax))' || return $?
2265         lassert 24 "$msg" '(($tstarted >= $tmin && $tstarted <= tmax ))' || return $?
2266
2267         # Check that we can lower min/max
2268         do_facet $facet "lctl set_param ${paramp}.threads_min=$((tmin - 1))"
2269         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmax - 10))"
2270         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2271         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2272         lassert 25 "$msg" '(($tmin2 == ($tmin - 1) && $tmax2 == ($tmax -10)))' || return $?
2273
2274         # Check that we can set min/max to the same value
2275         do_facet $facet "lctl set_param ${paramp}.threads_min=$tmin"
2276         do_facet $facet "lctl set_param ${paramp}.threads_max=$tmin"
2277         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2278         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2279         lassert 26 "$msg" '(($tmin2 == $tmin && $tmax2 == $tmin))' || return $?
2280
2281         # Check that we can't set max < min
2282         do_facet $facet "lctl set_param ${paramp}.threads_max=$((tmin - 1))"
2283         tmin2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min" || echo 0)
2284         tmax2=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max" || echo 0)
2285         lassert 27 "$msg" '(($tmin <= $tmax2))' || return $?
2286
2287         # We need to ensure that we get the module options desired; to do this
2288         # we set LOAD_MODULES_REMOTE=true and we call setmodopts below.
2289         LOAD_MODULES_REMOTE=true
2290         cleanup
2291         local oldvalue
2292         setmodopts -a $modname "$opts" oldvalue
2293
2294         load_modules
2295         setup
2296         check_mount || return 41
2297
2298         # Restore previous setting of MODOPTS_*
2299         setmodopts $modname "$oldvalue"
2300
2301         # Check that $opts took
2302         tmin=$(do_facet $facet "lctl get_param -n ${paramp}.threads_min")
2303         tmax=$(do_facet $facet "lctl get_param -n ${paramp}.threads_max")
2304         tstarted=$(do_facet $facet "lctl get_param -n ${paramp}.threads_started")
2305         lassert 28 "$msg" '(($tstarted == $tmin && $tstarted == $tmax ))' || return $?
2306         cleanup
2307
2308         # Workaround a YALA bug where YALA expects that modules will remain
2309         # loaded on the servers
2310         LOAD_MODULES_REMOTE=false
2311         load_modules
2312         setup
2313         cleanup
2314 }
2315
2316 test_53a() {
2317         thread_sanity OST ost1 'ost.*.ost' 'oss_num_threads=64'
2318 }
2319 run_test 53a "check OSS thread count params"
2320
2321 test_53b() {
2322         thread_sanity MDT $SINGLEMDS 'mdt.*.*.' 'mdt_num_threads=64'
2323 }
2324 run_test 53b "check MDT thread count params"
2325
2326 if ! combined_mgs_mds ; then
2327         stop mgs
2328 fi
2329
2330 run_llverfs()
2331 {
2332         local dir=$1
2333         local partial_arg=""
2334         local size=$(df -B G $dir | tail -1 | awk '{print $2}' | sed 's/G//') # Gb
2335
2336         # Run in partial (fast) mode if the size
2337         # of a partition > 10 GB
2338         [ $size -gt 10 ] && partial_arg="-p"
2339
2340         llverfs $partial_arg $dir
2341 }
2342
2343 test_54a() {
2344     do_rpc_nodes $(facet_host ost1) run_llverdev $(ostdevname 1)
2345     [ $? -eq 0 ] || error "llverdev failed!"
2346     reformat_and_config
2347 }
2348 run_test 54a "llverdev"
2349
2350 test_54b() {
2351     setup
2352     run_llverfs $MOUNT
2353     [ $? -eq 0 ] || error "llverfs failed!"
2354     cleanup
2355 }
2356 run_test 54b "llverfs"
2357
2358 cleanup_gss
2359 equals_msg `basename $0`: test complete
2360 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true