-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also added test from Tony Signed-off-by: Don Brady <[email protected]>
- Loading branch information
Showing
12 changed files
with
149 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
93 changes: 93 additions & 0 deletions
93
tests/zfs-tests/tests/functional/events/slow_vdev_sit_out.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
#!/bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or https://opensource.org/licenses/CDDL-1.0. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# Copyright (c) 2024 by Lawrence Livermore National Security, LLC. | ||
|
||
# DESCRIPTION: | ||
# Verify that vdevs 'sit out' when they are slow | ||
# | ||
# STRATEGY: | ||
# 1. Create various raidz/draid pools | ||
# 2. Inject delays into one of the disks | ||
# 3. Verify disk is set to 'sit out' for awhile. | ||
# 4. Wait for RAIDZ_READ_SIT_OUT_SECS and verify sit out state is lifted. | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
|
||
# Avoid name conflicts with the default pool | ||
TESTPOOL2=testpool2 | ||
|
||
function cleanup | ||
{ | ||
restore_tunable RAIDZ_READ_SIT_OUT_SECS | ||
log_must zinject -c all | ||
destroy_pool $TESTPOOL2 | ||
log_must rm -f $TEST_BASE_DIR/vdev.$$.* | ||
} | ||
|
||
log_assert "Verify sit_out works" | ||
|
||
log_onexit cleanup | ||
|
||
# shorten sit out period for testing | ||
save_tunable RAIDZ_READ_SIT_OUT_SECS | ||
set_tunable32 RAIDZ_READ_SIT_OUT_SECS 5 | ||
|
||
log_must truncate -s 150M $TEST_BASE_DIR/vdev.$$.{0..9} | ||
|
||
for raidtype in raidz raidz2 raidz3 draid1 draid2 draid3 ; do | ||
log_must zpool create $TESTPOOL2 $raidtype $TEST_BASE_DIR/vdev.$$.{0..9} | ||
log_must dd if=/dev/urandom of=/$TESTPOOL2/bigfile bs=1M count=100 | ||
log_must zpool export $TESTPOOL2 | ||
log_must zpool import -d $TEST_BASE_DIR $TESTPOOL2 | ||
|
||
BAD_VDEV=$TEST_BASE_DIR/vdev.$$.9 | ||
|
||
# Initial state should not be sitting out | ||
log_must eval [[ "$(get_vdev_prop sit_out $TESTPOOL2 $BAD_VDEV)" == "off" ]] | ||
|
||
# Delay our reads 200ms to trigger sit out | ||
log_must zinject -d $BAD_VDEV -D200:1 -T read $TESTPOOL2 | ||
|
||
# Do some reads and wait for us to sit out | ||
for i in {1..100} ; do | ||
dd if=/$TESTPOOL2/bigfile skip=$i bs=1M count=1 of=/dev/null &> /dev/null | ||
|
||
sit_out=$(get_vdev_prop sit_out $TESTPOOL2 $BAD_VDEV) | ||
if [[ "$sit_out" == "on" ]] ; then | ||
break | ||
fi | ||
done | ||
|
||
log_must test "$(get_vdev_prop sit_out $TESTPOOL2 $BAD_VDEV)" == "on" | ||
|
||
# Clear fault injection | ||
log_must zinject -c all | ||
|
||
# Wait for us to exit our sit out period | ||
sleep 6 | ||
log_must test "$(get_vdev_prop sit_out $TESTPOOL2 $BAD_VDEV)" == "off" | ||
destroy_pool $TESTPOOL2 | ||
done | ||
|
||
log_pass "sit_out works correctly" |