Whamcloud - gitweb
LU-10070 lod: SEL: Layout sanity checking
[fs/lustre-release.git] / lustre / tests / sanity-pfl.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 set -e
6
7 ONLY=${ONLY:-"$*"}
8
9 LUSTRE=${LUSTRE:-$(dirname $0)/..}
10 . $LUSTRE/tests/test-framework.sh
11 init_test_env $@
12 init_logging
13
14 # bug number for skipped test:
15 ALWAYS_EXCEPT="$SANITY_PFL_EXCEPT"
16 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
17
18 build_test_filter
19
20 check_and_setup_lustre
21
22 if [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.51) ]]; then
23         skip_env "Need MDS version at least 2.9.51"
24 fi
25
26 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] &&
27         error "\$RUNAS_ID set to 0, but \$UID is also 0!"
28 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
29
30 assert_DIR
31 rm -rf $DIR/[Rdfs][0-9]*
32
33 test_0a() {
34         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
35
36         local comp_file=$DIR/$tdir/$tfile
37         local rw_len=$((3 * 1024 * 1024))       # 3M
38
39         test_mkdir $DIR/$tdir
40         rm -f $comp_file
41
42         $LFS setstripe -E 1m -S 1M -c 1 -E -1 -c 1 $comp_file ||
43                 error "Create $comp_file failed"
44
45         #instantiate all components, so that objs are allocted
46         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
47
48         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
49         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
50
51         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
52
53         small_write $comp_file $rw_len || error "Verify RW failed"
54
55         rm -f $comp_file || error "Delete $comp_file failed"
56 }
57 run_test 0a "Create full components file, no reused OSTs"
58
59 test_0b() {
60         [[ $($LCTL get_param mdc.*.import |
61                 grep "connect_flags:.*overstriping") ]] ||
62                 skip "server does not support overstriping"
63         large_xattr_enabled || skip_env "no large xattr support"
64
65         local comp_file=$DIR/$tdir/$tfile
66
67         test_mkdir $DIR/$tdir
68
69         # Create file with 1.1*LOV_MAX_STRIPE_COUNT stripes should succeed
70         $LFS setstripe -E 1m -C $((LOV_MAX_STRIPE_COUNT / 10)) -E -1 \
71                 -C $LOV_MAX_STRIPE_COUNT $comp_file ||
72         error "Create $comp_file failed"
73
74         rm -f $comp_file || error "Delete $comp_file failed"
75
76         # Create file with 2*LOV_MAX_STRIPE_COUNT stripes should fail
77         $LFS setstripe -E 1m -C $LOV_MAX_STRIPE_COUNT -E -1 -C $LOV_MAX_STRIPE_COUNT \
78                 $comp_file && error "Create $comp_file succeeded"
79
80         rm -f $comp_file || error "Delete $comp_file failed"
81 }
82 run_test 0b "Verify comp stripe count limits"
83
84 test_1a() {
85         local comp_file=$DIR/$tdir/$tfile
86         local rw_len=$((3 * 1024 * 1024))       # 3M
87
88         test_mkdir $DIR/$tdir
89         rm -f $comp_file
90
91         $LFS setstripe -E 1m -S 1m -o 0 -E -1 -o 0 $comp_file ||
92                 error "Create $comp_file failed"
93
94         #instantiate all components, so that objs are allocted
95         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
96
97         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
98         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
99
100         [ $ost_idx1 -ne $ost_idx2 ] && error "$ost_idx1 != $ost_idx2"
101
102         small_write $comp_file $rw_len || error "Verify RW failed"
103
104         rm -f $comp_file || error "Delete $comp_file failed"
105 }
106 run_test 1a "Create full components file, reused OSTs"
107
108 # test overstriping (>1 stripe/OST within a component)
109 test_1b() {
110         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
111         [[ $($LCTL get_param mdc.*.import |
112                 grep "connect_flags:.*overstriping") ]] ||
113                 skip "server does not support overstriping"
114
115         local comp_file=$DIR/$tdir/$tfile
116         local rw_len=$((3 * 1024 * 1024))       # 3M
117
118         test_mkdir $DIR/$tdir
119
120         $LFS setstripe -E 1m -S 1m -o 0,0 -E -1 -o 1,1,0,0 $comp_file ||
121                 error "Create $comp_file failed"
122
123         #instantiate all components, so that objs are allocted
124         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=1M
125
126         $LFS getstripe $comp_file
127         local OSTS_1=$($LFS getstripe -I1 $comp_file | grep -o 'l_ost_idx.*' |
128                       awk -e '{print $2}' | tr "\n" "\0")
129         local OSTS_2=$($LFS getstripe -I2 $comp_file | grep -o 'l_ost_idx.*' |
130                       awk -e '{print $2}' | tr "\n" "\0")
131
132         echo ":"$OSTS_1":"
133         echo ":"$OSTS_2":"
134         [ "$OSTS_1" = "0,0," ] || error "incorrect OSTs($OSTS_1) in component 1"
135         [ "$OSTS_2" = "1,1,0,0," ] ||
136                 error "incorrect OSTs($OSTS_2) in component 2"
137
138         small_write $comp_file $rw_len || error "Verify RW failed"
139
140         rm -f $comp_file || error "Delete $comp_file failed"
141 }
142 run_test 1b "Create full components file, overstriping in components"
143
144 # test overstriping with max stripe count
145 test_1c() {
146         [[ $($LCTL get_param mdc.*.import |
147                 grep "connect_flags:.*overstriping") ]] ||
148                 skip "server does not support overstriping"
149         large_xattr_enabled || skip_env "no large xattr support"
150
151         local comp_file=$DIR/$tdir/$tfile
152         local rw_len=$((3 * 1024 * 1024))       # 3M
153
154         test_mkdir $DIR/$tdir
155
156         $LFS setstripe -E 1m -C 10 -E 10M -C 100 -E -1 \
157             -C $LOV_MAX_STRIPE_COUNT $comp_file ||
158                 error "Create $comp_file failed"
159
160         # Seek & write in to last component so all objects are allocated
161         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=20000
162
163         local count=$($LFS getstripe -c -I1 $DIR/$tdir/$tfile)
164         [ $count -eq 10 ] || error "comp1 stripe count $count, should be 10"
165         count=$($LFS getstripe -c -I2 $DIR/$tdir/$tfile)
166         [ $count -eq 100 ] || error "comp2 stripe count $count, should be 100"
167         count=$($LFS getstripe -c -I3 $DIR/$tdir/$tfile)
168         [ $count -eq $LOV_MAX_STRIPE_COUNT ] ||
169                 error "comp4 stripe count $count != $LOV_MAX_STRIPE_COUNT"
170
171         small_write $comp_file $rw_len || error "Verify RW failed"
172
173         rm -f $comp_file || error "Delete $comp_file failed"
174 }
175 run_test 1c "Test overstriping w/max stripe count"
176
177 test_2() {
178         local comp_file=$DIR/$tdir/$tfile
179         local rw_len=$((5 * 1024 * 1024))       # 5M
180
181         test_mkdir $DIR/$tdir
182         rm -f $comp_file
183
184         $LFS setstripe -E 1m -S 1m $comp_file ||
185                 error "Create $comp_file failed"
186
187         check_component_count $comp_file 1
188
189         dd if=/dev/zero of=$comp_file bs=1M count=1 > /dev/null 2>&1 ||
190                 error "Write first component failed"
191         dd if=$comp_file of=/dev/null bs=1M count=1 > /dev/null 2>&1 ||
192                 error "Read first component failed"
193
194         dd if=/dev/zero of=$comp_file bs=1M count=2 > /dev/null 2>&1 &&
195                 error "Write beyond component should fail"
196         dd if=$comp_file of=/dev/null bs=1M count=2 > /dev/null 2>&1 ||
197                 error "Read beyond component should short read, not fail"
198
199         $LFS setstripe --component-add -E 2M -S 1M -c 1 $comp_file ||
200                 error "Add component to $comp_file failed"
201
202         check_component_count $comp_file 2
203
204         $LFS setstripe --component-add -E -1 -c 3 $comp_file ||
205                 error "Add last component to $comp_file failed"
206
207         check_component_count $comp_file 3
208
209         small_write $comp_file $rw_len || error "Verify RW failed"
210
211         rm -f $comp_file || error "Delete $comp_file failed"
212 }
213 run_test 2 "Add component to existing file"
214
215 del_comp_and_verify() {
216         local comp_file=$1
217         local id=$2
218         local left=$3
219         local size=$4
220
221         local opt="-I "
222         if [ $id == "init" -o $id == "^init" ]; then
223                 opt="--component-flags="
224         fi
225
226         $LFS setstripe --component-del $opt$id $comp_file ||
227                 error "Delete component $id from $comp_file failed"
228
229         local comp_cnt=$($LFS getstripe --component-count $comp_file)
230         if grep -q "has no stripe info" <<< "$comp_cnt" ; then
231                 comp_cnt=0
232         fi
233         [ $comp_cnt -ne $left ] && error "$comp_cnt != $left"
234
235         $CHECKSTAT -s $size $comp_file || error "size != $size"
236 }
237
238 test_3() {
239         local comp_file=$DIR/$tdir/$tfile
240
241         test_mkdir $DIR/$tdir
242         rm -f $comp_file
243
244         $LFS setstripe -E 1M -S 1M -E 64M -c 2 -E -1 -c 3 $comp_file ||
245                 error "Create $comp_file failed"
246
247         check_component_count $comp_file 3
248
249         dd if=/dev/zero of=$comp_file bs=1M count=2
250
251         $LFS setstripe --component-del -I 2 $comp_file &&
252                 error "Component deletion makes hole"
253
254         del_comp_and_verify $comp_file 3 2 $((2 * 1024 * 1024))
255         del_comp_and_verify $comp_file 2 1 $((1 * 1024 * 1024))
256         del_comp_and_verify $comp_file 1 0 0
257
258         rm -f $comp_file || error "Delete $comp_file failed"
259
260         $LFS setstripe -E 1M -S 1M -E 16M -E -1 $comp_file ||
261                 error "Create second $comp_file failed"
262
263         del_comp_and_verify $comp_file "^init" 1 0
264         del_comp_and_verify $comp_file "init" 0 0
265         rm -f $comp_file || error "Delete second $comp_file failed"
266
267 }
268 run_test 3 "Delete component from existing file"
269
270 test_4() {
271         skip "Not supported in PFL"
272         # In PFL project, only LCME_FL_INIT is supported, and it can't
273         # be altered by application.
274 }
275 run_test 4 "Modify component flags in existing file"
276
277 test_5() {
278         local parent=$DIR/$tdir
279         local comp_file=$DIR/$tdir/$tfile
280         local subdir=$parent/subdir
281
282         rm -fr $parent
283         test_mkdir $parent
284
285         # set default layout to parent directory
286         $LFS setstripe -E 64M -c 2 -i 0 -E -1 -c 4 -i 0 $parent ||
287                 error "Set default layout to $parent failed"
288
289         # create file under parent
290         touch $comp_file || error "Create $comp_file failed"
291         check_component_count $comp_file 2
292
293         #instantiate all components, so that objs are allocted
294         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=65k
295
296         local ost_idx=$($LFS getstripe -I1 -i $comp_file)
297         [ $ost_idx -ne 0 ] &&
298                 error "component 1 ost_idx $ost_idx != 0"
299
300         ost_idx=$($LFS getstripe -I2 -i $comp_file)
301         [ $ost_idx -ne 0 ] &&
302                 error "component 2 ost_idx $ost_idx != 0"
303
304         # create subdir under parent
305         mkdir -p $subdir || error "Create subdir $subdir failed"
306
307         comp_cnt=$($LFS getstripe -d --component-count $subdir)
308         [ $comp_cnt -ne 2 ] && error "subdir $comp_cnt != 2"
309
310         # create file under subdir
311         touch $subdir/$tfile || error "Create $subdir/$tfile failed"
312
313         check_component_count $subdir/$tfile 2
314
315         # delete default layout setting from parent
316         $LFS setstripe -d $parent ||
317                 error "Delete default layout from $parent failed"
318
319         comp_cnt=$($LFS getstripe -d --component-count $parent)
320         [ $comp_cnt -ne 0 ] && error "$comp_cnt isn't 0"
321
322         rm -f $comp_file || error "Delete $comp_file failed"
323         rm -f $subdir/$tfile || error "Delete $subdir/$tfile failed"
324         rm -r $subdir || error "Delete subdir $subdir failed"
325         rmdir $parent || error "Delete dir $parent failed"
326 }
327 run_test 5 "Inherit composite layout from parent directory"
328
329 test_6() {
330         local comp_file=$DIR/$tdir/$tfile
331
332         test_mkdir $DIR/$tdir
333         rm -f $DIR/$tfile
334
335         $LFS setstripe -c 1 -S 128K $comp_file ||
336                 error "Create v1 $comp_file failed"
337
338         check_component_count $comp_file 0
339
340         dd if=/dev/urandom of=$comp_file bs=1M count=5 oflag=sync ||
341                 error "Write to v1 $comp_file failed"
342
343         local old_chksum=$(md5sum $comp_file)
344
345         # Migrate v1 to composite
346         $LFS migrate -E 1M -S 512K -c 1 -E -1 -S 1M -c 2 $comp_file ||
347                 error "Migrate(v1 -> composite) $comp_file failed"
348
349         check_component_count $comp_file 2
350
351         local chksum=$(md5sum $comp_file)
352         [ "$old_chksum" != "$chksum" ] &&
353                 error "(v1 -> compsoite) $old_chksum != $chksum"
354
355         # Migrate composite to composite
356         $LFS migrate -E 1M -S 1M -c 2 -E 4M -S 1M -c 2 \
357                 -E -1 -S 3M -c 3 $comp_file ||
358                 error "Migrate(compsoite -> composite) $comp_file failed"
359
360         check_component_count $comp_file 3
361
362         chksum=$(md5sum $comp_file)
363         [ "$old_chksum" != "$chksum" ] &&
364                 error "(composite -> compsoite) $old_chksum != $chksum"
365
366         # Migrate composite to v1
367         $LFS migrate -c 2 -S 2M $comp_file ||
368                 error "Migrate(composite -> v1) $comp_file failed"
369
370         check_component_count $comp_file 0
371
372         chksum=$(md5sum $comp_file)
373         [ "$old_chksum" != "$chksum" ] &&
374                 error "(composite -> v1) $old_chksum != $chksum"
375
376         rm -f $comp_file || "Delete $comp_file failed"
377 }
378 run_test 6 "Migrate composite file"
379
380 test_7() {
381         test_mkdir $DIR/$tdir
382         chmod 0777 $DIR/$tdir || error "chmod $tdir failed"
383
384         local comp_file=$DIR/$tdir/$tfile
385         $RUNAS $LFS setstripe -E 1M -S 1M -c 1 $comp_file ||
386                 error "Create composite file $comp_file failed"
387
388         $RUNAS $LFS setstripe --component-add -E 64M -c 4 $comp_file ||
389                 error "Add component to $comp_file failed"
390
391         $RUNAS $LFS setstripe --component-del -I 2 $comp_file ||
392                 error "Delete component from $comp_file failed"
393
394         $RUNAS $LFS setstripe --component-add -E -1 -c 5 $comp_file ||
395                 error "Add last component to $comp_file failed"
396
397         rm $comp_file || "Delete composite failed"
398 }
399 run_test 7 "Add/Delete/Create composite file by non-privileged user"
400
401 test_8() {
402         local parent=$DIR/$tdir
403
404         rm -fr $parent
405         test_mkdir $parent
406
407         $LFS setstripe -E 2M -c 1 -S 1M -E 16M -c 2 -S 2M \
408                 -E -1 -c 4 -S 4M $parent ||
409                 error "Set default layout to $parent failed"
410
411         sh rundbench -C -D $parent 2 || error "dbench failed"
412
413         rm -fr $parent || error "Delete dir $parent failed"
414 }
415 run_test 8 "Run dbench over composite files"
416
417 test_9() {
418         local comp_file=$DIR/$tdir/$tfile
419
420         test_mkdir $DIR/$tdir
421         rm -f $comp_file
422
423         $LFS setstripe -E 1M -S 1M -E -1 -c 1 $comp_file ||
424                 error "Create $comp_file failed"
425
426         check_component_count $comp_file 2
427
428         replay_barrier $SINGLEMDS
429
430         # instantiate the 2nd component
431         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
432
433         local f1=$($LFS getstripe -I2 $comp_file |
434                         awk '/l_fid:/ {print $7}')
435         echo "before MDS recovery, the ost fid of 2nd component is $f1"
436         fail $SINGLEMDS
437
438         local f2=$($LFS getstripe -I2 $comp_file |
439                         awk '/l_fid:/ {print $7}')
440         echo "after MDS recovery, the ost fid of 2nd component is $f2"
441         [ "x$f1" == "x$f2" ] || error "$f1 != $f2"
442 }
443 run_test 9 "Replay layout extend object instantiation"
444
445 component_dump() {
446         echo $($LFS getstripe $1 |
447                 awk '$1 == "lcm_entry_count:" { printf("%d", $2) }
448                      $1 == "lcme_extent.e_start:" { printf("[%#lx", $2) }
449                      $1 == "lcme_extent.e_end:" { printf(",%s]", $2) }')
450 }
451
452 test_10() {
453         local parent=$DIR/$tdir
454         local root=$MOUNT
455
456         save_layout_restore_at_exit $MOUNT
457
458         rm -rf $parent
459
460         # mount root on $MOUNT2 if FILESET is set
461         if [ -n "$FILESET" ]; then
462                 FILESET="" mount_client $MOUNT2 ||
463                         error "mount $MOUNT2 fail"
464                 root=$MOUNT2
465         fi
466
467         $LFS setstripe -d $root || error "clear root layout"
468
469         # set root composite layout
470         $LFS setstripe -E 2M -c 1 -S 1M -E 16M -c2 -S 2M \
471                 -E -1 -c 4 -S 4M $root ||
472                 error "Set root layout failed"
473
474         if [ "$root" == "$MOUNT2" ]; then
475                 umount_client $MOUNT2 ||
476                         error "umount $MOUNT2 fail"
477         fi
478
479         test_mkdir $parent
480         # set a different layout for parent
481         $LFS setstripe -E -1 -c 1 -S 1M $parent ||
482                 error "set $parent layout failed"
483         touch $parent/file1
484
485         local f1_entry=$(component_dump $parent/file1)
486
487         # delete parent's layout
488         $LFS setstripe -d $parent || error "Clear $parent layout failed"
489         touch $parent/file2
490
491         local f2_entry=$(component_dump $parent/file2)
492
493         # verify layout inheritance
494         local eof="EOF"
495         local f1_expect="1[0,EOF]"
496         local f2_expect="3[0,2097152][0x200000,16777216][0x1000000,EOF]"
497
498         echo "f1 expect=$f1_expect"
499         echo "f1 get   =$f1_entry"
500         echo "f2 expect=$f2_expect"
501         echo "f2 get   =$f2_entry"
502
503         [  x$f1_expect != x$f1_entry ] &&
504                 error "$parent/file1 does not inherite parent layout"
505         [  x$f2_expect != x$f2_entry ] &&
506                 error "$parent/file2 does not inherite root layout"
507
508         return 0
509 }
510 run_test 10 "Inherit composite template from root"
511
512 test_11() {
513         local comp_file=$DIR/$tdir/$tfile
514         test_mkdir $DIR/$tdir
515         rm -f $comp_file
516
517         # only 1st component instantiated
518         $LFS setstripe -E 1M -S 1M -E 2M -E 3M -E -1 $comp_file ||
519                 error "Create $comp_file failed"
520
521         local f1=$($LFS getstripe -I1 $comp_file | grep "l_fid")
522         [[ -z $f1 ]] && error "1: 1st component uninstantiated"
523         local f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
524         [[ -n $f2 ]] && error "1: 2nd component instantiated"
525         local f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
526         [[ -n $f3 ]] && error "1: 3rd component instantiated"
527         local f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
528         [[ -n $f4 ]] && error "1: 4th component instantiated"
529
530         # the first 2 components instantiated
531         $TRUNCATE $comp_file $((1024*1024*1+1))
532
533         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
534         [[ -z $f2 ]] && error "2: 2nd component uninstantiated"
535         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
536         [[ -n $f3 ]] && error "2: 3rd component instantiated"
537         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
538         [[ -n $f4 ]] && error "2: 4th component instantiated"
539
540         # the first 3 components instantiated
541         $TRUNCATE $comp_file $((1024*1024*3))
542         $TRUNCATE $comp_file $((1024*1024*1+1))
543
544         f2=$($LFS getstripe -I2 $comp_file | grep "l_fid")
545         [[ -z $f2 ]] && error "3: 2nd component uninstantiated"
546         f3=$($LFS getstripe -I3 $comp_file | grep "l_fid")
547         [[ -z $f3 ]] && error "3: 3rd component uninstantiated"
548         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
549         [[ -n $f4 ]] && error "3: 4th component instantiated"
550
551         # all 4 components instantiated, using append write
552         dd if=/dev/zero of=$comp_file bs=1k count=1 seek=2k
553         ls -l $comp_file
554         rwv -f $comp_file -w -a -n 2 $((1024*1023)) 1
555         ls -l $comp_file
556
557         f4=$($LFS getstripe -I4 $comp_file | grep "l_fid")
558         [[ -z $f4 ]] && error "4: 4th component uninstantiated"
559
560         return 0
561 }
562 run_test 11 "Verify component instantiation with write/truncate"
563
564 test_12() {
565         [ $OSTCOUNT -lt 3 ] && skip "needs >= 3 OSTs"
566
567         local file=$DIR/$tdir/$tfile
568         test_mkdir $DIR/$tdir
569         rm -f $file
570
571         # specify ost list for component
572         $LFS setstripe -E 1M -S 1M -c 2 -o 0,1 -E 2M -c 2 -o 1,2 \
573                 -E 3M -c 2 -o 2,1 -E 4M -c 1 -i 2 -E -1 $file ||
574                 error "Create $file failed"
575
576         # clear lod component cache
577         stop $SINGLEMDS || error "stop MDS"
578         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
579         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "start MDS"
580
581         # instantiate all components
582         $TRUNCATE $file $((1024*1024*4+1))
583
584         #verify object alloc order
585         local o1=$($LFS getstripe -I1 $file |
586                         awk '/l_ost_idx:/ {printf("%d",$5)}')
587         [[ $o1 != "01" ]] && error "$o1 is not 01"
588
589         local o2=$($LFS getstripe -I2 $file |
590                         awk '/l_ost_idx:/ {printf("%d",$5)}')
591         [[ $o2 != "12" ]] && error "$o2 is not 12"
592
593         local o3=$($LFS getstripe -I3 $file |
594                         awk '/l_ost_idx:/ {printf("%d",$5)}')
595         [[ $o3 != "21" ]] && error "$o3 is not 21"
596
597         local o4=$($LFS getstripe -I4 $file |
598                         awk '/l_ost_idx:/ {printf("%d",$5)}')
599         [[ $o4 != "2" ]] && error "$o4 is not 2"
600
601         return 0
602 }
603 run_test 12 "Verify ost list specification"
604
605 test_13() { # LU-9311
606         [ $OSTCOUNT -lt 8 ] && skip "needs >= 8 OSTs"
607
608         local file=$DIR/$tfile
609         local dd_count=4
610         local dd_size=$(($dd_count * 1024 * 1024))
611         local real_size
612
613         rm -f $file
614         $LFS setstripe -E 1M -S 1M -c 1 -E 2M -c 2 -E -1 -c -1 -i 1 $file ||
615                 error "Create $file failed"
616         dd if=/dev/zero of=$file bs=1M count=$dd_count
617         real_size=$(stat -c %s $file)
618         [ $real_size -eq $dd_size ] ||
619                 error "dd actually wrote $real_size != $dd_size bytes"
620
621         rm -f $file
622 }
623 run_test 13 "shouldn't reprocess granted resent request"
624
625 test_14() {
626         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
627         local file=$DIR/$tdir/$tfile
628         test_mkdir -p $DIR/$tdir
629         rm -f $file
630
631         $LFS setstripe -E1m -c1 -S1m --pool="pool1" -E2m \
632                         -E4m -c2 -S2m --pool="pool2" -E-1 $file ||
633                 error "Create $file failed"
634
635         # check --pool inheritance
636         local pool
637         pool="$($LFS getstripe -I2 --pool $file)"
638         [ x"$pool" != "xpool1" ] && $LFS getstripe -I2 $file &&
639                 error "$file: component 2 doesn't have poolname pool1"
640         pool="$($LFS getstripe -I4 --pool $file)"
641         [ x"$pool" != "xpool2" ] && $LFS getstripe -I4 $file &&
642                 error "$file: component 4 doesn't have poolname pool2"
643
644         #check --stripe-count inheritance
645         local count
646         count="$($LFS getstripe -I2 -c $file)"
647         [ $count -ne 1 ] && $LFS getstripe -I2 $file &&
648                 error "$file: component 2 doesn't have 1 stripe_count"
649         count="$($LFS getstripe -I4 -c $file)"
650         [ $count -ne 2 ] && $LFS getstripe -I4 $file &&
651                 error "$file: component 4 doesn't have 2 stripe_count"
652
653         #check --stripe-size inheritance
654         local size
655         size="$($LFS getstripe -I2 -S $file)"
656         [ $size -ne $((1024*1024)) ] && $LFS getstripe -I2 $file &&
657                 error "$file: component 2 doesn't have 1M stripe_size"
658         size="$($LFS getstripe -I4 -S $file)"
659         [ $size -ne $((1024*1024*2)) ] && $LFS getstripe -I4 $file &&
660                 error "$file: component 4 doesn't have 2M stripe_size"
661
662         return 0
663 }
664 run_test 14 "Verify setstripe poolname/stripe_count/stripe_size inheritance"
665
666 test_15() {
667         local parent=$DIR/$tdir
668
669         rm -fr $parent
670         test_mkdir $parent
671
672         $LFS setstripe -d $parent || error "delete default layout"
673
674         $LFS setstripe -E 1M -S 1M -E 10M -E eof $parent/f1 || error "create f1"
675         $LFS setstripe -E 4M -E 20M -E eof $parent/f2 || error "create f2"
676         test_mkdir $parent/subdir
677         $LFS setstripe -E 6M -S 1M -E 30M -E eof $parent/subdir ||
678                 error "setstripe to subdir"
679         $LFS setstripe -E 8M -E eof $parent/subdir/f3 || error "create f3"
680         $LFS setstripe -c 1 $parent/subdir/f4 || error "create f4"
681
682         # none
683         local found=$($LFS find --component-start +2M -E -15M $parent | wc -l)
684         [ $found -eq 0 ] || error "start+2M, end-15M, $found != 0"
685
686         # f2, f3
687         found=$($LFS find --component-start +2M -E -35M $parent | wc -l)
688         [ $found -eq 2 ] || error "start+2M, end-35M, $found != 2"
689
690         # subdir
691         found=$($LFS find --component-start +4M -E -eof $parent | wc -l)
692         [ $found -eq 1 ] || error "start+4M, end-eof, $found != 1"
693
694         local flg_opts="--component-flags init"
695         # none
696         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
697         [ $found -eq 0 ] ||
698                 error "before write: start=1M, end=10M, flag=init, $found != 0"
699
700         dd if=/dev/zero of=$parent/f1 bs=1M count=2 ||
701                 error "dd $parent/f1 failed"
702
703         # f1
704         found=$($LFS find --component-start 1M -E 10M $flg_opts $parent | wc -l)
705         [ $found -eq 1 ] ||
706                 error "after write: start=1M, end=10M, flag=init, $found != 1"
707
708         local ext_opts="--component-start -1M -E +5M"
709         # parent, subdir, f3, f4
710         found=$($LFS find $ext_opts $parent | wc -l)
711         [ $found -eq 4 ] || error "start-1M, end+5M, $found != 4"
712
713         local cnt_opts="--component-count +2"
714         # subdir
715         found=$($LFS find $ext_opts $cnt_opts $parent | wc -l)
716         [ $found -eq 1 ] || error "start-1M, end+5M, count+2, $found != 1"
717
718         # none
719         found=$($LFS find $ext_opts $cnt_opts $flg_opts $parent | wc -l)
720         [ $found -eq 0 ] ||
721                 error "start-1M, end+5M, count+2, flag=init, $found != 0"
722
723         # f3, f4
724         found=$($LFS find $ext_opts ! $cnt_opts $flg_opts $parent | wc -l)
725         [ $found -eq 2 ] ||
726                 error "start-1M, end+5M, !count+2, flag=init, $found != 2"
727 }
728 run_test 15 "Verify component options for lfs find"
729
730 test_16a() {
731         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
732         large_xattr_enabled || skip_env "ea_inode feature disabled"
733
734         local file=$DIR/$tdir/$tfile
735         local dir=$DIR/$tdir/dir
736         local temp=$DIR/$tdir/template
737         rm -rf $DIR/$tdir
738         test_mkdir $DIR/$tdir
739
740         #####################################################################
741         #                           1. PFL file
742         # set stripe for source file
743         $LFS setstripe -E1m -S 1M -c2 -o0,1 -E2m -c2 -E3m -o1,0 -E4m -c1 -E-1 \
744                 $file || error "Create $file failed"
745
746         echo "1. PFL file"
747         verify_yaml_layout $file $file.copy $temp "1. PFL file"
748
749         #####################################################################
750         #                           2. plain file
751         # set stripe for source file
752         rm -f $file
753         $LFS setstripe -c2 -o0,1 -i1 $file || error "Create $file failed"
754
755         rm -f $file.copy
756         echo "2. plain file"
757         verify_yaml_layout $file $file.copy $temp "2. plain file"
758
759         #####################################################################
760         #                           3. PFL dir
761         # set stripe for source dir
762         test_mkdir $dir
763         $LFS setstripe -E1m -S 1M -c2 -E2m -c1 -E-1 $dir ||
764                 error "setstripe $dir failed"
765
766         test_mkdir $dir.copy
767         echo "3. PFL dir"
768         verify_yaml_layout $dir $dir.copy $temp.dir "3. PFL dir"
769
770         #####################################################################
771         #                           4. plain dir
772         # set stripe for source dir
773         $LFS setstripe -c2 -i-1 $dir || error "setstripe $dir failed"
774
775         echo "4. plain dir"
776         verify_yaml_layout $dir $dir.copy $temp.dir "4. plain dir"
777 }
778 run_test 16a "Verify setstripe/getstripe with YAML config file"
779
780 test_16b() {
781         [[ $($LCTL get_param mdc.*.import |
782                 grep "connect_flags:.*overstriping") ]] ||
783                 skip "server does not support overstriping"
784         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
785         [[ $OSTCOUNT -ge $(($LOV_MAX_STRIPE_COUNT / 2)) ]] &&
786                 skip_env "too many osts, skipping"
787         large_xattr_enabled || skip_env "ea_inode feature disabled"
788
789         local file=$DIR/$tdir/$tfile
790         local dir=$DIR/$tdir/dir
791         local temp=$DIR/$tdir/template
792         # We know OSTCOUNT < (LOV_MAX_STRIPE_COUNT / 2), so this is overstriping
793         local large_count=$((LOV_MAX_STRIPE_COUNT / 2 + 10))
794
795         rm -rf $DIR/$tdir
796         test_mkdir $DIR/$tdir
797
798         #####################################################################
799         #                           1. PFL file, overstriping in first comps
800         # set stripe for source file
801         $LFS setstripe -E1m -S 1M -o0,0 -E2m -o1,1 -E3m -C $large_count -E-1 \
802                 $file || error "Create $file failed"
803
804         echo "1. PFL file"
805         verify_yaml_layout $file $file.copy $temp "1. PFL file"
806
807         #####################################################################
808         #                           2. plain file + overstriping
809         # set stripe for source file
810         rm -f $file
811         $LFS setstripe -C $large_count -i1 $file || error "Create $file failed"
812
813         rm -f $file.copy
814         echo "2. plain file"
815         verify_yaml_layout $file $file.copy $temp "2. plain file"
816
817         #####################################################################
818         #                           3. PFL dir + overstriping
819         # set stripe for source dir
820         test_mkdir $dir
821         $LFS setstripe -E1m -S 1M -o 0,0 -E2m -C $large_count -E-1 $dir ||
822                 error "setstripe $dir failed"
823
824         test_mkdir $dir.copy
825         echo "3. PFL dir"
826         verify_yaml_layout $dir $dir.copy $temp.dir "3. PFL dir"
827
828         #####################################################################
829         #                           4. plain dir + overstriping
830         # set stripe for source dir
831         $LFS setstripe -C $large_count $dir || error "setstripe $dir failed"
832
833         echo "4. plain dir"
834         verify_yaml_layout $dir $dir.copy $temp.dir "4. plain dir"
835 }
836 run_test 16b "Verify setstripe/getstripe with YAML config file + overstriping"
837
838 test_17() {
839         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs"
840         local file=$DIR/$tdir/$tfile
841         test_mkdir -p $DIR/$tdir
842         rm -f $file
843
844         $LFS setstripe -E 1M -S 1M -E 2M -c 2 -E -1 -c -1 $file ||
845                 error "Create $file failed"
846
847         local s1=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
848         local s2=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
849         local s3=$($LFS getstripe -I3 -v $file | awk '/lcme_size:/{print $2}')
850         echo "1st init: comp size 1:$s1 2:$s2 3:$s3"
851
852         # init 2nd component
853         $TRUNCATE $file $((1024*1024+1))
854         local s1n=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
855         local s2n=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
856         echo "2nd init: comp size 1:$s1n 2:$s2n 3:$s3"
857
858         [ $s1 -eq $s1n ] || error "1st comp size $s1 should == $s1n"
859         [ $s2 -lt $s2n ] || error "2nd comp size $s2 should < $s2n"
860
861         # init 3rd component
862         $TRUNCATE $file $((1024*1024*2+1))
863         s1n=$($LFS getstripe -I1 -v $file | awk '/lcme_size:/{print $2}')
864         s2n=$($LFS getstripe -I2 -v $file | awk '/lcme_size:/{print $2}')
865         local s3n=$($LFS getstripe -I3 -v $file | awk '/lcme_size:/{print $2}')
866         echo "3rd init: comp size 1:$s1n 2:$s2n 3:$s3n"
867
868         [ $s1 -eq $s1n ] || error "1st comp size $s1 should == $s1n"
869         [ $s2 -lt $s2n ] || error "2nd comp size $s2 should < $s2n"
870         [ $s3 -lt $s3n ] || error "3rd comp size $s3 should < $s3n"
871 }
872 run_test 17 "Verify LOVEA grows with more component inited"
873
874 check_distribution() {
875         local file=$1
876         local objs
877         local ave
878         local obj_min_one=$((OSTCOUNT - 1))
879
880         objs=$($LFS getstripe $file |
881                 awk '/l_ost_idx:/ { print $5 }' | wc -l)
882         let ave=$((objs / OSTCOUNT))
883
884         # collect objects per OST distribution
885         $LFS getstripe $file | awk '/l_ost_idx:/ { print $5 }' | tr -d "," |
886                 (inuse=( $(for i in $(seq 0 $obj_min_one); do echo 0; done) )
887                 while read O; do
888                         let inuse[$O]=$((1 + ${inuse[$O]}))
889                 done;
890
891                 # verify object distribution varies no more than +-1
892                 for idx in $(seq 0 $obj_min_one); do
893                         let dif=$((${inuse[$idx]} - ave))
894                         let dif=${dif#-}
895                         if [ "$dif" -gt 1 ]; then
896                                 echo "OST${idx}: ${inuse[$idx]} objects"
897                                 error "bad distribution on OST${idx}"
898                         fi
899                 done)
900 }
901
902 test_18() {
903         local file1=$DIR/${tfile}-1
904         local file2=$DIR/${tfile}-2
905         local file3=$DIR/${tfile}-3
906
907         rm -f $file1 $file2 $file3
908
909         $LFS setstripe -E 1m -S 1m $file1 ||
910                 error "Create $file1 failed"
911         $LFS setstripe -E 1m -S 1m $file2 ||
912                 error "Create $file2 failed"
913         $LFS setstripe -E 1m -S 1m $file3 ||
914                 error "Create $file3 failed"
915
916         local objs=$((OSTCOUNT+1))
917         for comp in $(seq 1 $OSTCOUNT); do
918                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file1 ||
919                         error "Add component to $file1 failed 2"
920                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file2 ||
921                         error "Add component to $file2 failed 2"
922                 $LFS setstripe --component-add -E $((comp+1))M -c 1 $file3 ||
923                         error "Add component to $file3 failed 2"
924         done
925
926         $LFS setstripe --component-add -E -1 -c -1 $file1 ||
927                 error "Add component to $file1 failed 3"
928         $LFS setstripe --component-add -E -1 -c -1 $file2 ||
929                 error "Add component to $file2 failed 3"
930         $LFS setstripe --component-add -E -1 -c -1 $file3 ||
931                 error "Add component to $file3 failed 3"
932
933         # Instantiate all components
934         dd if=/dev/urandom of=$file1 bs=1M count=$((objs+1)) ||
935                 error "dd failed for $file1"
936         dd if=/dev/urandom of=$file2 bs=1M count=$((objs+1)) ||
937                 error "dd failed for $file2"
938         dd if=/dev/urandom of=$file3 bs=1M count=$((objs+1)) ||
939                 error "dd failed for $file3"
940
941         check_distribution $file1
942         check_distribution $file2
943         check_distribution $file3
944
945 }
946 run_test 18 "check component distribution"
947
948 test19_io_base() {
949         local comp_file=$1
950         local already_created=${2:-0}
951         local rw_len=$((3 * 1024 * 1024))       # 3M
952         local flg_opts=""
953         local found=""
954
955         if [ $already_created != 1 ]; then
956                 test_mkdir -p $DIR/$tdir
957                 $LFS setstripe --extension-size 64M -c 1 -E -1 $comp_file ||
958                         error "Create $comp_file failed"
959         fi
960
961         # write past end of first component, so it is extended
962         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=127 conv=notrunc ||
963                 error "dd to extend failed"
964
965         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
966         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
967
968         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
969         [ $ost_idx2 -ne "-1" ] && error "second component init $ost_idx2"
970
971         flg_opts="--comp-flags init"
972         found=$($LFS find --comp-start 0 -E 128M $flg_opts $comp_file | wc -l)
973         [ $found -eq 1 ] || error "Write: Extended first component not found"
974
975         flg_opts="--comp-flags extension"
976         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
977         [ $found -eq 1 ] || error "Write: Second component not found"
978
979         small_write $comp_file $rw_len || error "Verify RW failed"
980
981         sel_layout_sanity $comp_file 2
982 }
983
984 # Self-extending PFL tests
985 test_19a() {
986         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
987         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
988                 skip "skipped for lustre < $SEL_VER"
989
990         test19_io_base $DIR/$tdir/$tfile
991 }
992 run_test 19a "Simple test of extension behavior"
993
994 # Same as 19a, but with default layout set on directory rather than on file
995 test_19b() {
996         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
997         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
998                 skip "skipped for lustre < $SEL_VER"
999
1000         local comp_file=$DIR/$tdir/$tfile
1001         local flg_opts=""
1002         local found=""
1003
1004         test_mkdir -p $DIR/$tdir
1005         $LFS setstripe --ext-size 64M -c 1 -E -1 $DIR/$tdir ||
1006                 error "Setstripe on $DIR/$tdir failed"
1007
1008         touch $comp_file
1009
1010         flg_opts="--comp-flags init"
1011         found=$($LFS find --comp-start 0 -E 64M $flg_opts $comp_file | wc -l)
1012         [ $found -eq 1 ] || error "Inheritance: wrong first component size"
1013
1014         flg_opts="--comp-flags extension"
1015         found=$($LFS find --comp-start 64M -E EOF $flg_opts $comp_file | wc -l)
1016         [ $found -eq 1 ] || error "Inheritance: Second component not found"
1017
1018         test19_io_base $comp_file 1
1019 }
1020 run_test 19b "Simple test of SEL as default layout"
1021
1022 # Test behavior when seeking deep in a file
1023 test_19c() {
1024         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1025         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1026                 skip "skipped for lustre < $SEL_VER"
1027
1028         local comp_file=$DIR/$tdir/$tfile
1029         local flg_opts=""
1030         local found=""
1031
1032         test_mkdir -p $DIR/$tdir
1033
1034         $LFS setstripe -z 128M -E 1G -E -1 $comp_file ||
1035                 error "Create $comp_file failed"
1036
1037         # write past end of first component, so it is extended
1038         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=130 conv=notrunc ||
1039                 error "dd to extend failed"
1040
1041         flg_opts="--comp-flags init"
1042         found=$($LFS find --comp-start 0M -E 256M $flg_opts $comp_file | wc -l)
1043         [ $found -eq 1 ] || error "Write: first extension component not found"
1044
1045         flg_opts="--comp-flags extension,^init"
1046         found=$($LFS find --comp-start 256M -E 1024M $flg_opts $comp_file |\
1047                 wc -l)
1048         [ $found -eq 1 ] || error "Write: second extension component not found"
1049
1050         local end_1=$($LFS getstripe -I1 -E $comp_file)
1051
1052         # 256 MiB
1053         [ $end_1 -eq 268435456 ] ||
1054                 error "end of first component $end_1 != 268435456"
1055
1056         # Write past end of extension space component, in to normal component
1057         # should exhaust & remove extension component
1058         dd if=/dev/zero bs=1M count=1 seek=1100 of=$comp_file conv=notrunc ||
1059                 error "dd distant seek failed"
1060
1061         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1062         # the last component index is 3
1063         local ost_idx2=$($LFS getstripe -I3 -i $comp_file)
1064
1065         [ $ost_idx1 -eq $ost_idx2 ] && error "$ost_idx1 == $ost_idx2"
1066
1067         local start1=$($LFS getstripe -I1 --comp-start $comp_file)
1068         local end1=$($LFS getstripe -I1 -E $comp_file)
1069         local start2=$($LFS getstripe -I3 --comp-start $comp_file)
1070         local end2=$($LFS getstripe -I3 -E $comp_file)
1071
1072         [ $start1 -eq 0 ] || error "start of first component incorrect"
1073         [ $end1 -eq 1073741824 ] || error "end of first component incorrect"
1074         [ $start2 -eq 1073741824  ] ||
1075                 error "start of second component incorrect"
1076         [ "$end2" = "EOF" ] || error "end of second component incorrect"
1077
1078         flg_opts="--comp-flags extension"
1079         found=$($LFS find $flg_opts $comp_file | wc -l)
1080         [ $found -eq 0 ] || error "Seek Write: extension component exists"
1081
1082         sel_layout_sanity $comp_file 2
1083 }
1084 run_test 19c "Test self-extending layout seeking behavior"
1085
1086 test_19d() {
1087         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1088         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1089                 skip "skipped for lustre < $SEL_VER"
1090
1091         local comp_file=$DIR/$tdir/$tfile
1092         local flg_opts=""
1093         local found=""
1094
1095         test_mkdir -p $DIR/$tdir
1096
1097         $LFS setstripe -E 128M -c 1 -z 64M -E -1 $comp_file ||
1098                 error "Create $comp_file failed"
1099
1100         # This will cause component 1 to be extended to 128M, then the
1101         # extension space component will be removed
1102         dd if=/dev/zero of=$comp_file bs=130M count=1 ||
1103                 error "dd to extend failed"
1104
1105         flg_opts="--comp-flags init"
1106         found=$($LFS find --comp-start 0M -E 128M $flg_opts $comp_file | wc -l)
1107         [ $found -eq 1 ] || error "Write: first component not found"
1108
1109         flg_opts="--comp-flags init"
1110         found=$($LFS find --comp-start 128M -E EOF $flg_opts $comp_file | wc -l)
1111         [ $found -eq 1 ] || error "Write: second component not found"
1112
1113         sel_layout_sanity $comp_file 2
1114
1115         # always remove large files in case of DO_CLEANUP=false
1116         rm -f $comp_file || error "Delete $comp_file failed"
1117 }
1118 run_test 19d "Test write which completely spans extension space component"
1119
1120 test_19e_check() {
1121         comp_file=$1
1122
1123         local comp2_flags=$($LFS getstripe -I2 --comp-flags $comp_file)
1124         local comp3_flags=$($LFS getstripe -I3 --comp-flags $comp_file)
1125
1126         [ "$comp2_flags" != "init" ] && error "$comp2_flags != init"
1127         [ "$comp3_flags" != "extension" ] && error "$comp3_flags != extension"
1128
1129         local flg_opts=" --comp-start 2M -E 66M --comp-flags init"
1130         local found=$($LFS find $flg_opts $comp_file | wc -l)
1131         [ $found -eq 1 ] || error "Write: extended second component not found"
1132
1133         flg_opts="--comp-start 66M -E EOF --comp-flags extension"
1134         found=$($LFS find $flg_opts $comp_file | wc -l)
1135         [ $found -eq 1 ] || error "Write: third component not found"
1136
1137         sel_layout_sanity $comp_file 3
1138 }
1139
1140 test_19e() {
1141         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1142         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1143                 skip "skipped for lustre < $SEL_VER"
1144
1145         local comp_file=$DIR/$tdir/$tfile
1146         local rw_len=$((3 * 1024 * 1024))       # 3M
1147         local flg_opts=""
1148         local found=""
1149
1150         test_mkdir -p $DIR/$tdir
1151
1152         $LFS setstripe -E 2m -E -1 -z 64M $comp_file ||
1153                 error "Create $comp_file failed"
1154
1155         replay_barrier $SINGLEMDS
1156
1157         #instantiate & extend second component
1158         dd if=/dev/zero of=$comp_file bs=4M count=1 ||
1159                 error "dd to extend failed"
1160
1161         local ost_idx2=$($LFS getstripe -I2 -i $comp_file)
1162         local ost_idx3=$($LFS getstripe -I3 -i $comp_file)
1163
1164         [ $ost_idx2 -eq $ost_idx3 ] && error "$ost_idx2 == $ost_idx3"
1165         [ $ost_idx3 -ne "-1" ] && error "third component init $ost_idx3"
1166
1167         test_19e_check $comp_file
1168
1169         local f1=$($LFS getstripe -I2 $comp_file | awk '/l_fid:/ {print $7}')
1170         echo "before MDS recovery, the ost fid of 2nd component is $f1"
1171
1172         fail $SINGLEMDS
1173
1174         local f2=$($LFS getstripe -I2 $comp_file | awk '/l_fid:/ {print $7}')
1175         echo "after MDS recovery, the ost fid of 2nd component is $f2"
1176         [ "x$f1" == "x$f2" ] || error "$f1 != $f2"
1177
1178         # simply repeat all previous checks, but also verify components are on
1179         # the same OST as before
1180
1181         local ost_idx2_2=$($LFS getstripe -I2 -i $comp_file)
1182         local ost_idx3_2=$($LFS getstripe -I3 -i $comp_file)
1183
1184         [ $ost_idx2_2 -eq $ost_idx3_2 ] && error "$ost_idx2_2 == $ost_idx3_2"
1185         [ $ost_idx3_2 -ne "-1" ] && error "second component init $ost_idx3_2"
1186
1187         # verify OST id is the same after failover
1188         [ $ost_idx2 -ne $ost_idx2_2 ] &&
1189                 error "$ost_idx2 != $ost_idx2_2, changed after failover"
1190
1191         test_19e_check $comp_file
1192 }
1193 run_test 19e "Replay of layout instantiation & extension"
1194
1195 test_19f() {
1196         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1197         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1198                 skip "skipped for lustre < $SEL_VER"
1199
1200         local comp_file=$DIR/$tdir/$tfile
1201         local flg_opts=""
1202         local found=""
1203
1204         test_mkdir -p $DIR/$tdir
1205
1206         $LFS setstripe -E 256M --comp-flags extension -E -1 $comp_file
1207
1208         [ $? != 0 ] || error "should not be able to manually set extension flag"
1209
1210 }
1211 run_test 19f "Rejection of invalid layouts"
1212
1213 # Test out of space behavior
1214 test_20a() {
1215         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1216         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1217                 skip "skipped for lustre < $SEL_VER"
1218
1219         local comp_file=$DIR/$tdir/$tfile
1220         local flg_opts=""
1221         local found=""
1222
1223         test_mkdir -p $DIR/$tdir
1224
1225         # without this, a previous delete can finish after we check free space
1226         wait_delete_completed
1227         wait_mds_ost_sync
1228
1229         # First component is on OST0
1230         $LFS setstripe -E 256M -i 0 -z 64M -E -1 -z 1G $comp_file ||
1231                 error "Create $comp_file failed"
1232
1233         # write past end of first component, so it is extended
1234         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=66 ||
1235                 error "dd to extend failed"
1236
1237         flg_opts="--comp-flags extension"
1238         found=$($LFS find --comp-start 128M -E 256M $flg_opts $comp_file |wc -l)
1239         [ $found -eq 1 ] || error "Write: Second component not found"
1240
1241         local ost_idx1=$($LFS getstripe -I1 -i $comp_file)
1242         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1243                     grep "watermarks")
1244         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1245
1246         flg_opts="--comp-flags extension"
1247         # Write past current init comp, but we won't extend (because no space)
1248         dd if=/dev/zero of=$comp_file bs=1M count=10 seek=200 ||
1249                 error "dd write past current comp failed"
1250
1251         $LFS getstripe $comp_file
1252
1253         flg_opts="--comp-flags init"
1254         found=$($LFS find --comp-start 128M -E 1152M $flg_opts $comp_file | \
1255                 wc -l)
1256         [ $found -eq 1 ] || error "Write: third component not found"
1257
1258         flg_opts="--comp-flags extension"
1259         found=$($LFS find --comp-start 1152M -E EOF $flg_opts $comp_file |wc -l)
1260         [ $found -eq 1 ] || error "Write: fourth extension component not found"
1261
1262         sel_layout_sanity $comp_file 3
1263 }
1264 run_test 20a "Test out of space, spillover to defined component"
1265
1266 test_20b() {
1267         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1268         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1269                 skip "skipped for lustre < $SEL_VER"
1270
1271         local comp_file=$DIR/$tdir/$tfile
1272         local flg_opts=""
1273         local found=""
1274
1275         test_mkdir -p $DIR/$tdir
1276
1277         # Pool allows us to force use of only certain OSTs
1278         pool_add $TESTNAME || error "Pool creation failed"
1279         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1280
1281         # normal component to 10M, extendable component to 1G
1282         # further extendable to EOF
1283         $LFS setstripe -E 10M -E 1G -p $TESTNAME -z 64M -E -1 -p "" -z 512M \
1284                 $comp_file || error "Create $comp_file failed"
1285
1286         replay_barrier $SINGLEMDS
1287
1288         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1289         [ $found -eq 1 ] || error "Zero length component not found"
1290
1291         local ost_idx1=0
1292         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1293                     grep "watermarks")
1294         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1295
1296         # write past end of first component
1297         # This should remove the next component, since OST0 is out of space
1298         # and it is striped there (pool contains only OST0)
1299         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=14 ||
1300                 error "dd to extend/remove failed"
1301
1302         $LFS getstripe $comp_file
1303
1304         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1305         [ $found -eq 0 ] || error "Write: zero length component still present"
1306
1307         flg_opts="--comp-flags init"
1308         found=$($LFS find --comp-start 10M -E 522M $flg_opts $comp_file | wc -l)
1309         [ $found -eq 1 ] || error "Write: second component not found"
1310
1311         flg_opts="--comp-flags extension"
1312         found=$($LFS find --comp-start 522M -E EOF $flg_opts $comp_file | wc -l)
1313         [ $found -eq 1 ] || error "Write: third component not found"
1314
1315         fail $SINGLEMDS
1316
1317         found=$($LFS find --comp-start 10M -E 10M $flg_opts $comp_file | wc -l)
1318         [ $found -eq 0 ] || error "Failover: 0-length component still present"
1319
1320         flg_opts="--comp-flags init"
1321         found=$($LFS find --comp-start 10M -E 522M $flg_opts $comp_file | wc -l)
1322         [ $found -eq 1 ] || error "Failover: second component not found"
1323
1324         flg_opts="--comp-flags extension"
1325         found=$($LFS find --comp-start 522M -E EOF $flg_opts $comp_file | wc -l)
1326         [ $found -eq 1 ] || error "Failover: third component not found"
1327
1328         sel_layout_sanity $comp_file 3
1329 }
1330 run_test 20b "Remove component without instantiation when there is no space"
1331
1332 test_20c() {
1333         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1334         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1335                 skip "skipped for lustre < $SEL_VER"
1336
1337         local comp_file=$DIR/$tdir/$tfile
1338         local flg_opts=""
1339         local found=""
1340
1341         test_mkdir -p $DIR/$tdir
1342
1343         # pool is used to limit available OSTs to 0 and 1, so we can set all
1344         # available OSTs out of space
1345         pool_add $TESTNAME || error "Pool creation failed"
1346         pool_add_targets $TESTNAME 0 1 || error "Pool add targets failed"
1347
1348         # without this, a previous delete can finish after we check free space
1349         wait_delete_completed
1350         wait_mds_ost_sync
1351
1352         $LFS setstripe -E 100M -E -1 -p $TESTNAME -z 64M $comp_file ||
1353                 error "Create $comp_file failed"
1354
1355         local ost_idx1=0
1356         local ost_idx2=1
1357         local wms=$(ost_watermarks_set_enospc $tfile $ost_idx1 |
1358                     grep "watermarks")
1359         local wms2=$(ost_watermarks_set_enospc $tfile $ost_idx2 |
1360                      grep "watermarks")
1361         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx1 $wms" EXIT
1362         stack_trap "ost_watermarks_clear_enospc $tfile $ost_idx2 $wms2" EXIT
1363
1364         dd if=/dev/zero of=$comp_file bs=1M count=1 seek=120 &&
1365                 error "dd should fail with ENOSPC"
1366
1367         flg_opts="--comp-flags init"
1368         found=$($LFS find --comp-start 0M -E 100M $flg_opts $comp_file | wc -l)
1369         [ $found -eq 1 ] || error "Write: First component not found"
1370
1371         flg_opts="--comp-flags ^init"
1372         found=$($LFS find --comp-start 100M -E 100M $flg_opts $comp_file |wc -l)
1373         [ $found -eq 1 ] || error "Write: 0-length component not found"
1374
1375         flg_opts="--comp-flags extension"
1376         found=$($LFS find --comp-start 100M -E EOF $flg_opts $comp_file | wc -l)
1377         [ $found -eq 1 ] || error "Write: third extension component not found"
1378
1379         sel_layout_sanity $comp_file 3
1380 }
1381 run_test 20c "Test inability to stripe new extension component"
1382
1383 test_20d() {
1384         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1385         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1386                 skip "skipped for lustre < $SEL_VER"
1387
1388         local comp_file=$DIR/$tdir/$tfile
1389         test_mkdir -p $DIR/$tdir
1390
1391         wait_delete_completed
1392         wait_mds_ost_sync
1393
1394         pool_add $TESTNAME || error "Pool creation failed"
1395         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1396         $LFS setstripe -E 64m -E -1 -p $TESTNAME -z 64M $comp_file ||
1397                 error "Create $comp_file failed"
1398
1399         replay_barrier $SINGLEMDS
1400
1401         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1402         dd if=/dev/zero bs=1M count=1 seek=100 of=$comp_file
1403         RC=$?
1404
1405         ost_watermarks_clear_enospc $tfile 0 $wms
1406         [ $RC -eq 0 ] || error "dd failed: $RC"
1407
1408         $LFS getstripe $comp_file
1409         local flg_opts="--comp-start 64M -E 128M --comp-flags init"
1410         local found=$($LFS find $flg_opts $comp_file | wc -l)
1411         [ $found -eq 1 ] || error "Write: component (64M-128M) not found"
1412
1413         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
1414         [ "$ost_idx" != "-1" ] && error "Write: EXT component disappeared"
1415
1416         fail $SINGLEMDS
1417
1418         found=$($LFS find $flg_opts $comp_file | wc -l)
1419         [ $found -eq 1 ] || error "Failover: component (64M-128M) not found"
1420
1421         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1422         [ "$ost_idx" != "-1" ] && error "Failover: EXT component disappeared"
1423
1424         sel_layout_sanity $comp_file 3
1425 }
1426 run_test 20d "Low on space + 0-length comp: force extension"
1427
1428 test_20e() {
1429         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1430         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1431                 skip "skipped for lustre < $SEL_VER"
1432
1433         local comp_file=$DIR/$tdir/$tfile
1434         test_mkdir -p $DIR/$tdir
1435
1436         wait_delete_completed
1437         wait_mds_ost_sync
1438
1439         pool_add $TESTNAME || error "Pool creation failed"
1440         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1441
1442         $LFS setstripe -E 64m -E 640M -z 64M -p $TESTNAME -E -1 $comp_file ||
1443                 error "Create $comp_file failed"
1444
1445         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1446
1447         dd if=/dev/zero bs=1M count=1 seek=100 of=$comp_file
1448         RC=$?
1449
1450         ost_watermarks_clear_enospc $tfile 0 $wms
1451         [ $RC -eq 0 ] || error "dd failed $RC"
1452
1453         $LFS getstripe $comp_file
1454         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
1455         local found=$($LFS find $flg_opts $comp_file | wc -l)
1456         [ $found -eq 1 ] || error "Write: component (64M-EOF) not found"
1457
1458         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
1459         [ "$ost_idx" != "" ] && error "Write: 0-length component still exists"
1460         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1461         [ "$ost_idx" != "" ] && error "Write: extension component still exists"
1462
1463         sel_layout_sanity $comp_file 2
1464 }
1465 run_test 20e "ENOSPC with next real comp: spillover and backward extension"
1466
1467 # Simple DoM interaction test
1468 test_21a() {
1469         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1470                 skip "skipped for lustre < $SEL_VER"
1471
1472         local comp_file=$DIR/$tdir/$tfile
1473         local flg_opts=""
1474         local found=""
1475
1476         test_mkdir -p $DIR/$tdir
1477
1478         # simple, correct self-extending layout after DoM component
1479         $LFS setstripe -E 1M -L mdt -E -1 -z 64m $comp_file || \
1480                 error "Create $comp_file failed"
1481
1482         # Write to DoM component & to self-extending comp after it
1483         dd if=/dev/zero bs=1M count=12 of=$comp_file ||
1484                 error "dd to extend failed"
1485
1486         flg_opts="--comp-flags init"
1487         found=$($LFS find --comp-start 1M -E 65M $flg_opts $comp_file | wc -l)
1488         [ $found -eq 1 ] || error "Write: extended component not found"
1489
1490         flg_opts="--comp-flags extension"
1491         found=$($LFS find --comp-start 65M $flg_opts $comp_file | wc -l)
1492         [ $found -eq 1 ] || error "Write: extension component not found"
1493
1494         sel_layout_sanity $comp_file 3
1495 }
1496 run_test 21a "Simple DoM interaction tests"
1497
1498 # DoM + extension + removal
1499 test_21b() {
1500         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1501         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1502                 skip "skipped for lustre < $SEL_VER"
1503
1504         local comp_file=$DIR/$tdir/$tfile
1505         local ost_name=$(ostname_from_index 0)
1506         local flg_opts=""
1507         local found=""
1508
1509         test_mkdir -p $DIR/$tdir
1510
1511         # DoM, extendable component, further extendable component
1512         $LFS setstripe -E 1M -L mdt -E 256M -i 0 -z 64M -E -1 -z 1G \
1513                 $comp_file || error "Create $comp_file failed"
1514
1515         found=$($LFS find --comp-start 1M -E 1M $flg_opts $comp_file | wc -l)
1516         [ $found -eq 1 ] || error "Write: Zero length component not found"
1517
1518         # This also demonstrates that we will avoid degraded OSTs
1519         do_facet ost1 $LCTL set_param -n obdfilter.$ost_name.degraded=1
1520         # sleep to guarantee we see the degradation
1521         sleep_maxage
1522
1523         # un-degrade on exit
1524         stack_trap "do_facet ost1 $LCTL set_param -n \
1525                 obdfilter.$ost_name.degraded=0; sleep_maxage" EXIT
1526
1527         # This should remove the first component after DoM and spill over to
1528         # the next one
1529         dd if=/dev/zero bs=1M count=2 of=$comp_file ||
1530                 error "dd to remove+spill over failed"
1531
1532         found=$($LFS find --comp-start 1M -E 1M $flg_opts $comp_file | wc -l)
1533         [ $found -eq 0 ] || error "Write: Zero length component still present"
1534
1535         flg_opts="--comp-flags init"
1536         found=$($LFS find --comp-start 1M -E 1025M $flg_opts $comp_file | wc -l)
1537         [ $found -eq 1 ] || error "Write: extended component not found"
1538
1539         flg_opts="--comp-flags extension"
1540         found=$($LFS find --comp-start 1025M -E EOF $flg_opts $comp_file |wc -l)
1541         [ $found -eq 1 ] || error "Write: extension component not found"
1542
1543         sel_layout_sanity $comp_file 3
1544 }
1545 run_test 21b "DoM followed by extendable component with removal"
1546
1547 test_23a() {
1548         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1549         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1550                 skip "skipped for lustre < $SEL_VER"
1551
1552         local comp_file=$DIR/$tdir/$tfile
1553         test_mkdir -p $DIR/$tdir
1554
1555         $LFS setstripe -z 64M -c 1 -E -1 $comp_file ||
1556                 error "Create $comp_file failed"
1557
1558         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
1559                 error "dd append failed"
1560
1561         local flg_opts="--comp-start 0 -E EOF --comp-flags init"
1562         local found=$($LFS find $flg_opts $comp_file | wc -l)
1563         [ $found -eq 1 ] || error "Append: first component (0-EOF) not found"
1564
1565         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
1566         [ "$ost_idx" != "" ] && error "Append: second component still exists"
1567
1568         sel_layout_sanity $comp_file 1
1569 }
1570 run_test 23a "Append: remove EXT comp"
1571
1572 test_23b() {
1573         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1574         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1575                 skip "skipped for lustre < $SEL_VER"
1576
1577         local comp_file=$DIR/$tdir/$tfile
1578         test_mkdir -p $DIR/$tdir
1579
1580         $LFS setstripe -E 64m -E -1 -z 64M $comp_file ||
1581                 error "Create $comp_file failed"
1582
1583         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
1584                 error "dd append failed"
1585
1586         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
1587         local found=$($LFS find $flg_opts $comp_file | wc -l)
1588         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
1589
1590         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
1591         [ "$ost_idx" != "" ] && error "Append: third component still exists"
1592
1593         sel_layout_sanity $comp_file 2
1594 }
1595 run_test 23b "Append with 0-length comp: remove EXT comp"
1596
1597 test_23c() {
1598         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1599         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1600                 skip "skipped for lustre < $SEL_VER"
1601
1602         local comp_file=$DIR/$tdir/$tfile
1603         test_mkdir -p $DIR/$tdir
1604
1605         wait_delete_completed
1606         wait_mds_ost_sync
1607
1608         pool_add $TESTNAME || error "Pool creation failed"
1609         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1610         $LFS setstripe -E 64m -E -1 -p $TESTNAME -z 64M $comp_file ||
1611                 error "Create $comp_file failed"
1612
1613         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1614         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
1615         RC=$?
1616
1617         ost_watermarks_clear_enospc $tfile 0 $wms
1618         [ $RC -eq 0 ] || error "dd append failed: $RC"
1619
1620         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
1621         local found=$($LFS find $flg_opts $comp_file | wc -l)
1622         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
1623
1624         local ost_idx=$($LFS getstripe -I3 -i $comp_file)
1625         [ "$ost_idx" != "" ] && error "Append: EXT component still exists"
1626
1627         sel_layout_sanity $comp_file 2
1628 }
1629 run_test 23c "Append with low on space + 0-length comp: force extension"
1630
1631 test_23d() {
1632         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1633         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1634                 skip "skipped for lustre < $SEL_VER"
1635
1636         local comp_file=$DIR/$tdir/$tfile
1637         test_mkdir -p $DIR/$tdir
1638
1639         $LFS setstripe -E 64m -E 640M -z 64M -E -1 $comp_file ||
1640                 error "Create $comp_file failed"
1641
1642         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file ||
1643                 error "dd append failed"
1644
1645         flg_opts="--comp-start 64M -E 640M --comp-flags init"
1646         found=$($LFS find $flg_opts $comp_file | wc -l)
1647         [ $found -eq 1 ] || error "Append: component (64M-640M) not found"
1648
1649         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1650         [ "$ost_idx" != "" ] && error "Append: third component still exists"
1651
1652         sel_layout_sanity $comp_file 3
1653 }
1654 run_test 23d "Append with 0-length comp + next real comp: remove EXT comp"
1655
1656 test_23e() {
1657         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1658         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code $SEL_VER) ] &&
1659                 skip "skipped for lustre < $SEL_VER"
1660
1661         local comp_file=$DIR/$tdir/$tfile
1662         test_mkdir -p $DIR/$tdir
1663
1664         wait_delete_completed
1665         wait_mds_ost_sync
1666
1667         pool_add $TESTNAME || error "Pool creation failed"
1668         pool_add_targets $TESTNAME 0 || error "Pool add targets failed"
1669
1670         $LFS setstripe -E 64m -E 640M -z 64M -p $TESTNAME -E -1 $comp_file ||
1671                 error "Create $comp_file failed"
1672
1673         local wms=$(ost_watermarks_set_low_space 0 | grep "watermarks")
1674
1675         dd if=/dev/zero bs=1M oflag=append count=1 of=$comp_file
1676         RC=$?
1677
1678         ost_watermarks_clear_enospc $tfile 0 $wms
1679         [ $RC -eq 0 ] || error "dd append failed $RC"
1680
1681         local flg_opts="--comp-start 64M -E EOF --comp-flags init"
1682         local found=$($LFS find $flg_opts $comp_file | wc -l)
1683         [ $found -eq 1 ] || error "Append: component (64M-EOF) not found"
1684
1685         local ost_idx=$($LFS getstripe -I2 -i $comp_file)
1686         [ "$ost_idx" != "" ] && error "Append: 0-length component still exists"
1687         ost_idx=$($LFS getstripe -I3 -i $comp_file)
1688         [ "$ost_idx" != "" ] && error "Append: extension component still exists"
1689
1690         sel_layout_sanity $comp_file 2
1691 }
1692 run_test 23e "Append with next real comp: spillover and backward extension"
1693
1694 complete $SECONDS
1695 check_and_cleanup_lustre
1696 exit_status