Whamcloud - gitweb
LU-15706 llog: deal with "SKIP" pool llog records correctly
[fs/lustre-release.git] / lustre / tests / ost-pools.sh
1 #!/bin/bash
2 #
3 # Run select tests by setting ONLY, or as arguments to the script.
4 # Skip specific tests by setting EXCEPT.
5 #
6
7 ONLY=${ONLY:-"$*"}
8 ORIG_PWD=${PWD}
9
10 LUSTRE=${LUSTRE:-$(dirname $0)/..}
11 . $LUSTRE/tests/test-framework.sh
12 init_test_env $@
13 init_logging
14
15 ALWAYS_EXCEPT="$OST_POOLS_EXCEPT"
16 # bug number for skipped test: -
17 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
18
19 build_test_filter
20
21 check_and_setup_lustre
22
23 if ! combined_mgs_mds; then
24         do_facet mgs "mkdir -p $MOUNT"
25         zconf_mount $mgs_HOST $MOUNT $MOUNT_OPTS ||
26                 error "unable to mount $MOUNT on the MGS"
27 fi
28
29 DIR=${DIR:-$MOUNT}
30 assert_DIR
31
32 MAXFREE=${MAXFREE:-$((2000000 * OSTCOUNT))}
33
34 # OST pools tests
35 POOL=testpool
36 POOL2=${POOL2:-${POOL}2}
37 POOL3=${POOL3:-${POOL}3}
38 NON_EXISTANT_POOL=nonexistantpool
39 NON_EXISTANT_FS=nonexistantfs
40 INVALID_POOL=some_invalid_pool_name
41 TGT_COUNT=$OSTCOUNT
42 TGT_FIRST=$(printf %04x 0)
43 TGT_MAX=$(printf %04x $((TGT_COUNT-1)))
44 TGT_STEP=1
45 TGT_LIST=$(seq 0x$TGT_FIRST $TGT_STEP 0x$TGT_MAX)
46 TGT_LIST2=$(seq 0x$TGT_FIRST 2 0x$TGT_MAX)
47
48 TGT_ALL="$FSNAME-OST[$TGT_FIRST-$TGT_MAX/1]"
49 TGT_HALF="$FSNAME-OST[$TGT_FIRST-$TGT_MAX/2]"
50
51 TGT_UUID=$(for i in $TGT_LIST; do printf "$FSNAME-OST%04x_UUID " $i; done)
52 TGT_UUID2=$(for i in $TGT_LIST2; do printf "$FSNAME-OST%04x_UUID " $i; done)
53
54 create_dir() {
55         local dir=$1
56         local pool=$2
57         local count=${3:-"-1"}
58         local idx=$4
59
60         mkdir -p $dir
61         if [[ -n $idx ]]; then
62                 $LFS setstripe -c $count -p $pool -i $idx $dir
63         else
64                 $LFS setstripe -c $count -p $pool -i -1 $dir
65         fi
66         [[ $? -eq 0 ]] || error "$LFS setstripe -p $pool $dir failed"
67         [[ "$($LFS getstripe --pool $dir)" == "$pool" ]] ||
68                 error "$dir not created in expected pool '$pool'"
69 }
70
71 create_file() {
72         local file=$1
73         local pool=$2
74         local count=${3:-"-1"}
75         local index=${4:-"-1"}
76         rm -f $file
77         $LFS setstripe -i $index -c $count -p $pool $file
78         [[ $? -eq 0 ]] || error "$LFS setstripe -p $pool $file failed"
79         [[ "$($LFS getstripe --pool $file)" == "$pool" ]] ||
80                 error "$file not created in '$pool'"
81 }
82
83 osts_in_pool() {
84         local pool=$1
85         local res
86         for i in $(list_pool $FSNAME.$pool |
87                 sed -e 's/_UUID$//;s/^.*-OST//'); do
88                 res="$res $(printf "%d" 0x$i)"
89         done
90         echo $res
91 }
92
93 check_dir_in_pool() {
94         local dir=$1
95         local pool=$2
96         local res=$($LFS getstripe --pool $dir)
97
98         [ -n "$res" ] || error "dir '$dir' not in any pool"
99
100         [ "$res" == "$pool" ] ||
101                 error "dir '$dir' in pool '$res' instead of '$pool'"
102 }
103
104 check_file_in_pool() {
105         local file="$1"
106         local pool=$2
107         local count=$3
108         local osts=$(osts_in_pool $pool)
109         local res=$($LFS getstripe --pool $file)
110
111         [ -n "$res" ] || error "file '$file' not in any pool"
112
113         [ "$res" == "$pool" ] ||
114                 error "file '$file' in pool '$res' instead of '$pool'"
115
116         local osts=$(osts_in_pool $2)
117         check_file_in_osts "$file" "$osts" $count
118 }
119
120 check_file_in_osts() {
121         local file=$1
122         local ost_list=${2:-$TGT_LIST}
123         local count=$3
124         local res=$($LFS getstripe $file | awk '/0x/ { print $1 }')
125         local i
126
127         for i in $res; do
128                 found=$(echo :$ost_list: | tr " " ":" | grep :$i:)
129                 if [[ "$found" == "" ]]; then
130                         echo "ost list: $ost_list"
131                         echo "striping: $res"
132                         $LFS getstripe -v $file
133                         error "$file not allocated from OSTs $ost_list."
134                 fi
135         done
136
137         local ost_count=$($LFS getstripe -c $file)
138         [[ -n "$count" ]] && [[ $ost_count -ne $count ]] &&
139                 error "$file stripe count $count expected; got $ost_count" &&
140                 return 1
141
142 }
143
144 check_file_not_in_pool() {
145         local file=$1
146         local pool=$2
147         local res=$($LFS getstripe --pool $file)
148
149         [ "$res" != "$pool" ] || error "File '$file' is in pool: $res"
150 }
151
152 check_dir_not_in_pool() {
153         local dir=$1
154         local pool=$2
155         local res=$($LFS getstripe --pool $dir)
156
157         [ "$res" != "$pool" ] || error "Dir '$dir' is in pool: $res"
158 }
159
160 drain_pool() {
161     pool=$1
162     wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool" "" ||
163         error "Failed to remove targets from pool: $pool"
164 }
165
166 add_pool() {
167         local pool=$1
168         local osts=$2
169         local tgt="${3}$(lctl get_param -n lov.$FSNAME-*.pools.$pool |
170                 sort -u | tr '\n' ' ')"
171
172         do_facet mgs lctl pool_add $FSNAME.$pool $osts
173         local RC=$?
174         [[ $RC -ne 0 ]] && return $RC
175
176         # wait for OSTs to be added to the pool
177         for mds_id in $(seq $MDSCOUNT); do
178                 local mdt_id=$((mds_id-1))
179                 local lodname=$FSNAME-MDT$(printf "%04x" $mdt_id)-mdtlov
180                 wait_update_facet mds$mds_id \
181                         "lctl get_param -n lod.$lodname.pools.$pool |
182                                 sort -u | tr '\n' ' ' " "$tgt" >/dev/null ||
183                         error "mds$mds_id:pool add failed $1; $2"
184         done
185         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool |
186                 sort -u | tr '\n' ' ' " "$tgt" >/dev/null ||
187                 error "pool_add failed: $1; $2"
188         return $RC
189 }
190
191 create_pool_nofail() {
192         create_pool $FSNAME.$1
193         [[ $? -ne 0 ]] && error "Pool creation of $1 failed"
194         return 0
195 }
196
197 create_pool_fail() {
198         create_pool $FSNAME.$1
199         [[ $? -ne 0 ]] ||
200                 error "Pool creation of $1 succeeded; should have failed"
201         return 0
202 }
203
204 ost_pools_init() {
205         destroy_test_pools
206 }
207
208 # Initialization
209 remote_mds_nodsh && skip "remote MDS with nodsh"
210 remote_ost_nodsh && skip "remote OST with nodsh"
211 ost_pools_init
212 # reset root directory's stripe offset
213 $LFS getstripe -d $MOUNT
214 save_layout_restore_at_exit $MOUNT
215 $LFS setstripe -i -1 $MOUNT
216
217 # Tests for new commands added
218 test_1a() {
219         create_pool_nofail p
220         destroy_pool p
221 }
222 run_test 1a "Create a pool with a 1 character pool name"
223
224 test_1b() {
225         create_pool_nofail ${POOL}12
226         destroy_pool ${POOL}12
227 }
228 run_test 1b "Create a pool with a 10 char pool name"
229
230 test_1c() {
231         create_pool_nofail ${POOL}1234567
232         destroy_pool ${POOL}1234567
233 }
234 run_test 1c "Create a pool with a 15 char pool name"
235
236 test_1d() {
237         create_pool_fail ${POOL}12345678
238 }
239 run_test 1d "Create a pool with a 16 char pool name; should fail"
240
241 test_1e() {
242         local pool_name="$POOL"
243         for ((i = 1; i <= 991; i++)); do pool_name=${pool_name}"o"; done
244         create_pool_fail $pool_name
245 }
246 run_test 1e "Create a pool with a 1000 char pool name; should fail"
247
248 test_1f() {
249         create_pool .$POOL
250         [[ $? -ne 0 ]] ||
251                 error "pool_new did not fail even though fs-name was missing"
252 }
253 run_test 1f "pool_new should fail if fs-name is missing"
254
255 test_1g() {
256         create_pool $POOL
257         [[ $? -ne 0 ]] ||
258                 error "pool_new did not fail even though fs-name was missing"
259 }
260 run_test 1g "pool_new should fail if fs-name is missing"
261
262 test_1h() {
263         create_pool ${FSNAME}.
264         [[ $? -ne 0 ]] ||
265                 error "pool_new did not fail even though pool name was missing"
266 }
267 run_test 1h "pool_new should fail if poolname is missing"
268
269 test_1i() {
270         create_pool .
271         [[ $? -ne 0 ]] ||
272                 error "pool_new did not fail even if pool/fs-name was missing"
273 }
274 run_test 1i "pool_new should fail if poolname and fs-name are missing"
275
276 test_1j() {
277         do_facet mgs lctl pool_new ${FSNAME},$POOL
278         [[ $? -ne 0 ]] ||
279                 error "pool_new did not fail even if poolname format was wrong"
280 }
281 run_test 1j "pool_new should fail if poolname format is wrong"
282
283 test_1k() {
284         do_facet mgs lctl pool_new ${FSNAME}/$POOL
285         [[ $? -ne 0 ]] ||
286                 error "pool_new did not fail even if poolname format was wrong"
287 }
288 run_test 1k "pool_new should fail if poolname format is wrong"
289
290 test_1m() {
291         create_pool_nofail $POOL2
292         create_pool ${FSNAME}.$POOL2
293         [[ $? -ne 0 ]] ||
294                 error "pool_new did not fail even though $POOL2 existed"
295         destroy_pool $POOL2
296 }
297 run_test 1m "pool_new did not fail even though $POOL2 existed"
298
299 test_1n() {
300         create_pool_nofail ${POOL}1234567
301
302         add_pool ${POOL}1234567 "OST0000" "$FSNAME-OST0000_UUID "
303         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
304         create_dir $POOL_ROOT ${POOL}1234567
305         stack_trap "rm -f $POOL_ROOT/file"
306         dd if=/dev/zero of=$POOL_ROOT/file bs=1M count=100
307         RC=$?; [[ $RC -eq 0 ]] ||
308                 error "failed to write to $POOL_ROOT/file: $RC"
309         do_facet mgs lctl pool_remove $FSNAME.${POOL}1234567 OST0000
310         drain_pool ${POOL}1234567
311
312         destroy_pool ${POOL}1234567
313 }
314 run_test 1n "Pool with a 15 char pool name works well"
315
316 test_2a() {
317         destroy_pool $POOL
318
319         do_facet mgs lctl pool_add $FSNAME.$POOL $FSNAME-OST0000 2>/dev/null
320         [[ $? -ne 0 ]] ||
321                 error "pool_add did not fail even though $POOL did not exist"
322 }
323 run_test 2a "pool_add: non-existant pool $POOL"
324
325 test_2b() {
326         do_facet mgs lctl pool_add $FSNAME.${POOL}1234567890 \
327                 $FSNAME-OST0000 2>/dev/null
328         [[ $? -ne 0 ]] ||
329                 error "pool_add did not fail even though pool name was invalid."
330 }
331 run_test 2b "pool_add: Invalid pool name"
332
333 # Testing various combinations of OST name list
334 test_2c() {
335         local TGT
336         local RC
337
338         lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
339         [[ $? -ne 0 ]] || destroy_pool $POOL
340
341         create_pool_nofail $POOL
342
343         # 1. OST0000
344         do_facet mgs lctl pool_add $FSNAME.$POOL OST0000
345         RC=$?; [[ $RC -eq 0 ]] ||
346                 error "pool_add failed. $FSNAME $POOL OST0000: $RC"
347         do_facet mgs lctl pool_remove $FSNAME.$POOL OST0000
348         drain_pool $POOL
349
350         # 2. $FSNAME-OST0000
351         do_facet mgs lctl pool_add $FSNAME.$POOL $FSNAME-OST0000
352         RC=$?; [[ $RC -eq 0 ]] ||
353                 error "pool_add failed. $FSNAME $POOL $FSNAME-OST0000: $RC"
354         do_facet mgs lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000
355         drain_pool $POOL
356
357         # 3. $FSNAME-OST0000_UUID
358         do_facet mgs lctl pool_add $FSNAME.$POOL $FSNAME-OST0000_UUID
359         RC=$?; [[ $RC -eq 0 ]] ||
360                 error "pool_add failed. $FSNAME $POOL $FSNAME-OST0000_UUID: $RC"
361         do_facet mgs lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000_UUID
362         drain_pool $POOL
363
364         # 4. $FSNAME-OST[0,1,2,3,]
365         TGT="$FSNAME-OST["
366         for i in $TGT_LIST; do TGT=${TGT}$(printf "%04x," $i); done
367         TGT="${TGT}]"
368         do_facet mgs lctl pool_add $FSNAME.$POOL $TGT
369         [[ $? -eq 0 ]] || error "pool_add failed. $FSNAME.$POOL $TGT. $RC"
370         do_facet mgs lctl pool_remove $FSNAME.$POOL $TGT
371         drain_pool $POOL
372
373         # 5. $FSNAME-OST[0-5/1]
374         do_facet mgs lctl pool_add $FSNAME.$POOL $TGT_ALL
375         RC=$?; [[ $RC -eq 0 ]] ||
376                 error "pool_add failed. $FSNAME $POOL" "$TGT_ALL $RC"
377         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$POOL |
378                 sort -u | tr '\n' ' ' " "$TGT_UUID" ||
379                         error "Add to pool failed"
380         do_facet mgs lctl pool_remove $FSNAME.$POOL $TGT_ALL
381         drain_pool $POOL
382
383         destroy_pool $POOL
384 }
385 run_test 2c "pool_add: OST index combinations"
386
387 test_2d() {
388         local TGT
389         local RC
390
391         lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
392         [[ $? -ne 0 ]] || destroy_pool $POOL
393
394         create_pool_nofail $POOL
395
396         TGT=$(printf "$FSNAME-OST%04x_UUID " $OSTCOUNT)
397         do_facet mgs lctl pool_add $FSNAME.$POOL $TGT
398         RC=$?; [[ $RC -ne 0 ]] ||
399                 error "pool_add succeeded for an OST ($TGT) that does not exist."
400
401         destroy_pool $POOL
402 }
403 run_test 2d "pool_add: OSTs that don't exist should be rejected"
404
405 test_2e() {
406         local TGT
407         local RC
408         local RESULT
409
410         $LCTL get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
411         [[ $? -ne 0 ]] || destroy_pool $POOL
412
413         create_pool_nofail $POOL
414
415         TGT="$FSNAME-OST0000_UUID"
416         do_facet mgs lctl pool_add $FSNAME.$POOL $TGT
417         wait_update_facet $SINGLEMDS \
418                 "lctl pool_list $FSNAME.$POOL | sed '1d'" "$TGT" ||
419                 error "Add $TGT to $FSNAME.$POOL failed"
420         RESULT=$(do_facet mgs \
421                 "LOCALE=C $LCTL pool_add $FSNAME.$POOL $TGT 2>&1")
422         RC=$?
423         echo $RESULT
424
425         [[ $RC -ne 0 ]] ||
426                 error "pool_add succeeded for an OST that was already in the pool."
427
428         [[ $(grep "already in pool" <<< $RESULT) ]] ||
429                 error "pool_add failed as expected but error message not as expected."
430
431         destroy_pool $POOL
432 }
433 run_test 2e "pool_add: OST already in a pool should be rejected"
434
435 test_3a() {
436         lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
437         [[ $? -ne 0 ]] || destroy_pool $POOL
438
439         do_facet mgs \
440                 lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000 2>/dev/null
441         [[ $? -ne 0 ]] ||
442                 error "pool_remove did not fail even though pool did not exist."
443 }
444 run_test 3a "pool_remove: non-existant pool"
445
446 test_3b() {
447         do_facet mgs \
448                 lctl pool_remove ${NON_EXISTANT_FS}.$POOL OST0000 2>/dev/null
449         [[ $? -ne 0 ]] ||
450                 error "pool_remove did not fail even though fsname did not exist."
451 }
452 run_test 3b "pool_remove: non-existant fsname"
453
454 test_3c() {
455         do_facet mgs lctl pool_remove $FSNAME.p1234567891234567890 \
456                 $FSNAME-OST0000 2>/dev/null
457         [[ $? -ne 0 ]] ||
458                 error "pool_remove did not fail even though pool name was invalid."
459 }
460 run_test 3c "pool_remove: Invalid pool name"
461
462 # Testing various combinations of OST name list
463 test_3d() {
464         lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
465         [[ $? -ne 0 ]] || destroy_pool $POOL
466
467         create_pool_nofail $POOL
468         do_facet mgs lctl pool_add $FSNAME.$POOL OST0000
469         do_facet mgs lctl pool_remove $FSNAME.$POOL OST0000
470         [[ $? -eq 0 ]] || error "pool_remove failed. $FSNAME $POOL OST0000"
471         drain_pool $POOL
472
473         do_facet mgs lctl pool_add $FSNAME.$POOL $FSNAME-OST0000
474         do_facet mgs lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000
475         [[ $? -eq 0 ]] || error "pool_remove failed. $FSNAME $POOL $FSNAME-OST0000"
476         drain_pool $POOL
477
478         do_facet mgs lctl pool_add $FSNAME.$POOL $FSNAME-OST0000_UUID
479         do_facet mgs lctl pool_remove $FSNAME.$POOL $FSNAME-OST0000_UUID
480         [[ $? -eq 0 ]] ||
481                 error "pool_remove failed. $FSNAME $POOL $FSNAME-OST0000_UUID"
482         drain_pool $POOL
483
484         add_pool $POOL $TGT_ALL "$TGT_UUID"
485         do_facet mgs lctl pool_remove $FSNAME.$POOL $TGT_ALL
486         [[ $? -eq 0 ]] || error "pool_remove failed. $FSNAME $POOL" $TGT_ALL
487         drain_pool $POOL
488
489         destroy_pool $POOL
490 }
491 run_test 3d "pool_remove: OST index combinations"
492
493 test_4a() {
494         lctl get_param -n lov.$FSNAME-*.pools.$POOL 2>/dev/null
495         [[ $? -ne 0 ]] || destroy_pool $POOL
496
497         do_facet mgs lctl pool_destroy $FSNAME.$POOL 2>/dev/null
498         [[ $? -ne 0 ]] ||
499                 error "pool_destroy did not fail even though pool did not exist."
500 }
501 run_test 4a "pool_destroy: non-existant pool"
502
503 test_4b() {
504         do_facet mgs lctl pool_destroy ${NON_EXISTANT_FS}.$POOL 2>/dev/null
505         [[ $? -ne 0 ]] ||
506                 error "pool_destroy did not fail even though filesystem did not exist."
507 }
508 run_test 4b "pool_destroy: non-existant fs-name"
509
510 test_4c() {
511         create_pool_nofail $POOL
512         add_pool $POOL "OST0000" "$FSNAME-OST0000_UUID "
513
514         do_facet mgs lctl pool_destroy ${FSNAME}.$POOL
515         [[ $? -ne 0 ]] || error "pool_destroy succeeded with a non-empty pool."
516         destroy_pool $POOL
517 }
518 run_test 4c "pool_destroy: non-empty pool"
519
520 sub_test_5() {
521         local LCMD=$1
522
523         $LCMD pool_list 2>/dev/null
524         [[ $? -ne 0 ]] ||
525                 error "pool_list did not fail even though fsname missing."
526
527         destroy_pool $POOL 2>/dev/null
528         destroy_pool $POOL2 2>/dev/null
529
530         create_pool_nofail $POOL
531         create_pool_nofail $POOL2
532         $LCMD pool_list $FSNAME
533         [[ $? -eq 0 ]] || error "pool_list $FSNAME failed."
534
535         do_facet mgs lctl pool_add $FSNAME.$POOL $TGT_ALL
536         wait_update_facet $SINGLEMDS "lctl pool_list $FSNAME.$POOL |
537                 wc -l" "$((OSTCOUNT + 1))" ||
538                         error "MDS: pool_list $FSNAME.$POOL failed"
539
540         $LCMD pool_list $FSNAME.$POOL
541         [[ $? -eq 0 ]] || error "pool_list $FSNAME.$POOL failed."
542
543         $LCMD pool_list ${NON_EXISTANT_FS} 2>/dev/null
544         [[ $? -ne 0 ]] ||
545                 error "pool_list did not fail for fsname $NON_EXISTANT_FS"
546
547         $LCMD pool_list ${FSNAME}.$NON_EXISTANT_POOL 2>/dev/null
548         [[ $? -ne 0 ]] ||
549                 error "pool_list did not fail for pool $NON_EXISTANT_POOL"
550
551         if [[ ! $(grep $SINGLEMDS <<< $LCMD) ]]; then
552                 echo $LCMD pool_list $DIR
553                 $LCMD pool_list $DIR
554                 [[ $? -eq 0 ]] || error "pool_list failed for $DIR"
555
556                 mkdir -p ${DIR}/d1
557                 $LCMD pool_list ${DIR}/d1
558                 [[ $? -eq 0 ]] || error "pool_list failed for ${DIR}/d1"
559         fi
560
561         rm -rf ${DIR}nonexistant
562         $LCMD pool_list ${DIR}nonexistant 2>/dev/null
563         [[ $? -ne 0 ]] ||
564                 error "pool_list did not fail for invalid mountpoint ${DIR}nonexistant"
565
566         destroy_pool $POOL
567         destroy_pool $POOL2
568 }
569
570 test_5a() {
571         # Issue commands from client
572         sub_test_5 $LFS
573 }
574 run_test 5a "lfs pool_list from client"
575
576 test_5b() {
577         sub_test_5 "do_facet $SINGLEMDS lctl"
578 }
579 run_test 5b "lctl pool_list from MDS"
580
581 test_6() {
582         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
583         local POOL_DIR=$POOL_ROOT/dir_tst
584         local POOL_FILE=$POOL_ROOT/file_tst
585
586         create_pool_nofail $POOL
587
588         do_facet $SINGLEMDS lctl pool_list $FSNAME
589         [[ $? -eq 0 ]] || error "pool_list $FSNAME failed."
590
591         add_pool $POOL $TGT_ALL "$TGT_UUID"
592
593         mkdir -p $POOL_DIR
594         $LFS setstripe -c -1 -p $POOL $POOL_DIR
595         [[ $? -eq 0 ]] || error "$LFS setstripe -p $POOL failed."
596         check_dir_in_pool $POOL_DIR $POOL
597
598         # If an invalid pool name is specified, the command should fail
599         $LFS setstripe -c 2 -p $INVALID_POOL $POOL_DIR 2>/dev/null
600         [[ $? -ne 0 ]] || error "setstripe to invalid pool did not fail."
601
602         # lfs setstripe should work as before if a pool name is not specified.
603         $LFS setstripe -c -1 $POOL_DIR
604         [[ $? -eq 0 ]] || error "$LFS setstripe -c -1 $POOL_DIR failed."
605         $LFS setstripe -c -1 $POOL_FILE
606         [[ $? -eq 0 ]] || error "$LFS setstripe -c -1 $POOL_FILE failed."
607
608         # lfs setstripe should fail if a start index that is outside the
609         # pool is specified.
610         create_pool_nofail $POOL2
611         add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
612         $LFS setstripe -i 1 -p $POOL2 $ROOT_POOL/$tfile 2>/dev/null
613         [[ $? -ne 0 ]] ||
614         error "$LFS setstripe with start index outside the pool did not fail."
615 }
616 run_test 6 "getstripe/setstripe"
617
618 helper_test_7a()
619 {
620         # Create a pool, stripe a directory and file with it
621         local pool=$1
622
623         pool_add $pool || error "pool_add failed"
624         pool_add_targets $pool 0 1 || error "pool_add_targets failed"
625
626         $LFS setstripe -c 1 $DIR/$tdir/testfile1 --pool "$pool" ||
627                 error "setstripe failed"
628         $LFS setstripe -c 1 $DIR/$tdir/testfile2 --pool "$FSNAME.$pool" ||
629                 error "setstripe failed"
630
631         mkdir $DIR/$tdir/testdir
632         $LFS setstripe -c 1 $DIR/$tdir/testdir  -p "$pool" ||
633                 error "setstripe failed"
634         $LFS setstripe -c 1 $DIR/$tdir/testdir  -p "$FSNAME.$pool" ||
635                 error "setstripe failed"
636
637         rm -f $DIR/$tdir/testfile1
638         rm -f $DIR/$tdir/testfile2
639         rmdir $DIR/$tdir/testdir
640
641         destroy_pool_int $FSNAME.$pool
642 }
643
644 test_7a()
645 {
646         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
647
648         mkdir -p $DIR/$tdir
649
650         # Generate pool with random name from 1 to 15 characters
651         for i in 1 9 15 ; do
652                 POOLNAME=$(echo $$$RANDOM$RANDOM |
653                            tr -dc 'a-zA-Z0-9' | fold -w $i |
654                            head -n 1)
655                 echo set poolname to $POOLNAME
656                 helper_test_7a $POOLNAME
657         done
658 }
659 run_test 7a "create various pool name"
660
661 test_7b()
662 {
663         # No fsname
664         create_pool qwerty
665         [ $? -ne 22 ] && error "can create a pool with no fsname"
666
667         # No pool name
668         create_pool $FSNAME.
669         [ $? -ne 22 ] && error "can create a pool with no name"
670
671         # Invalid character
672         create_pool $FSNAME.0123456789^bdef
673         [ $? -ne 22 ] && error "can create a pool with an invalid name"
674
675         # Too long
676         create_pool $FSNAME.0123456789abdefg
677         [ $? -ne 36 ] && error "can create a pool with a name too long"
678
679         return 0
680 }
681 run_test 7b "try to create pool name with invalid lengths or names"
682
683 test_7c()
684 {
685         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs"
686
687         mkdir -p $DIR/$tdir
688
689         # Create a pool with 15 letters
690         local pool=0123456789abcde
691         pool_add $pool || error "pool_add failed"
692         pool_add_targets $pool 0 1 || error "pool_add_targets failed"
693
694         # setstripe with the same pool name plus 1 letter
695         $LFS setstripe -c 1 $DIR/$tdir/testfile1 --pool "${pool}X" &&
696                 error "setstripe succedeed"
697
698         rm -f $DIR/$tdir/testfile1
699
700         destroy_pool_int $FSNAME.$pool
701 }
702 run_test 7c "create a valid pool name and setstripe with a bad one"
703
704 test_11() {
705         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
706
707         [[ $OSTCOUNT -le 1 ]] && skip_env "needs >= 2 OSTs"
708
709         create_pool_nofail $POOL
710         create_pool_nofail $POOL2
711
712         local start=$(printf %04x $((TGT_FIRST + 1)))
713         do_facet mgs lctl pool_add $FSNAME.$POOL2 \
714                 $FSNAME-OST[$start-$TGT_MAX/2]
715
716         add_pool $POOL $TGT_HALF "$TGT_UUID2"
717
718         create_dir $POOL_ROOT/dir1  $POOL
719         create_dir $POOL_ROOT/dir2  $POOL2
720
721         local numfiles=100
722         createmany -o $POOL_ROOT/dir1/$tfile $numfiles ||
723                 error "createmany $POOL_ROOT/dir1/$tfile failed!"
724
725         for file in $POOL_ROOT/dir1/*; do
726                 check_file_in_pool $file $POOL
727         done
728
729         createmany -o $POOL_ROOT/dir2/$tfile $numfiles ||
730                 error "createmany $POOL_ROOT/dir2/$tfile failed!"
731         for file in $POOL_ROOT/dir2/*; do
732                 check_file_in_pool $file $POOL2
733         done
734
735         rm -rf $POOL_ROOT/dir?
736
737         return 0
738 }
739 run_test 11 "OSTs in overlapping/multiple pools"
740
741 test_12() {
742         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
743
744         [[ $OSTCOUNT -le 2 ]] && skip_env "needs >=3 OSTs"
745
746         create_pool_nofail $POOL
747         create_pool_nofail $POOL2
748
749         local start=$(printf %04x $((TGT_FIRST + 1)))
750         do_facet mgs lctl pool_add $FSNAME.$POOL2 \
751                 $FSNAME-OST[$start-$TGT_MAX/2]
752
753         add_pool $POOL $TGT_HALF "$TGT_UUID2"
754
755         echo creating some files in $POOL and $POOL2
756
757         create_dir $POOL_ROOT/dir1  $POOL
758         create_dir $POOL_ROOT/dir2  $POOL2
759         create_file $POOL_ROOT/file1 $POOL
760         create_file $POOL_ROOT/file2 $POOL2
761
762         echo Checking the files created
763         check_file_in_pool $POOL_ROOT/file1 $POOL
764         check_file_in_pool $POOL_ROOT/file2 $POOL2
765
766         echo Changing the pool membership
767         do_facet mgs lctl pool_remove $FSNAME.$POOL $FSNAME-OST[$TGT_FIRST]
768         do_facet mgs lctl pool_list $FSNAME.$POOL
769         FIRST_UUID=$(echo $TGT_UUID | awk '{print $1}')
770         add_pool $POOL2 $FSNAME-OST[$TGT_FIRST] "$FIRST_UUID "
771         do_facet mgs lctl pool_list $FSNAME.$POOL2
772
773         echo Checking the files again
774         check_dir_in_pool $POOL_ROOT/dir1 $POOL
775         check_dir_in_pool $POOL_ROOT/dir2 $POOL2
776         check_file_in_osts $POOL_ROOT/file1 "$TGT_LIST2"
777         check_file_in_osts $POOL_ROOT/file2 "$(seq 0x$start 2 0x$TGT_MAX)"
778
779         echo Creating some more files
780         create_dir $POOL_ROOT/dir3 $POOL
781         create_dir $POOL_ROOT/dir4 $POOL2
782         create_file $POOL_ROOT/file3 $POOL
783         create_file $POOL_ROOT/file4 $POOL2
784
785         echo Checking the new files
786         check_file_in_pool $POOL_ROOT/file3 $POOL
787         check_file_in_pool $POOL_ROOT/file4 $POOL2
788
789         return 0
790 }
791 run_test 12 "OST Pool Membership"
792
793 test_13() {
794         [[ $OSTCOUNT -le 2 ]] && skip_env "needs >= 3 OSTs"
795
796         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
797         local numfiles=10
798         local count=3
799
800         create_pool_nofail $POOL
801         add_pool $POOL $TGT_ALL "$TGT_UUID"
802
803         create_dir $POOL_ROOT/dir1 $POOL -1
804         createmany -o $POOL_ROOT/dir1/$tfile $numfiles ||
805                 error "createmany $POOL_ROOT/dir1/$tfile failed!"
806         for file in $POOL_ROOT/dir1/*; do
807                 check_file_in_pool $file $POOL $OSTCOUNT
808         done
809
810         create_file $POOL_ROOT/dir1/file1 $POOL 1 $TGT_FIRST
811         create_file $POOL_ROOT/dir1/file2 $POOL 1 $((TGT_FIRST + 1))
812         create_file $POOL_ROOT/dir1/file3 $POOL 1 $((TGT_FIRST + 2))
813         check_file_in_osts $POOL_ROOT/dir1/file1 $((16#$TGT_FIRST))
814         check_file_in_osts $POOL_ROOT/dir1/file2 "$((TGT_FIRST + 1))"
815         check_file_in_osts $POOL_ROOT/dir1/file3 "$((TGT_FIRST + 2))"
816
817         create_dir $POOL_ROOT/dir2 $POOL $count
818         createmany -o $POOL_ROOT/dir2/$tfile- $numfiles ||
819                 error "createmany $POOL_ROOT/dir2/$tfile- failed!"
820         for file in $POOL_ROOT/dir2/*; do
821                 check_file_in_pool $file $POOL $count
822         done
823
824         create_dir $POOL_ROOT/dir3 $POOL $count $((TGT_FIRST + 1))
825         createmany -o $POOL_ROOT/dir3/$tfile- $numfiles ||
826                 error "createmany $POOL_ROOT/dir3/$tfile- failed!"
827         for file in $POOL_ROOT/dir3/*; do
828                 check_file_in_pool $file $POOL $count
829         done
830
831         create_dir $POOL_ROOT/dir4 $POOL 1
832         createmany -o $POOL_ROOT/dir4/$tfile- $numfiles ||
833                 error "createmany $POOL_ROOT/dir4/$tfile- failed!"
834         for file in $POOL_ROOT/dir4/*; do
835                 check_file_in_pool $file $POOL 1
836         done
837
838         create_dir $POOL_ROOT/dir5 $POOL 1 $((TGT_FIRST + 2))
839         createmany -o $POOL_ROOT/dir5/$tfile- $numfiles ||
840                 error "createmany $POOL_ROOT/dir5/$tfile- failed!"
841         for file in $POOL_ROOT/dir5/*; do
842                 check_file_in_pool $file $POOL 1
843         done
844
845         rm -rf $POOL_ROOT/dir[1-5]/
846
847         return 0
848 }
849 run_test 13 "Striping characteristics in a pool"
850
851 test_14() {
852         [[ $OSTCOUNT -le 2 ]] && skip_env "needs >= 3 OSTs"
853
854         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
855         local numfiles=100
856         local i
857
858         [ $OSTSIZE -gt $((MAXFREE / OSTCOUNT)) ] &&
859         skip_env "OST size $OSTSIZE is larger than $((MAXFREE / OSTCOUNT))"
860
861         create_pool_nofail $POOL
862         create_pool_nofail $POOL2
863
864         add_pool $POOL $TGT_HALF "$TGT_UUID2"
865         add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
866
867         create_dir $POOL_ROOT/dir1 $POOL 1
868         create_file $POOL_ROOT/dir1/file $POOL 1
869         local ost=$($LFS getstripe -i $POOL_ROOT/dir1/file)
870         i=0
871         while [[ $i -lt $numfiles ]]; do
872                 ost=$((ost + 2))
873                 [[ $ost -gt $((16#$TGT_MAX)) ]] && ost=$TGT_FIRST
874
875                 # echo "Iteration: $i OST: $ost"
876                 create_file $POOL_ROOT/dir1/file${i} $POOL 1
877                 check_file_in_pool $POOL_ROOT/dir1/file${i} $POOL
878                 i=$((i + 1))
879         done
880
881         # Fill up OST0 until it is nearly full.
882         # Create 9 files of size OST0_SIZE/10 each.
883         create_dir $POOL_ROOT/dir2 $POOL2 1
884         $LFS df $POOL_ROOT/dir2
885         OST0_SIZE=$($LFS df $POOL_ROOT/dir2 | awk '/\[OST:0\]/ { print $4 }')
886         FILE_SIZE=$((OST0_SIZE/1024/10))
887         echo "Filling OST0 with 9 files of ${FILE_SIZE}MB in $POOL_ROOT/dir2"
888         i=1
889         while [[ $i -lt 10 ]]; do
890                 dd if=/dev/zero of=$POOL_ROOT/dir2/f${i} bs=1M count=$FILE_SIZE
891                 i=$((i + 1))
892         done
893         sleep 1 # get new statfs info
894         $LFS df $POOL_ROOT/dir2
895
896         # OST $TGT_FIRST is no longer favored; but it may still be used.
897         create_dir $POOL_ROOT/dir3 $POOL 1
898         create_file $POOL_ROOT/dir3/file $POOL 1
899         createmany -o $POOL_ROOT/dir3/$tfile- $numfiles ||
900                 error "createmany $POOL_ROOT/dir3/$tfile- failed!"
901         for file in $POOL_ROOT/dir3/*; do
902                 check_file_in_pool $file $POOL
903         done
904
905         rm -rf $POOL_ROOT
906
907         return 0
908 }
909 run_test 14 "Round robin and QOS striping within a pool"
910
911 test_15() {
912         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
913         local numfiles=100
914         local i=0
915
916         while [[ $i -lt $OSTCOUNT ]]; do
917                 create_pool_nofail $POOL${i}
918
919                 local tgt=$(printf "$FSNAME-OST%04x_UUID " $i)
920                 add_pool $POOL${i} "$FSNAME-OST[$(printf %04x $i)]" "$tgt"
921                 create_dir $POOL_ROOT/dir${i} $POOL${i}
922                 createmany -o $POOL_ROOT/dir$i/$tfile $numfiles ||
923                         error "createmany $POOL_ROOT/dir$i/$tfile failed!"
924
925                 for file in $POOL_ROOT/dir$i/*; do
926                         check_file_in_osts $file $i
927                 done
928
929                 i=$((i + 1))
930         done
931
932         return 0
933 }
934 run_test 15 "One directory per OST/pool"
935
936 test_16() {
937         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
938         local numfiles=10
939         local i=0
940
941         create_pool_nofail $POOL
942
943         add_pool $POOL $TGT_HALF "$TGT_UUID2"
944
945         local dir=$POOL_ROOT/$tdir
946         create_dir $dir $POOL
947
948         for i in $(seq 1 10); do
949                 dir=${dir}/dir${i}
950         done
951         mkdir -p $dir
952
953         createmany -o $dir/$tfile $numfiles ||
954                 error "createmany $dir/$tfile failed!"
955
956         for file in $dir/*; do
957                 check_file_in_pool $file $POOL
958         done
959
960         rm -rf $POOL_ROOT/$tdir
961
962         return 0
963 }
964 run_test 16 "Inheritance of pool properties"
965
966 test_17() {
967         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
968         local numfiles=10
969         local i=0
970
971         create_pool_nofail $POOL
972
973         add_pool $POOL $TGT_ALL "$TGT_UUID"
974
975         local dir=$POOL_ROOT/dir
976         create_dir $dir $POOL
977
978         createmany -o $dir/${tfile}1_ $numfiles ||
979                 error "createmany $dir/${tfile}1_ failed!"
980
981         for file in $dir/*; do
982                 check_file_in_pool $file $POOL
983         done
984
985         destroy_pool $POOL
986
987         createmany -o $dir/${tfile}2_ $numfiles ||
988                 error "createmany $dir/${tfile}2_ failed!"
989
990         rm -rf $dir
991         return 0
992 }
993 run_test 17 "Referencing an empty pool"
994
995 create_perf() {
996         local cdir=$1/d
997         local numsec=$2
998         local time
999
1000         mkdir -p $cdir
1001         sync
1002         wait_delete_completed >/dev/null # give pending IO chance to go to disk
1003         stat=$(createmany -o $cdir/${tfile} -t $numsec | tail -1)
1004         files=$(echo $stat | cut -f 2 -d ' ')
1005         echo $stat 1>&2
1006         unlinkmany $cdir/${tfile} $files > /dev/null
1007         sync
1008
1009         echo $files
1010 }
1011
1012 test_18() {
1013         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1014         local numsec=15
1015         local iter=3
1016         local plaindir=$POOL_ROOT/plaindir
1017         local pooldir=$POOL_ROOT/pooldir
1018         local f1=0
1019         local f2=0
1020         local f3=0
1021         local diff
1022
1023         for i in $(seq 1 $iter); do
1024                 echo "Create performance, iteration $i, $numsec seconds x 3"
1025
1026                 local files1=$(create_perf $plaindir $numsec)
1027                 [[ $files1 -eq 0 ]] && error "Zero files created without pool"
1028                 f1=$((f1 + files1))
1029                 echo "iter $i: $files1 creates without pool"
1030
1031                 create_pool_nofail $POOL > /dev/null
1032                 add_pool $POOL $TGT_ALL "$TGT_UUID" > /dev/null
1033                 create_dir $pooldir $POOL
1034                 local files2=$(create_perf $pooldir $numsec)
1035                 [[ $files2 -eq 0 ]] && error "Zero files created with pool"
1036                 f2=$((f2 + files2))
1037                 echo "iter $i: $files2 creates with pool"
1038
1039                 destroy_pool $POOL > /dev/null
1040                 local files3=$(create_perf $pooldir $numsec)
1041                 [[ $files3 -eq 0 ]] &&
1042                         error "Zero files created with missing pool"
1043                 f3=$((f3 + files3))
1044                 echo "iter $i: $files3 creates with missing pool"
1045
1046                 echo
1047         done
1048
1049         echo Avg files created in $numsec seconds without pool: $((f1 / iter))
1050         echo Avg files created in $numsec seconds with pool: $((f2 / iter))
1051         echo Avg files created in $numsec seconds missing pool: $((f3 / iter))
1052
1053         # Set this high until we establish a baseline for what the degradation
1054         # is / should be
1055         max=30
1056
1057         diff=$((($f1 - $f2) * 100 / $f1))
1058         echo  "No pool / wide pool: $diff %."
1059         [ $diff -gt $max ] &&
1060                 error_ignore bz23408 "Degradation with wide pool is $diff% > $max%"
1061
1062         max=30
1063         diff=$((($f1 - $f3) * 100 / $f1))
1064         echo  "No pool / missing pool: $diff %."
1065         [ $diff -gt $max ] &&
1066                 error_ignore bz23408 "Degradation with wide pool is $diff% > $max%"
1067
1068         return 0
1069 }
1070 run_test 18 "File create in a directory which references a deleted pool"
1071
1072 test_19() {
1073         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1074         local numfiles=12
1075         local dir1=$POOL_ROOT/dir1
1076         local dir2=$POOL_ROOT/dir2
1077         local i=0
1078
1079         create_pool_nofail $POOL
1080
1081         add_pool $POOL $TGT_HALF "$TGT_UUID2"
1082
1083         create_dir $dir1 $POOL
1084         createmany -o $dir1/${tfile} $numfiles ||
1085                 error "createmany $dir1/${tfile} failed!"
1086         for file in $dir1/*; do
1087                 check_file_in_pool $file $POOL
1088         done
1089
1090         mkdir -p $dir2
1091         createmany -o $dir2/${tfile} $numfiles ||
1092                 error "createmany $dir2/${tfile} failed!"
1093         for file in $dir2/*; do
1094                 check_file_not_in_pool $file $POOL
1095         done
1096
1097         rm -rf $dir1 $dir2
1098
1099         return 0
1100 }
1101 run_test 19 "Pools should not come into play when not specified"
1102
1103 test_20() {
1104         [[ $OSTCOUNT -ge 2 ]] || skip_env "needs >= 2 OSTs"
1105
1106         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1107         local numfiles=12
1108         local dir1=$POOL_ROOT/dir1
1109         local dir2=$dir1/dir2
1110         local dir3=$dir1/dir3
1111         local i=0
1112         local TGT
1113
1114         create_pool_nofail $POOL
1115         create_pool_nofail $POOL2
1116
1117         add_pool $POOL $TGT_HALF "$TGT_UUID2"
1118
1119         local start=$(printf %04x $((TGT_FIRST + 1)))
1120         TGT=$(for i in $(seq 0x$start 2 0x$TGT_MAX); do \
1121                 printf "$FSNAME-OST%04x_UUID " $i; done)
1122         add_pool $POOL2 "$FSNAME-OST[$start-$TGT_MAX/2]" "$TGT"
1123
1124         create_dir $dir1 $POOL
1125         create_file $dir1/file1 $POOL2  # Should replace $dir1 pool with $POOL2
1126         create_dir $dir2 $POOL2
1127         touch $dir2/file2               # Should inherit $POOL2 from $dir2
1128         mkdir $dir3                     # Should inherit $POOL from $dir1
1129         $LFS setstripe -c 1 $dir3       # Should remain existing $POOL
1130         touch $dir3/file3               # Should inherit $POOL from $dir3
1131         $LFS setstripe -c 1 $dir2/file4 # Should inherit $POOL2 from dir2
1132         $LFS setstripe -S 64K $dir1/file5 # Should inderit $POOL from $dir1
1133
1134         check_file_in_pool $dir1/file1 $POOL2
1135         check_file_in_pool $dir2/file2 $POOL2
1136         check_dir_not_in_pool $dir3 $POOL2
1137         check_file_not_in_pool $dir3/file3 $POOL2
1138         check_file_not_in_pool $dir2/file4 $POOL
1139         check_file_not_in_pool $dir1/file5 $POOL2
1140
1141         if [ "$MDS1_VERSION" -ge $(version_code 2.10.54) ]; then
1142                 check_dir_in_pool $dir3 $POOL
1143                 check_file_in_pool $dir3/file3 $POOL
1144                 check_file_in_pool $dir2/file4 $POOL2
1145                 check_file_in_pool $dir1/file5 $POOL
1146         fi
1147
1148         rm -rf $dir1
1149
1150         return 0
1151 }
1152 run_test 20 "Different pools in a directory hierarchy."
1153
1154 test_21() {
1155         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1156         [[ $OSTCOUNT -le 1 ]] && skip_env "needs >= 2 OSTs"
1157
1158         local numfiles=12
1159         local i=0
1160         local dir=$POOL_ROOT/dir
1161
1162         create_pool_nofail $POOL
1163
1164         add_pool $POOL $TGT_HALF "$TGT_UUID2"
1165
1166         create_dir $dir $POOL $OSTCOUNT
1167         create_file $dir/file1 $POOL $OSTCOUNT
1168         $LFS getstripe -v $dir/file1
1169         check_file_in_pool $dir/file1 $POOL
1170
1171         rm -rf $dir
1172
1173         return 0
1174 }
1175 run_test 21 "OST pool with fewer OSTs than stripe count"
1176
1177 add_loop() {
1178         local pool=$1
1179         local step=$2
1180
1181         echo loop for $pool
1182
1183         for c in $(seq 1 10); do
1184                 echo "Pool $pool, iteration $c"
1185                 do_facet mgs lctl pool_add $FSNAME.$pool \
1186                         OST[$TGT_FIRST-$TGT_MAX/$step] 2>/dev/null
1187                 local TGT_SECOND=$(printf %04x $((TGT_FIRST + $step)))
1188                 if [ $((16#$TGT_SECOND)) -le $((16#$TGT_MAX)) ]; then
1189                 do_facet mgs lctl pool_remove $FSNAME.$pool \
1190                         OST[$TGT_SECOND-$TGT_MAX/$step]
1191                 fi
1192         done
1193         echo loop for $pool complete
1194 }
1195
1196 test_22() {
1197         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1198         [[ $OSTCOUNT -le 1 ]] && skip_env "needs >= 2 OSTs"
1199
1200         local numfiles=100
1201
1202         create_pool_nofail $POOL
1203         add_pool $POOL "OST0000" "$FSNAME-OST0000_UUID "
1204         create_pool_nofail $POOL2
1205         add_pool $POOL2 "OST0000" "$FSNAME-OST0000_UUID "
1206
1207         add_loop $POOL 1 &
1208         add_loop $POOL2 2 &
1209         sleep 5
1210         create_dir $POOL_ROOT $POOL
1211         createmany -o $POOL_ROOT/${tfile} $numfiles ||
1212                 error "createmany $POOL_ROOT/${tfile} failed!"
1213         wait
1214
1215         return 0
1216 }
1217 run_test 22 "Simultaneous manipulation of a pool"
1218
1219 test_23a() {
1220         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1221         [[ $OSTCOUNT -le 1 ]] && skip_env "needs >= 2 OSTs"
1222
1223         mkdir -p $POOL_ROOT
1224         check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS ||
1225                 skip_env "User $RUNAS_ID does not exist - skipping"
1226
1227         local i=0
1228         local TGT
1229         local BUNIT_SZ=1024  # min block quota unit(kB)
1230         local LIMIT=$((BUNIT_SZ * (OSTCOUNT + 1)))
1231         local dir=$POOL_ROOT/dir
1232         local file="$dir/$tfile-quota"
1233
1234         create_pool_nofail $POOL
1235
1236         local TGT=$(for i in $(seq 0x$TGT_FIRST 3 0x$TGT_MAX); do \
1237                 printf "$FSNAME-OST%04x_UUID " $i; done)
1238         add_pool $POOL "$FSNAME-OST[$TGT_FIRST-$TGT_MAX/3]" "$TGT"
1239         create_dir $dir $POOL
1240
1241         # XXX remove the interoperability code once we drop the old server
1242         #     ( < 2.3.50) support.
1243         if [ "$MDS1_VERSION" -lt $(version_code 2.3.50) ]; then
1244                 $LFS quotaoff -ug $MOUNT
1245                 $LFS quotacheck -ug $MOUNT
1246         else
1247                 if [[ $PERM_CMD == *"set_param -P"* ]]; then
1248                         do_facet mgs $PERM_CMD \
1249                                 osd-*.$FSNAME-OST*.quota_slave.enabled=ug
1250                 else
1251                         do_facet mgs $PERM_CMD $FSNAME.quota.ost=ug
1252                 fi
1253                 sleep 5
1254         fi
1255
1256         $LFS setquota -u $RUNAS_ID -b $LIMIT -B $LIMIT $dir
1257         sleep 3
1258         $LFS quota -v -u $RUNAS_ID $dir
1259
1260         $LFS setstripe -c 1 -p $POOL $file
1261         chown $RUNAS_ID.$RUNAS_GID $file
1262         ls -l $file
1263
1264         # This does two "dd" runs to ensure that the quota failure is returned
1265         # to userspace when we check.  The first "dd" might otherwise complete
1266         # without error if it is only writing into cache.
1267         stat=$(LOCALE=C $RUNAS dd if=/dev/zero of=$file bs=$BUNIT_SZ \
1268                 count=$((BUNIT_SZ*2)) 2>&1)
1269         echo $stat | grep "Disk quota exceeded" > /dev/null
1270         if [ $? -eq 0 ]; then
1271                 $LFS quota -v -u $RUNAS_ID $dir
1272                 cancel_lru_locks osc
1273                 stack_trap "rm -f $file"
1274                 stat=$(LOCALE=C $RUNAS dd if=/dev/zero of=$file bs=$BUNIT_SZ \
1275                         count=$BUNIT_SZ seek=$((BUNIT_SZ*2)) 2>&1)
1276                 RC=$?
1277                 echo $stat
1278                 [[ $RC -eq 0 ]] && error "second dd did not fail."
1279                 echo $stat | grep "Disk quota exceeded" > /dev/null
1280                 [[ $? -eq 1 ]] && error "second dd did not fail with EDQUOT."
1281         else
1282                 log "first dd failed with EDQUOT."
1283         fi
1284         $LFS quota -v -u $RUNAS_ID $dir
1285 }
1286 run_test 23a "OST pools and quota"
1287
1288 test_23b() {
1289         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1290         [[ $OSTCOUNT -le 1 ]] && skip_env "needs >= 2 OSTs"
1291
1292         mkdir -p $POOL_ROOT
1293         check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS || {
1294                 skip_env "User $RUNAS_ID does not exist - skipping"
1295         }
1296
1297         local i=0
1298         local TGT
1299         local dir=$POOL_ROOT/dir
1300         local file="$dir/$tfile-quota"
1301
1302         create_pool_nofail $POOL
1303
1304         local TGT=$(for i in $(seq 0x$TGT_FIRST 3 0x$TGT_MAX); do \
1305                 printf "$FSNAME-OST%04x_UUID " $i; done)
1306         add_pool $POOL "$FSNAME-OST[$TGT_FIRST-$TGT_MAX/3]" "$TGT"
1307         create_dir $dir $POOL
1308
1309         local maxfree=$((1024 * 1024 * 30)) # 30G
1310         local AVAIL=$(lfs_df -p $POOL $dir | awk '/summary/ { print $4 }')
1311         [ $AVAIL -gt $maxfree ] &&
1312                 skip_env "Filesystem space $AVAIL is larger than " \
1313                         "$maxfree limit"
1314
1315         echo "OSTCOUNT=$OSTCOUNT, OSTSIZE=$OSTSIZE, AVAIL=$AVAIL"
1316         echo "MAXFREE=$maxfree, SLOW=$SLOW"
1317
1318         # XXX remove the interoperability code once we drop the old server
1319         #     ( < 2.3.50) support.
1320         if [ "$MDS1_VERSION" -lt $(version_code 2.3.50) ]; then
1321                 $LFS quotaoff -ug $MOUNT
1322         else
1323                 if [[ $PERM_CMD == *"set_param -P"* ]]; then
1324                         do_facet mgs $PERM_CMD \
1325                                 osd-*.$FSNAME-OST*.quota_slave.enabled=none
1326                 else
1327                         do_facet mgs $PERM_CMD $FSNAME.quota.ost=none
1328                 fi
1329                 sleep 5
1330         fi
1331
1332         chown $RUNAS_ID.$RUNAS_ID $dir
1333         i=0
1334         local RC=0
1335         local TOTAL=0 # KB
1336         local stime=$(date +%s)
1337         local stat
1338         local etime
1339         local elapsed
1340         local maxtime=300 # minimum speed: 5GB / 300sec ~= 17MB/s
1341         while [ $RC -eq 0 ]; do
1342                 i=$((i + 1))
1343                 stat=$(LOCALE=C $RUNAS2 dd if=/dev/zero of=${file}$i bs=1M \
1344                         count=$((5 * 1024)) 2>&1)
1345                 RC=$?
1346                 TOTAL=$((TOTAL + 1024 * 1024 * 5))
1347                 echo "[$i iteration] $stat"
1348                 echo "total written: $TOTAL"
1349
1350                 etime=$(date +%s)
1351                 elapsed=$((etime - stime))
1352                 echo "stime=$stime, etime=$etime, elapsed=$elapsed"
1353
1354                 if [ $RC -eq 1 ]; then
1355                         echo $stat | grep -q "Disk quota exceeded"
1356                         [[ $? -eq 0 ]] &&
1357                                 error "dd failed with EDQUOT with quota off"
1358
1359                         echo $stat | grep -q "No space left on device"
1360                         [[ $? -ne 0 ]] &&
1361                                 error "dd did not fail with ENOSPC"
1362                 elif [ $TOTAL -gt $AVAIL ]; then
1363                         error "dd didn't fail with ENOSPC ($TOTAL > $AVAIL)"
1364                 elif [ $i -eq 1 -a $elapsed -gt $maxtime ]; then
1365                         log "The first 5G write used $elapsed (> $maxtime) " \
1366                                 "seconds, terminated"
1367                         RC=1
1368                 fi
1369         done
1370
1371         df -h
1372         rm -rf $POOL_ROOT
1373 }
1374 run_test 23b "OST pools and OOS"
1375
1376 test_24() {
1377         [[ $OSTCOUNT -le 1 ]] && skip_env "needs >= 2 OSTs"
1378         [[ "$MDS1_VERSION" -ge $(version_code 2.8.56) ]] ||
1379                 skip "Need server version newer than 2.8.55"
1380
1381         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1382         local numfiles=10
1383         local i=0
1384         local TGT
1385         local dir
1386         local res
1387
1388         create_pool_nofail $POOL
1389
1390         add_pool $POOL $TGT_ALL "$TGT_UUID"
1391
1392         create_dir $POOL_ROOT/dir1 $POOL $OSTCOUNT
1393
1394         mkdir $POOL_ROOT/dir2
1395         $LFS setstripe -p $POOL -S 65536 -i 0 -c 1 $POOL_ROOT/dir2 ||
1396                 error "$LFS setstripe $POOL_ROOT/dir2 failed"
1397
1398         mkdir $POOL_ROOT/dir3
1399         $LFS setstripe -S 65536 -i 0 -c 1 $POOL_ROOT/dir3 ||
1400                 error "$LFS setstripe $POOL_ROOT/dir3 failed"
1401
1402         mkdir $POOL_ROOT/dir4
1403
1404         for i in 1 2 3 4; do
1405                 dir=${POOL_ROOT}/dir${i}
1406                 local pool
1407                 local pool1
1408                 local count
1409                 local count1
1410                 local index
1411                 local size
1412                 local size1
1413
1414                 createmany -o $dir/${tfile} $numfiles ||
1415                         error "createmany $dir/${tfile} failed!"
1416                 pool=$($LFS getstripe --pool $dir)
1417                 index=$($LFS getstripe -i $dir)
1418                 size=$($LFS getstripe -S $dir)
1419                 count=$($LFS getstripe -c $dir)
1420
1421                 for file in $dir/*; do
1422                         if [ "$pool" != "" ]; then
1423                                 check_file_in_pool $file $pool
1424                         fi
1425                         pool1=$($LFS getstripe --pool $file)
1426                         count1=$($LFS getstripe -c $file)
1427                         size1=$($LFS getstripe -S $file)
1428                         [[ "$pool" != "$pool1" ]] &&
1429                                 error "Pool '$pool' not on $file:$pool1"
1430                         [[ "$count" != "$count1" ]] &&
1431                                 [[ "$count" != "-1" ]] &&
1432                                         error "Stripe count $count not on"\
1433                                                 "$file:$count1"
1434                         [[ "$count1" != "$OSTCOUNT" ]] &&
1435                                 [[ "$count" = "-1" ]] &&
1436                                         error "Stripe count $count1 not on"\
1437                                                 "$file:$OSTCOUNT"
1438                         [[ "$size" != "$size1" ]] && [[ "$size" != "0" ]] &&
1439                                 error "Stripe size $size not on $file:$size1"
1440                 done
1441         done
1442
1443         rm -rf $POOL_ROOT
1444
1445         return 0
1446 }
1447 run_test 24 "Independence of pool from other setstripe parameters"
1448
1449 test_25() {
1450         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1451
1452         mkdir_on_mdt0 $POOL_ROOT
1453
1454         for i in $(seq 10); do
1455                 create_pool_nofail $POOL$i
1456                 do_facet mgs "lctl pool_add $FSNAME.$POOL$i OST0000; sync"
1457                 wait_update $HOSTNAME "lctl get_param -n \
1458                         lov.$FSNAME-*.pools.$POOL$i | sort -u |
1459                         tr '\n' ' ' " "$FSNAME-OST0000_UUID " >/dev/null ||
1460                                 error "pool_add failed: $1; $2"
1461
1462                 facet_failover $SINGLEMDS ||
1463                         error "failed to failover $SINGLEMDS"
1464                 wait_osc_import_state $SINGLEMDS ost FULL
1465                 clients_up
1466
1467                 wait_mds_ost_sync
1468                 # Veriy that the pool got created and is usable
1469                 df $POOL_ROOT > /dev/null
1470                 sleep 5
1471
1472                 # Make sure OST0 can be striped on
1473                 $LFS setstripe -i 0 -c 1 $POOL_ROOT/$tfile
1474                 local STR=$($LFS getstripe -i $POOL_ROOT/$tfile)
1475                 rm $POOL_ROOT/$tfile
1476                 if [[ "$STR" == "0" ]]; then
1477                         echo "Creating a file in pool$i"
1478                         create_file $POOL_ROOT/file$i $POOL$i || break
1479                         check_file_in_pool $POOL_ROOT/file$i $POOL$i || break
1480                 else
1481                         echo "OST 0 seems to be unavailable.  Try later."
1482                 fi
1483         done
1484
1485         rm -rf $POOL_ROOT
1486 }
1487 run_test 25 "Create new pool and restart MDS"
1488
1489 test_26() {
1490         [[ $OSTCOUNT -le 2 ]] && skip_env "needs >= 3 OSTs"
1491         local dev=$(mdsdevname ${SINGLEMDS//mds/})
1492         local POOL_ROOT=${POOL_ROOT:-$DIR/$tdir}
1493
1494         mkdir -p $POOL_ROOT
1495
1496         create_pool_nofail $POOL2
1497
1498         do_facet mgs "lctl pool_add $FSNAME.$POOL2 OST0000; sync"
1499         wait_update $HOSTNAME "lctl get_param -n \
1500                 lov.$FSNAME-*.pools.$POOL2 | sort -u |
1501                 grep $FSNAME-OST0000_UUID " "$FSNAME-OST0000_UUID" ||
1502                         error "pool_add failed: $1; $2"
1503
1504         do_facet mgs "lctl pool_add $FSNAME.$POOL2 OST0002; sync"
1505         wait_update $HOSTNAME "lctl get_param -n \
1506                 lov.$FSNAME-*.pools.$POOL2 | sort -u |
1507                 grep $FSNAME-OST0002_UUID" "$FSNAME-OST0002_UUID" ||
1508                         error "pool_add failed: $1; $2"
1509
1510         # Veriy that the pool got created and is usable
1511         df $POOL_ROOT
1512         echo "Creating files in $POOL2"
1513
1514         for ((i = 0; i < 10; i++)); do
1515                 #OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
1516                 #Fail OST0000 to ensure objects create on
1517                 #the other OST in the pool
1518                 do_facet $SINGLEMDS lctl set_param fail_loc=0x147
1519                 do_facet $SINGLEMDS lctl set_param fail_val=0
1520                 create_file $POOL_ROOT/file$i $POOL2 1 -1 || break
1521                 do_facet $SINGLEMDS lctl set_param fail_loc=0
1522                 check_file_in_pool $POOL_ROOT/file$i $POOL2 || break
1523         done
1524         rm -rf $POOL_ROOT
1525 }
1526 run_test 26 "Choose other OSTs in the pool first in the creation remedy"
1527
1528 test_27() {
1529         [[ $OSTCOUNT -le 1 ]] && skip_env "Need at least 2 OSTs"
1530
1531         local osts
1532         local pid
1533         local count=$OSTCOUNT
1534
1535         create_pool_nofail $POOL
1536         do_facet mgs lctl pool_add $FSNAME.$POOL $TGT_ALL
1537         wait_update_facet $SINGLEMDS \
1538                 "lctl pool_list $FSNAME.$POOL | wc -l" "$((OSTCOUNT + 1))" ||
1539                 error "MDS: pool_list $FSNAME.$POOL failed"
1540         osts=$(list_pool $FSNAME.$POOL)
1541         for ost in ${osts}; do
1542                 ((count--))
1543                 if [[ $count -eq 0 ]]; then
1544                         #define OBD_FAIL_OST_LIST_ASSERT    0x239
1545                         do_facet $SINGLEMDS \
1546                                 $LCTL set_param fail_loc=0x239 fail_val=10
1547                         list_pool $FSNAME.$POOL &
1548                         pid=$!
1549                         sleep 5
1550                         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
1551                         do_facet mgs $LCTL pool_remove $FSNAME.$POOL $ost
1552                         wait $pid
1553                         do_facet $SINGLEMDS $LCTL set_param fail_val=0
1554                 else
1555                         do_facet mgs $LCTL pool_remove $FSNAME.$POOL $ost
1556                 fi
1557         done
1558         destroy_pool $POOL
1559 }
1560 run_test 27 "Race pool_list and pool_remove"
1561
1562 test_28() {
1563         create_pool_nofail $POOL
1564         create_pool_nofail $POOL2
1565         add_pool $POOL $TGT_ALL "$TGT_UUID"
1566         add_pool $POOL2 $TGT_ALL "$TGT_UUID"
1567
1568         start_full_debug_logging
1569         #$LFS setstripe -E 4M -c 1 -p $POOL -E 16M -c 2 $DIR/$tfile
1570         $LFS setstripe -c 1 -p $POOL $DIR/$tfile
1571         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=1 seek=16
1572         local csum=$(cksum $DIR/$tfile)
1573         $LFS getstripe $DIR/$tfile
1574         local pool="$($LFS getstripe -p $DIR/$tfile)"
1575         [[ "$pool" == "$POOL" ]] ||
1576                 error "$tfile is in '$pool', not created on $POOL"
1577         $LFS_MIGRATE -y -p $POOL2 $DIR/$tfile ||
1578                 error "migrate $tfile to $POOL2 failed"
1579         $LFS getstripe $DIR/$tfile
1580         pool="$($LFS getstripe -p $DIR/$tfile)"
1581         [[ "$pool" == "$POOL2" ]] ||
1582                 error "$tfile is in '$pool', not migrated to $POOL2"
1583         local csum2=$(cksum $DIR/$tfile)
1584         [[ "$csum" == "$csum2" ]] || error "checksum error after migration"
1585         stop_full_debug_logging
1586 }
1587 run_test 28 "lfs_migrate with pool name"
1588
1589 function fill_ost_pool() {
1590         local pool=$1
1591         local threshold=$2
1592         local tmpfile=$DIR/$tdir/$tfile-$pool-filler
1593
1594         mkdir -p $DIR/$tdir
1595         lfs setstripe $tmpfile -p $pool -c -1
1596
1597         local dfa=($(lfs_df -p $pool | grep _summary))
1598         local total=${dfa[1]}
1599         local used=${dfa[2]}
1600         local towrite=$(( (total * (threshold + 1) / 100) - used ))
1601
1602         echo "total $total, used $used, towrite $towrite"
1603         (( towrite > 0 )) && {
1604                 fallocate -l$((towrite * 1024)) $tmpfile ||
1605                         error "can't fallocate"
1606         }
1607 }
1608
1609 test_29() {
1610         local pool1=${TESTNAME}-1
1611         local pool2=${TESTNAME}-2
1612         local threshold=10
1613         local prefix="lod.$FSNAME-MDT0000*.pool.$pool1"
1614         local cmd="$LCTL get_param -n $prefix"
1615         local before
1616         local after
1617
1618         (( $MDS1_VERSION >= $(version_code 2.14.53) )) ||
1619                 skip "Need MDS version at least 2.14.53"
1620         (( $OSTCOUNT >= 4 )) || skip "needs >= 4 OSTs"
1621         check_set_fallocate_or_skip
1622
1623         mkdir_on_mdt0 $DIR/$tdir
1624         stack_trap "rm -rf $DIR/$tdir"
1625
1626         pool_add $pool1 || error "Pool creation failed"
1627         pool_add_targets $pool1 0 1 || error "pool_add_targets failed"
1628
1629         pool_add $pool2 || error "Pool creation failed"
1630         pool_add_targets $pool2 2 3 || error "pool_add_targets failed"
1631
1632         do_facet mds1 $LCTL set_param $prefix.spill_target=$pool2
1633         do_facet mds1 $LCTL set_param $prefix.spill_threshold_pct=$threshold
1634         stack_trap "do_facet mds1 $LCTL set_param $prefix.spill_threshold_pct=0"
1635
1636         [[ $(do_facet mds1 "$cmd.spill_target") == "$pool2" ]] ||
1637                 error "spill target wasn't set"
1638         [[ $(do_facet mds1 "$cmd.spill_threshold_pct") == "$threshold" ]] ||
1639                 error "spill threshold wasn't set"
1640         before=$(do_facet mds1 "$cmd.spill_hit")
1641         lfs_df -p $pool1 | grep summary
1642         fill_ost_pool $pool1 $threshold
1643         cancel_lru_locks osc
1644         local delay=$(do_facet mds1 lctl get_param -n lo[vd].*.qos_maxage |
1645                       awk '{ print $1 * 2; exit; }')
1646         sleep $((delay + 1))
1647         lfs_df -p $pool1 | grep summary
1648
1649         # in a directory with default striping
1650         $LFS setstripe -p $pool1 $DIR/$tdir || error "can't set default layout"
1651         touch $DIR/$tdir/$tfile-2
1652         [[ $($LFS getstripe -p $DIR/$tdir/$tfile-2) == "$pool2" ]] || {
1653                 $LFS getstripe $DIR/$tdir/$tfile-2
1654                 error "old pool on $tfile-2"
1655         }
1656         after=$(do_facet mds1 "$cmd.spill_hit")
1657         (( after == before + 1 )) || error "after $after != before $before + 1"
1658
1659         # when striping is specified explicitly
1660         $LFS setstripe -p $pool1 $DIR/$tdir/$tfile-3 || error "can't setstripe"
1661         touch $DIR/$tdir/$tfile-3
1662         [[ $($LFS getstripe -p $DIR/$tdir/$tfile-3) == "$pool2" ]] || {
1663                 $LFS getstripe $DIR/$tdir/$tfile-3
1664                 error "old pool on $tfile-3"
1665         }
1666         after=$(do_facet mds1 "$cmd.spill_hit")
1667         (( after == before + 2 )) || error "after $after != before $before + 2"
1668
1669         # spill is revalidated at object creation
1670         wait_update_facet mds1 "$cmd.spill_is_active" "1" ||
1671                 error "spilling is still inactive"
1672
1673         rm -f $DIR/$tdir/$tfile* || error "can't rm $DIR/$tfile*"
1674         wait_delete_completed
1675         sleep $delay
1676         lfs_df -p $pool1
1677
1678         touch $DIR/$tdir/$tfile-2
1679         [[ $($LFS getstripe -p $DIR/$tdir/$tfile-2) == "$pool1" ]] || {
1680                 $LFS getstripe $DIR/$tdir/$tfile-2
1681                 error "new pool != $pool1"
1682         }
1683         # spill is revaluated at object creation
1684         wait_update_facet mds1 "$cmd.spill_is_active" "0" ||
1685                 error "spilling is still active"
1686
1687         do_facet mds1 "$LCTL set_param $prefix.spill_threshold_pct=0"
1688         [[ $(do_facet mds1 "$cmd.spill_threshold_pct") == "0" ]] ||
1689                 error "spill threshold wasn't reset"
1690 }
1691 run_test 29 "check OST pool spilling"
1692
1693 test_30() {
1694         local MDT_DEV=$(mdsdevname 1)
1695         local mdts=$(comma_list $(mdts_nodes))
1696         local pool1=${TESTNAME}-1
1697         local pool2=${TESTNAME}-2
1698         local threshold=10
1699         local spill
1700         local prefix="lod.$FSNAME-MDT0000*.pool.$pool1"
1701         local cmd="$LCTL get_param -n $prefix"
1702
1703         (( $MDS1_VERSION >= $(version_code 2.14.53) )) ||
1704                 skip "Need MDS version at least 2.14.53"
1705         (( $OSTCOUNT >= 4 )) || skip "needs >= 4 OSTs"
1706
1707         pool_add $pool1 || error "Pool creation failed"
1708         pool_add_targets $pool1 0 1 || error "pool_add_targets failed"
1709
1710         pool_add $pool2 || error "Pool creation failed"
1711         pool_add_targets $pool2 2 3 || error "pool_add_targets failed"
1712
1713         # feed a poison
1714         do_facet mds1 $LCTL set_param $prefix.spill_target="0123456789ABCDEF" &&
1715                 error "pool name"
1716         do_facet mds1 $LCTL set_param $prefix.spill_target="$pool1-2" &&
1717                 error "non-exising pool"
1718         do_facet mds1 $LCTL set_param $prefix.spill_target="$pool1" &&
1719                 error "poolback"
1720         do_facet mds1 $LCTL set_param $prefix.spill_threshold_pct="101" &&
1721                 error ">100%"
1722         do_facet mds1 $LCTL set_param $prefix.spill_threshold_pct="-1" &&
1723                 error "<0%"
1724
1725         # set persistent spilling
1726         do_facet mgs $LCTL set_param -P $prefix.spill_target="$pool2"
1727         do_facet mgs $LCTL set_param -P $prefix.spill_threshold_pct=$threshold
1728         wait_update_facet mds1 "$cmd.spill_target" "$pool2" ||
1729                 error "spill target wasn't set"
1730         wait_update_facet mds1 "$cmd.spill_threshold_pct" $threshold ||
1731                 error "spill target wasn't set"
1732
1733         stop mds1 || error "Fail to stop MDT."
1734         start mds1 $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
1735         wait_update_facet mds1 "$cmd.spill_target" "$pool2" ||
1736                 error "spill target wasn't set after restart"
1737         wait_update_facet mds1 "$cmd.spill_threshold_pct" $threshold ||
1738                 error "spill target wasn't set after restart"
1739
1740         # now reset spilling
1741         do_facet mgs $LCTL set_param -P $prefix.spill_threshold_pct=0
1742         wait_update_facet mds1 "$cmd.spill_threshold_pct" 0 ||
1743                 error "spill target wasn't set"
1744
1745         stop mds1 || error "Fail to stop MDT."
1746         start mds1 $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
1747         wait_update_facet mds1 "$cmd.spill_threshold_pct" 0 ||
1748                 error "spill target wasn't set"
1749 }
1750 run_test 30 "persistent OST pool spilling"
1751
1752 test_31() {
1753         local prefix="lod.$FSNAME-*.pool."
1754         local MDT_DEV=$(mdsdevname mds1)
1755         local mdts=$(comma_list $(mdts_nodes))
1756         local do_mdts="do_nodes $mdts $LCTL"
1757         local pool1=${TESTNAME}-1
1758         local pool2=${TESTNAME}-2
1759         local pool3=${TESTNAME}-3
1760         local pool4=${TESTNAME}-4
1761         local threshold=10
1762         local spill
1763
1764         (( $MDS1_VERSION >= $(version_code 2.14.53) )) ||
1765                 skip "Need MDS version at least 2.14.53"
1766         (( $OSTCOUNT >= 4 )) || skip "needs >= 4 OSTs"
1767         check_set_fallocate_or_skip
1768
1769         pool_add $pool1 || error "Pool creation failed"
1770         pool_add_targets $pool1 0 0 || error "pool_add_targets failed"
1771
1772         pool_add $pool2 || error "Pool creation failed"
1773         pool_add_targets $pool2 1 1 || error "pool_add_targets failed"
1774
1775         pool_add $pool3 || error "Pool creation failed"
1776         pool_add_targets $pool3 2 2 || error "pool_add_targets failed"
1777
1778         pool_add $pool4 || error "Pool creation failed"
1779         pool_add_targets $pool4 3 3 || error "pool_add_targets failed"
1780
1781         fill_ost_pool $pool1 $threshold
1782         fill_ost_pool $pool2 $threshold
1783         fill_ost_pool $pool3 $threshold
1784         cancel_lru_locks osc
1785         local delay=$(do_facet mds1 lctl get_param -n lo[vd].*.qos_maxage |
1786                       awk '{ print $1 * 2; exit; }')
1787         sleep $((delay + 1))
1788
1789         stack_trap "$do_mdts set_param lod.*.pool.*.spill_threshold_pct=0"
1790
1791         $do_mdts set_param lod.*.pool.$pool1.spill_target="$pool2"
1792         $do_mdts set_param lod.*.pool.$pool1.spill_threshold_pct="$threshold"
1793
1794         $do_mdts set_param lod.*.pool.$pool2.spill_target="$pool3"
1795         $do_mdts set_param lod.*.pool.$pool2.spill_threshold_pct="$threshold"
1796
1797         $do_mdts set_param lod.*.pool.$pool3.spill_target="$pool4"
1798         $do_mdts set_param lod.*.pool.$pool3.spill_threshold_pct="$threshold"
1799
1800         $do_mdts get_param lod.*.pool.*.spill*
1801
1802         $LFS setstripe -p $pool1 $DIR/$tdir || error "can't set default layout"
1803         local tmpfile=$DIR/$tdir/$tfile-2
1804         touch $tmpfile
1805         $LFS getstripe $tmpfile | grep -q pool.*$pool4 || {
1806                 $LFS getstripe $tmpfile
1807                 error "old pool is not $pool4"
1808         }
1809
1810         # check for loops
1811
1812         # reset all loop spilling
1813         $do_mdts set_param lod.*.pool.*.spill_threshold_pct="0"
1814
1815         # pool1->pool2->pool3, then pool4->pool1 fails
1816         $do_mdts set_param lod.*.pool.$pool1.spill_target="$pool2" ||
1817                 error "can't set spill target for $pool1"
1818         $do_mdts set_param lod.*.pool.$pool2.spill_target="$pool3" ||
1819                 error "can't set spill target for $pool1"
1820         $do_mdts set_param lod.*.pool.$pool3.spill_target="$pool4" ||
1821                 error "can't set spill target for $pool1"
1822         $do_mdts set_param lod.*.pool.$pool4.spill_target="$pool1" &&
1823                 error "loop succeed"
1824
1825         # reset all loop spilling
1826         $do_mdts set_param lod.*.pool.*.spill_threshold_pct="0"
1827
1828         # pool1->pool2,pool4->pool1, then pool3->pool4 fails
1829         $do_mdts set_param lod.*.pool.$pool1.spill_target="$pool2" ||
1830                 error "can't set spill target for $pool1"
1831         $do_mdts set_param lod.*.pool.$pool2.spill_target="$pool3" ||
1832                 error "can't set spill target for $pool1"
1833         $do_mdts set_param lod.*.pool.$pool4.spill_target="$pool1" ||
1834                 error "can't set spill target for $pool4"
1835         $do_mdts set_param lod.*.pool.$pool3.spill_target="$pool4" &&
1836                 error "loop succeed"
1837
1838         return 0
1839 }
1840 run_test 31 "OST pool spilling chained"
1841
1842 cd $ORIG_PWD
1843
1844 complete $SECONDS
1845 destroy_test_pools $FSNAME
1846 if ! combined_mgs_mds; then
1847         zconf_umount $mgs_HOST $MOUNT
1848         do_facet mgs "rm -rf $MOUNT"
1849 fi
1850 check_and_cleanup_lustre
1851 exit_status