blob: 12f4d81b3eb4707745994c071f3da885d7f7b66b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Check integrity of raid6 in degraded modes
# Create a 5 disk raid6, dump some data to it, then
# sha1sum it with different pairs of devices failed
if [ "$INTEGRITY" != "yes" ]; then
echo -ne 'skipping... '
exit 0
fi
layouts='ls rs la ra'
lv=`uname -r`
if expr $lv '>=' 2.6.30 > /dev/null
then
layouts="$layouts parity-first ddf-zero-restart ddf-N-restart ddf-N-continue \
left-asymmetric-6 right-asymmetric-6 left-symmetric-6 right-symmetric-6 parity-first-6"
fi
for layout in $layouts
do
mdadm -CR $md0 -l6 --layout $layout -n5 $dev0 $dev1 $dev2 $dev3 $dev4
check wait
tar cf - /etc > $md0
sum=`sha1sum $md0`
totest=
for second in $dev0 $dev1 $dev2 $dev3 $dev4
do
mdadm $md0 -f $second
mdadm $md0 -r $second
blockdev --flushbufs $md0
sum1=`sha1sum $md0`
if [ "$sum" != "$sum1" ]
then
echo $sum does not match $sum1 with $second missing
exit 1
fi
for first in $totest
do
mdadm $md0 -f $first
mdadm $md0 -r $first
blockdev --flushbufs $md0
sum1=`sha1sum $md0`
if [ "$sum" != "$sum1" ]
then
echo $sum does not match $sum1 with $first and $second missing
exit 1
fi
mdadm $md0 -a $first
while ! (check state 'U*_U*'); do check wait; sleep 0.2; done
done
mdadm $md0 -a $second
while ! (check state 'U*'); do check wait; sleep 0.2; done
totest="$totest $second"
done
mdadm -S $md0
done
|