t

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 http://www.opensolaris.org/os/licensing.
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) 2016 Gvozden Nešković. All rights reserved.

RAIDZ_TEST 1 "Aug 24, 2020" OpenZFS
NAME
raidz_test - raidz implementation verification and benchmarking tool
SYNOPSIS

"raidz_test <options>"

DESCRIPTION

This manual page documents briefly the raidz_test command.

Purpose of this tool is to run all supported raidz implementation and verify results of all methods. Tool also contains a parameter sweep option where all parameters affecting RAIDZ block are verified (like ashift size, data offset, data size, etc...). The tool also supports a benchmarking mode using -B option.

OPTION

"-h" ""

Print a help summary.

"-a" " ashift (default: 9)"

Ashift value.

"-o" " zio_off_shift" " (default: 0)"

Zio offset for raidz block. Offset value is 1 << (zio_off_shift)

"-d" " raidz_data_disks" " (default: 8)"

Number of raidz data disks to use. Additional disks for parity will be used during testing.

"-s" " zio_size_shift" " (default: 19)"

Size of data for raidz block. Size is 1 << (zio_size_shift).

"-S(weep)"

Sweep parameter space while verifying the raidz implementations. This option will exhaust all most of valid values for -a -o -d -s options. Runtime using this option will be long.

"-t(imeout)"

Wall time for sweep test in seconds. The actual runtime could be longer.

"-B(enchmark)"

This options starts the benchmark mode. All implementations are benchmarked using increasing per disk data size. Results are given as throughput per disk, measured in MiB/s.

"-v(erbose)"

Increase verbosity.

"-T(est the test)"

Debugging option. When this option is specified tool is supposed to fail all tests. This is to check if tests would properly verify bit-exactness.

"-D(ebug)"

Debugging option. Specify to attach gdb when SIGSEGV or SIGABRT are received.

"SEE ALSO"
"ztest (1)"
"AUTHORS"
vdev_raidz, created for OpenZFS by Gvozden Nešković <neskovic@gmail.com>