]> git.proxmox.com Git - mirror_zfs.git/blame - tests/zfs-tests/tests/functional/zvol/zvol_misc/zvol_misc_004_pos.ksh
OpenZFS 6404 - zvol_swap_006_pos can occasionally fail due to swaplen being < 16
[mirror_zfs.git] / tests / zfs-tests / tests / functional / zvol / zvol_misc / zvol_misc_004_pos.ksh
CommitLineData
6bb24f4d
BB
1#!/bin/ksh -p
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22
23#
24# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
25# Use is subject to license terms.
26#
27
28#
3d3fe9f9 29# Copyright (c) 2013, 2015 by Delphix. All rights reserved.
6bb24f4d
BB
30#
31
32. $STF_SUITE/include/libtest.shlib
33. $STF_SUITE/tests/functional/zvol/zvol_common.shlib
34
35#
36# DESCRIPTION:
37# Verify the ability to take snapshots of zvols used as dump or swap.
38#
39# STRATEGY:
40# 1. Create a ZFS volume
41# 2. Set the volume as dump or swap
42# 3. Verify creating a snapshot of the zvol succeeds.
43#
44
45verify_runnable "global"
46
3d3fe9f9
MA
47volsize=$($ZFS get -H -o value volsize $TESTPOOL/$TESTVOL)
48
6bb24f4d
BB
49function cleanup
50{
51 typeset dumpdev=$(get_dumpdevice)
52 if [[ $dumpdev != $savedumpdev ]] ; then
53 safe_dumpadm $savedumpdev
54 fi
55
56 $SWAP -l | $GREP -w $voldev > /dev/null 2>&1
57 if (( $? == 0 )); then
58 log_must $SWAP -d $voldev
59 fi
60
61 typeset snap
62 for snap in snap0 snap1 ; do
63 if datasetexists $TESTPOOL/$TESTVOL@$snap ; then
64 log_must $ZFS destroy $TESTPOOL/$TESTVOL@$snap
65 fi
66 done
3d3fe9f9 67 $ZFS set volsize=$volsize $TESTPOOL/$TESTVOL
6bb24f4d
BB
68}
69
70function verify_snapshot
71{
72 typeset volume=$1
73
74 log_must $ZFS snapshot $volume@snap0
75 log_must $ZFS snapshot $volume@snap1
76 log_must datasetexists $volume@snap0 $volume@snap1
77
78 log_must $ZFS destroy $volume@snap1
79 log_must $ZFS snapshot $volume@snap1
80
81 log_mustnot $ZFS rollback -r $volume@snap0
82 log_must datasetexists $volume@snap0
83
84 log_must $ZFS destroy -r $volume@snap0
85}
86
87log_assert "Verify the ability to take snapshots of zvols used as dump or swap."
88log_onexit cleanup
89
90voldev=${ZVOL_DEVDIR}/$TESTPOOL/$TESTVOL
91savedumpdev=$(get_dumpdevice)
92
93# create snapshot over dump zvol
94safe_dumpadm $voldev
95log_must is_zvol_dumpified $TESTPOOL/$TESTVOL
96
97verify_snapshot $TESTPOOL/$TESTVOL
98
99safe_dumpadm $savedumpdev
100log_mustnot is_zvol_dumpified $TESTPOOL/$TESTVOL
101
102# create snapshot over swap zvol
103
104log_must $SWAP -a $voldev
105log_mustnot is_zvol_dumpified $TESTPOOL/$TESTVOL
106
107verify_snapshot $TESTPOOL/$TESTVOL
108
109log_must $SWAP -d $voldev
110log_mustnot is_zvol_dumpified $TESTPOOL/$TESTVOL
111
112log_pass "Creating snapshots from dump/swap zvols succeeds."