mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-07-05 07:17:40 +03:00

These tests use lsblk to find the sector size of a disk. FreeBSD doesn't have lsblk. Use diskinfo -v to get sector size on FreeBSD. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Igor Kozhukhov <igor@dilos.org>\ Reviewed-by: John Kennedy <john.kennedy@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes #10033
136 lines
3.7 KiB
Bash
Executable File
136 lines
3.7 KiB
Bash
Executable File
#!/bin/ksh -p
|
|
#
|
|
# This file and its contents are supplied under the terms of the
|
|
# Common Development and Distribution License ("CDDL"), version 1.0.
|
|
# You may only use this file in accordance with the terms of version
|
|
# 1.0 of the CDDL.
|
|
#
|
|
# A full copy of the text of the CDDL should have accompanied this
|
|
# source. A copy of the CDDL is also available via the Internet at
|
|
# http://www.illumos.org/license/CDDL.
|
|
#
|
|
|
|
#
|
|
# Copyright 2019 Joyent, Inc.
|
|
#
|
|
|
|
. $STF_SUITE/include/libtest.shlib
|
|
. $STF_SUITE/tests/functional/refreserv/refreserv.cfg
|
|
|
|
#
|
|
# DESCRIPTION:
|
|
# raidz refreservation=auto accounts for extra parity and skip blocks
|
|
#
|
|
# STRATEGY:
|
|
# 1. Create a pool with a single raidz vdev
|
|
# 2. For each block size [512b, 1k, 128k] or [4k, 8k, 128k]
|
|
# - create a volume
|
|
# - fully overwrite it
|
|
# - verify that referenced is less than or equal to reservation
|
|
# - destroy the volume
|
|
# 3. Destroy the pool
|
|
# 4. Recreate the pool with one more disk in the vdev, then repeat steps
|
|
# 2 and 3.
|
|
# 5. Repeat all steps above for raidz2 and raidz3.
|
|
#
|
|
# NOTES:
|
|
# 1. This test will use up to 14 disks but can cover the key concepts with
|
|
# 5 disks.
|
|
# 2. If the disks are a mixture of 4Kn and 512n/512e, failures are likely.
|
|
#
|
|
|
|
verify_runnable "global"
|
|
|
|
typeset -a alldisks=($DISKS)
|
|
|
|
# The larger the volsize, the better zvol_volsize_to_reservation() is at
|
|
# guessing the right number. At 10M on ashift=12, the estimate may be over 26%
|
|
# too high.
|
|
volsize=100
|
|
|
|
function cleanup
|
|
{
|
|
default_cleanup_noexit
|
|
default_setup_noexit "${alldisks[0]}"
|
|
}
|
|
|
|
log_assert "raidz refreservation=auto accounts for extra parity and skip blocks"
|
|
log_onexit cleanup
|
|
|
|
poolexists "$TESTPOOL" && log_must_busy zpool destroy "$TESTPOOL"
|
|
|
|
# Testing tiny block sizes on ashift=12 pools causes so much size inflation
|
|
# that small test disks may fill before creating small volumes. However,
|
|
# testing 512b and 1K blocks on ashift=9 pools is an ok approximation for
|
|
# testing the problems that arise from 4K and 8K blocks on ashift=12 pools.
|
|
if is_freebsd; then
|
|
bps=$(diskinfo -v ${alldisks[0]} | awk '/sectorsize/ { print $1 }')
|
|
elif is_linux; then
|
|
bps=$(lsblk -nrdo min-io /dev/${alldisks[0]})
|
|
fi
|
|
log_must test "$bps" -eq 512 -o "$bps" -eq 4096
|
|
case "$bps" in
|
|
512)
|
|
allshifts=(9 10 17)
|
|
maxpct=151
|
|
;;
|
|
4096)
|
|
allshifts=(12 13 17)
|
|
maxpct=110
|
|
;;
|
|
*)
|
|
log_fail "bytes/sector: $bps != (512|4096)"
|
|
;;
|
|
esac
|
|
log_note "Testing in ashift=${allshifts[0]} mode"
|
|
|
|
# This loop handles all iterations of steps 1 through 4 described in strategy
|
|
# comment above,
|
|
for parity in 1 2 3; do
|
|
raid=raidz$parity
|
|
|
|
# Ensure we hit scenarios with and without skip blocks
|
|
for ndisks in $((parity * 2)) $((parity * 2 + 1)); do
|
|
typeset -a disks=(${alldisks[0..$((ndisks - 1))]})
|
|
|
|
if (( ${#disks[@]} < ndisks )); then
|
|
log_note "Too few disks to test $raid-$ndisks"
|
|
continue
|
|
fi
|
|
|
|
log_must zpool create "$TESTPOOL" "$raid" "${disks[@]}"
|
|
|
|
for bits in "${allshifts[@]}"; do
|
|
vbs=$((1 << bits))
|
|
log_note "Testing $raid-$ndisks volblocksize=$vbs"
|
|
|
|
vol=$TESTPOOL/$TESTVOL
|
|
log_must zfs create -V ${volsize}m \
|
|
-o volblocksize=$vbs "$vol"
|
|
block_device_wait "/dev/zvol/$vol"
|
|
log_must dd if=/dev/zero of=/dev/zvol/$vol \
|
|
bs=1024k count=$volsize
|
|
sync
|
|
|
|
ref=$(zfs get -Hpo value referenced "$vol")
|
|
refres=$(zfs get -Hpo value refreservation "$vol")
|
|
log_must test -n "$ref"
|
|
log_must test -n "$refres"
|
|
|
|
typeset -F2 deltapct=$((refres * 100.0 / ref))
|
|
log_note "$raid-$ndisks refreservation $refres" \
|
|
"is $deltapct% of reservation $res"
|
|
|
|
log_must test "$ref" -le "$refres"
|
|
log_must test "$deltapct" -le $maxpct
|
|
|
|
log_must_busy zfs destroy "$vol"
|
|
block_device_wait
|
|
done
|
|
|
|
log_must_busy zpool destroy "$TESTPOOL"
|
|
done
|
|
done
|
|
|
|
log_pass "raidz refreservation=auto accounts for extra parity and skip blocks"
|