xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/l2arc/persist_l2arc_007_pos.ksh (revision 1a065e93eee983124652c3eb0cfdcb4776cd89ab)
1#!/bin/ksh -p
2#
3# CDDL HEADER START
4#
5# This file and its contents are supplied under the terms of the
6# Common Development and Distribution License ("CDDL"), version 1.0.
7# You may only use this file in accordance with the terms of version
8# 1.0 of the CDDL.
9#
10# A full copy of the text of the CDDL should have accompanied this
11# source.  A copy of the CDDL is also available via the Internet at
12# http://www.illumos.org/license/CDDL.
13#
14# CDDL HEADER END
15#
16
17#
18# Copyright (c) 2020, George Amanakis. All rights reserved.
19#
20
21. $STF_SUITE/include/libtest.shlib
22. $STF_SUITE/tests/functional/l2arc/l2arc.cfg
23
24#
25# DESCRIPTION:
26#	Off/onlining an L2ARC device results in rebuilding L2ARC, vdev present.
27#
28# STRATEGY:
29#	1. Create pool with a cache device.
30#	2. Create a random file in that pool and random read for 10 sec.
31#	3. Offline the L2ARC device.
32#	4. Read the amount of log blocks written from the header of the
33#		L2ARC device.
34#	5. Online the L2ARC device.
35#	6. Read the amount of log blocks rebuilt in arcstats and compare to
36#		(4).
37#	7. Check if the labels of the L2ARC device are intact.
38#
39
40verify_runnable "global"
41
42log_assert "Off/onlining an L2ARC device results in rebuilding L2ARC, vdev present."
43
44function cleanup
45{
46	if poolexists $TESTPOOL ; then
47		destroy_pool $TESTPOOL
48	fi
49
50	log_must set_tunable32 l2arc_noprefetch $noprefetch
51	log_must set_tunable32 l2arc_rebuild_blocks_min_l2size \
52		$rebuild_blocks_min_l2size
53}
54log_onexit cleanup
55
56# l2arc_noprefetch is set to 0 to let L2ARC handle prefetches
57typeset noprefetch=$(get_tunable l2arc_noprefetch)
58typeset rebuild_blocks_min_l2size=$(get_tunable l2arc_rebuild_blocks_min_l2size)
59log_must set_tunable32 l2arc_noprefetch 0
60log_must set_tunable32 l2arc_rebuild_blocks_min_l2size 0
61
62typeset fill_mb=800
63typeset cache_sz=$(( floor($fill_mb / 2) ))
64export FILE_SIZE=$(( floor($fill_mb / $NUMJOBS) ))M
65
66log_must truncate -s ${cache_sz}M $VDEV_CACHE
67
68log_must zpool create -f $TESTPOOL $VDEV cache $VDEV_CACHE
69
70log_must fio $FIO_SCRIPTS/mkfiles.fio
71log_must fio $FIO_SCRIPTS/random_reads.fio
72
73arcstat_quiescence_noecho l2_size
74log_must zpool offline $TESTPOOL $VDEV_CACHE
75arcstat_quiescence_noecho l2_size
76
77typeset l2_rebuild_log_blk_start=$(get_arcstat l2_rebuild_log_blks)
78typeset l2_dh_log_blk=$(zdb -l $VDEV_CACHE | grep log_blk_count | \
79	awk '{print $2}')
80
81log_must zpool online $TESTPOOL $VDEV_CACHE
82arcstat_quiescence_noecho l2_size
83
84typeset l2_rebuild_log_blk_end=$(arcstat_quiescence_echo l2_rebuild_log_blks)
85
86log_must test $l2_dh_log_blk -eq $(( $l2_rebuild_log_blk_end - \
87	$l2_rebuild_log_blk_start ))
88log_must test $l2_dh_log_blk -gt 0
89
90log_must zpool offline $TESTPOOL $VDEV_CACHE
91arcstat_quiescence_noecho l2_size
92
93log_must zdb -lq $VDEV_CACHE
94
95log_must zpool destroy -f $TESTPOOL
96
97log_pass "Off/onlining an L2ARC device results in rebuilding L2ARC, vdev present."
98