blob: be387637baa443584b394f0075926f2515550a56 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#!/bin/ksh -p
#
# CDDL HEADER START
#
# 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.
#
# CDDL HEADER END
#
#
# Copyright (c) 2017 by Lawrence Livermore National Security, LLC.
# Copyright 2019 Joyent, Inc.
#
# DESCRIPTION:
# Verify MMP behaves correctly when failing to write uberblocks.
#
# STRATEGY:
# 1. Create a mirrored pool and enable multihost
# 2. Inject a 50% failure rate when writing uberblocks to a device
# 3. Delay briefly for additional MMP writes to complete
# 4. Verify the failed uberblock writes did not prevent MMP updates
#
. $STF_SUITE/include/libtest.shlib
. $STF_SUITE/tests/functional/mmp/mmp.cfg
. $STF_SUITE/tests/functional/mmp/mmp.kshlib
verify_runnable "both"
function cleanup
{
zinject -c all
default_cleanup_noexit
log_must mmp_clear_hostid
}
log_assert "mmp behaves correctly when failing to write uberblocks."
log_onexit cleanup
log_must mmp_set_hostid $HOSTID1
default_mirror_setup_noexit $DISKS
log_must zpool set multihost=on $TESTPOOL
log_must zinject -d ${DISK[0]} -e io -T write -f 50 -L uber $TESTPOOL
clear_mmp_history
uber_count=$(count_mmp_writes $TESTPOOL 3)
if [ $uber_count -eq 0 ]; then
log_fail "mmp writes did not occur when uberblock IO errors injected"
fi
log_pass "mmp correctly wrote uberblocks when IO errors injected"
|