1d583b39bSJohn Wren Kennedy#
2d583b39bSJohn Wren Kennedy# CDDL HEADER START
3d583b39bSJohn Wren Kennedy#
4d583b39bSJohn Wren Kennedy# The contents of this file are subject to the terms of the
5d583b39bSJohn Wren Kennedy# Common Development and Distribution License (the "License").
6d583b39bSJohn Wren Kennedy# You may not use this file except in compliance with the License.
7d583b39bSJohn Wren Kennedy#
8d583b39bSJohn Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9d583b39bSJohn Wren Kennedy# or http://www.opensolaris.org/os/licensing.
10d583b39bSJohn Wren Kennedy# See the License for the specific language governing permissions
11d583b39bSJohn Wren Kennedy# and limitations under the License.
12d583b39bSJohn Wren Kennedy#
13d583b39bSJohn Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each
14d583b39bSJohn Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15d583b39bSJohn Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the
16d583b39bSJohn Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying
17d583b39bSJohn Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner]
18d583b39bSJohn Wren Kennedy#
19d583b39bSJohn Wren Kennedy# CDDL HEADER END
20d583b39bSJohn Wren Kennedy#
21d583b39bSJohn Wren Kennedy
22d583b39bSJohn Wren Kennedy#
23d583b39bSJohn Wren Kennedy# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24d583b39bSJohn Wren Kennedy# Use is subject to license terms.
25d583b39bSJohn Wren Kennedy#
26d583b39bSJohn Wren Kennedy
27d583b39bSJohn Wren Kennedy#
285cabbc6bSPrashanth Sreenivasa# Copyright (c) 2013, 2014 by Delphix. All rights reserved.
29481467d8SYuri Pankov# Copyright 2016 Nexenta Systems, Inc. All rights reserved.
30d583b39bSJohn Wren Kennedy#
31d583b39bSJohn Wren Kennedy
32d583b39bSJohn Wren Kennedy# Set the expected properties of zpool
33481467d8SYuri Pankovtypeset -a properties=(
34481467d8SYuri Pankov    "size"
35481467d8SYuri Pankov    "capacity"
36481467d8SYuri Pankov    "altroot"
37481467d8SYuri Pankov    "health"
38481467d8SYuri Pankov    "guid"
39481467d8SYuri Pankov    "version"
40481467d8SYuri Pankov    "bootfs"
41481467d8SYuri Pankov    "delegation"
42481467d8SYuri Pankov    "autoreplace"
43481467d8SYuri Pankov    "cachefile"
44481467d8SYuri Pankov    "failmode"
45481467d8SYuri Pankov    "listsnapshots"
46481467d8SYuri Pankov    "autoexpand"
47481467d8SYuri Pankov    "dedupditto"
48481467d8SYuri Pankov    "dedupratio"
49481467d8SYuri Pankov    "free"
50481467d8SYuri Pankov    "allocated"
51481467d8SYuri Pankov    "readonly"
52481467d8SYuri Pankov    "comment"
53481467d8SYuri Pankov    "expandsize"
54481467d8SYuri Pankov    "freeing"
55481467d8SYuri Pankov    "fragmentation"
56481467d8SYuri Pankov    "leaked"
57332b6353SJerry Jelinek    "bootsize"
58332b6353SJerry Jelinek    "checkpoint"
59e0f1c0afSOlaf Faaland    "multihost"
605711d393Sloli    "ashift"
61084fd14fSBrian Behlendorf    "autotrim"
62481467d8SYuri Pankov    "feature@async_destroy"
63481467d8SYuri Pankov    "feature@empty_bpobj"
64481467d8SYuri Pankov    "feature@lz4_compress"
65481467d8SYuri Pankov    "feature@multi_vdev_crash_dump"
66481467d8SYuri Pankov    "feature@spacemap_histogram"
67481467d8SYuri Pankov    "feature@enabled_txg"
68481467d8SYuri Pankov    "feature@hole_birth"
69481467d8SYuri Pankov    "feature@extensible_dataset"
70481467d8SYuri Pankov    "feature@embedded_data"
71481467d8SYuri Pankov    "feature@bookmarks"
72481467d8SYuri Pankov    "feature@filesystem_limits"
73481467d8SYuri Pankov    "feature@large_blocks"
74332b6353SJerry Jelinek    "feature@large_dnode"
75481467d8SYuri Pankov    "feature@sha512"
76481467d8SYuri Pankov    "feature@skein"
77481467d8SYuri Pankov    "feature@edonr"
785cabbc6bSPrashanth Sreenivasa    "feature@device_removal"
79332b6353SJerry Jelinek    "feature@obsolete_counts"
80332b6353SJerry Jelinek    "feature@zpool_checkpoint"
81332b6353SJerry Jelinek    "feature@spacemap_v2"
82663207adSDon Brady    "feature@allocation_classes"
83e4c795beSTom Caputi    "feature@resilver_defer"
84eb633035STom Caputi    "feature@encryption"
85eb633035STom Caputi    "feature@bookmark_v2"
86f67950b2SNasf-Fan    "feature@userobj_accounting"
87f67950b2SNasf-Fan    "feature@project_quota"
88*814dcd43SSerapheim Dimitropoulos    "feature@log_spacemap"
89481467d8SYuri Pankov)
90