1
0
Fork 0

Adding upstream version 4.2+20230313.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-14 06:04:58 +01:00
parent a788e0c57c
commit cc4dc8194c
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
6 changed files with 437 additions and 176 deletions

12
tests/00raid5-zero Normal file
View file

@ -0,0 +1,12 @@
if mdadm -CfR $md0 -l 5 -n3 $dev0 $dev1 $dev2 --write-zeroes ; then
check nosync
echo check > /sys/block/md0/md/sync_action;
check wait
elif grep "zeroing [^ ]* failed: Operation not supported" \
$targetdir/stderr; then
echo "write-zeros not supported, skipping"
else
echo >&2 "ERROR: mdadm return failure without not supported message"
exit 1
fi