1
0
Fork 0

Adding upstream version 4.2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-14 05:52:19 +01:00
parent 16732c81e5
commit 4fd4995b67
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
279 changed files with 77998 additions and 0 deletions

18
tests/00raid10 Normal file
View file

@ -0,0 +1,18 @@
# Create some raid10 arrays, all with 6 devices and one spare
devs="$dev0 $dev1 $dev2 $dev3 $dev4 $dev5 $dev6"
for lo in n2 n3 f2 f3
do
cm=1
case $lo in
f2 ) m=3 cm=2;;
f3 ) m=2 cm=3;;
n2 ) m=3;;
n3 ) m=2;;
esac
mdadm --create --run --level=raid10 --layout $lo --raid-disks 6 -x 1 $md0 $devs
check resync ; check raid10
testdev $md0 $m $mdsize1 $[512*cm]
mdadm -S $md0
done