summaryrefslogtreecommitdiffstats
path: root/tests/25raid456-reshape-corrupt-data
blob: fdb875fbbcc7e2b146938b92369752ea95365119 (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
devs="$dev0 $dev1 $dev2"

set_up_test()
{
	mdadm -Cv -R -n 3 -l5 $md0 $devs --size=50M || die "create array failed"
	mdadm -a $md0 $dev3 || die "failed to bind new disk to array"
	mkfs.xfs -f $md0 || die "mkfs failed"
	xfs_ncheck $md0 || die "check fs failed"
}

clean_up_test()
{
	mdadm -S $md0
}

trap 'clean_up_test' EXIT

set_up_test || die "set up test failed"

# trigger reshape
echo 1000 > /sys/block/md0/md/sync_speed_max
mdadm --grow -l 6 $md0
sleep 1

# stop and start reshape
echo frozen > /sys/block/md0/md/sync_action
echo system > /sys/block/md0/md/sync_speed_max
echo reshape > /sys/block/md0/md/sync_action

mdadm -W $md0

# check if data is corrupted
xfs_ncheck $md0 || die "data is corrupted after reshape"

exit 0