usr/src/uts/common/sys/fs/zfs.h
author Mark J Musante <Mark.Musante@Sun.COM>
Fri, 06 Aug 2010 13:53:14 -0600
changeset 13049 2511753a6599
parent 12961 b521d551715f
child 13055 8c712bbb18ea
permissions -rw-r--r--
6782540 zpool cannot replace a replacing device
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1485
e971e58d18f6 6322005 support for persistent offline
lling
parents: 1356
diff changeset
     5
 * Common Development and Distribution License (the "License").
e971e58d18f6 6322005 support for persistent offline
lling
parents: 1356
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
10105
17811c723fb4 6854612 triple-parity RAID-Z
Adam Leventhal <adam.leventhal@sun.com>
parents: 9816
diff changeset
    21
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    22
/*
12164
0eb8d6741e37 PSARC/2010/029 Improved ACL interoperability
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11935
diff changeset
    23
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
12294
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
    26
/* Portions Copyright 2010 Robert Milkowski */
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
    27
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
#ifndef	_SYS_FS_ZFS_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#define	_SYS_FS_ZFS_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
    31
#include <sys/time.h>
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
    32
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
extern "C" {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
 * Types and constants shared between userland and the kernel.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
 * Each dataset can be one of the following types.  These constants can be
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
 * combined into masks that can be passed to various functions.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
typedef enum {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
	ZFS_TYPE_FILESYSTEM	= 0x1,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
	ZFS_TYPE_SNAPSHOT	= 0x2,
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
    48
	ZFS_TYPE_VOLUME		= 0x4,
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
    49
	ZFS_TYPE_POOL		= 0x8
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
} zfs_type_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    52
#define	ZFS_TYPE_DATASET	\
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    53
	(ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME | ZFS_TYPE_SNAPSHOT)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    54
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
    55
#define	ZAP_MAXNAMELEN 256
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
    56
#define	ZAP_MAXVALUELEN (1024 * 8)
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
    57
#define	ZAP_OLDMAXVALUELEN 1024
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
    58
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
/*
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    60
 * Dataset properties are identified by these constants and must be added to
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    61
 * the end of this list to ensure that external consumers are not affected
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
    62
 * by the change. If you make any changes to this list, be sure to update
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3444
diff changeset
    63
 * the property table in usr/src/common/zfs/zfs_prop.c.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
typedef enum {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
	ZFS_PROP_TYPE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
	ZFS_PROP_CREATION,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
	ZFS_PROP_USED,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
	ZFS_PROP_AVAILABLE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
	ZFS_PROP_REFERENCED,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
	ZFS_PROP_COMPRESSRATIO,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
	ZFS_PROP_MOUNTED,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
	ZFS_PROP_ORIGIN,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
	ZFS_PROP_QUOTA,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
	ZFS_PROP_RESERVATION,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    76
	ZFS_PROP_VOLSIZE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
	ZFS_PROP_VOLBLOCKSIZE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
	ZFS_PROP_RECORDSIZE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
	ZFS_PROP_MOUNTPOINT,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
	ZFS_PROP_SHARENFS,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
	ZFS_PROP_CHECKSUM,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    82
	ZFS_PROP_COMPRESSION,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
	ZFS_PROP_ATIME,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
	ZFS_PROP_DEVICES,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
	ZFS_PROP_EXEC,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
	ZFS_PROP_SETUID,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
	ZFS_PROP_READONLY,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
	ZFS_PROP_ZONED,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
	ZFS_PROP_SNAPDIR,
12164
0eb8d6741e37 PSARC/2010/029 Improved ACL interoperability
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11935
diff changeset
    90
	ZFS_PROP_PRIVATE,		/* not exposed to user, temporary */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
	ZFS_PROP_ACLINHERIT,
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3444
diff changeset
    92
	ZFS_PROP_CREATETXG,		/* not exposed to the user */
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3444
diff changeset
    93
	ZFS_PROP_NAME,			/* not exposed to the user */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2199
diff changeset
    94
	ZFS_PROP_CANMOUNT,
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3444
diff changeset
    95
	ZFS_PROP_ISCSIOPTIONS,		/* not exposed to the user */
3234
28b36f7bbd7e PSARC/2006/638 noxattr ZFS property
ck153898
parents: 3126
diff changeset
    96
	ZFS_PROP_XATTR,
3835
063f0749804a PSARC/2007/121 zfs set copies
ahrens
parents: 3741
diff changeset
    97
	ZFS_PROP_NUMCLONES,		/* not exposed to the user */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
    98
	ZFS_PROP_COPIES,
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
    99
	ZFS_PROP_VERSION,
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   100
	ZFS_PROP_UTF8ONLY,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   101
	ZFS_PROP_NORMALIZE,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   102
	ZFS_PROP_CASE,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   103
	ZFS_PROP_VSCAN,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   104
	ZFS_PROP_NBMAND,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   105
	ZFS_PROP_SHARESMB,
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   106
	ZFS_PROP_REFQUOTA,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   107
	ZFS_PROP_REFRESERVATION,
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6523
diff changeset
   108
	ZFS_PROP_GUID,
7237
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   109
	ZFS_PROP_PRIMARYCACHE,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   110
	ZFS_PROP_SECONDARYCACHE,
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7294
diff changeset
   111
	ZFS_PROP_USEDSNAP,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7294
diff changeset
   112
	ZFS_PROP_USEDDS,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7294
diff changeset
   113
	ZFS_PROP_USEDCHILD,
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7294
diff changeset
   114
	ZFS_PROP_USEDREFRESERV,
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   115
	ZFS_PROP_USERACCOUNTING,	/* not exposed to the user */
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
   116
	ZFS_PROP_STMF_SHAREINFO,	/* not exposed to the user */
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   117
	ZFS_PROP_DEFER_DESTROY,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   118
	ZFS_PROP_USERREFS,
10310
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   119
	ZFS_PROP_LOGBIAS,
10575
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10310
diff changeset
   120
	ZFS_PROP_UNIQUE,		/* not exposed to the user */
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10310
diff changeset
   121
	ZFS_PROP_OBJSETID,		/* not exposed to the user */
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   122
	ZFS_PROP_DEDUP,
10972
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10956
diff changeset
   123
	ZFS_PROP_MLSLABEL,
12294
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
   124
	ZFS_PROP_SYNC,
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4597
diff changeset
   125
	ZFS_NUM_PROPS
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   126
} zfs_prop_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   127
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   128
typedef enum {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   129
	ZFS_PROP_USERUSED,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   130
	ZFS_PROP_USERQUOTA,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   131
	ZFS_PROP_GROUPUSED,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   132
	ZFS_PROP_GROUPQUOTA,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   133
	ZFS_NUM_USERQUOTA_PROPS
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   134
} zfs_userquota_prop_t;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   135
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   136
extern const char *zfs_userquota_prop_prefixes[ZFS_NUM_USERQUOTA_PROPS];
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   137
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   138
/*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   139
 * Pool properties are identified by these constants and must be added to the
7294
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
   140
 * end of this list to ensure that external consumers are not affected
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   141
 * by the change. If you make any changes to this list, be sure to update
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   142
 * the property table in usr/src/common/zfs/zpool_prop.c.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   143
 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   144
typedef enum {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   145
	ZPOOL_PROP_NAME,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   146
	ZPOOL_PROP_SIZE,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   147
	ZPOOL_PROP_CAPACITY,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   148
	ZPOOL_PROP_ALTROOT,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   149
	ZPOOL_PROP_HEALTH,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   150
	ZPOOL_PROP_GUID,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   151
	ZPOOL_PROP_VERSION,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   152
	ZPOOL_PROP_BOOTFS,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   153
	ZPOOL_PROP_DELEGATION,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   154
	ZPOOL_PROP_AUTOREPLACE,
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5331
diff changeset
   155
	ZPOOL_PROP_CACHEFILE,
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5147
diff changeset
   156
	ZPOOL_PROP_FAILUREMODE,
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
   157
	ZPOOL_PROP_LISTSNAPS,
9816
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 9643
diff changeset
   158
	ZPOOL_PROP_AUTOEXPAND,
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   159
	ZPOOL_PROP_DEDUPDITTO,
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   160
	ZPOOL_PROP_DEDUPRATIO,
10956
0c81acaaf614 6897693 deduplication can only go so far
George Wilson <George.Wilson@Sun.COM>
parents: 10922
diff changeset
   161
	ZPOOL_PROP_FREE,
0c81acaaf614 6897693 deduplication can only go so far
George Wilson <George.Wilson@Sun.COM>
parents: 10922
diff changeset
   162
	ZPOOL_PROP_ALLOCATED,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   163
	ZPOOL_NUM_PROPS
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   164
} zpool_prop_t;
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   165
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   166
#define	ZPROP_CONT		-2
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   167
#define	ZPROP_INVAL		-1
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   168
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   169
#define	ZPROP_VALUE		"value"
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   170
#define	ZPROP_SOURCE		"source"
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1354
diff changeset
   171
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   172
typedef enum {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   173
	ZPROP_SRC_NONE = 0x1,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   174
	ZPROP_SRC_DEFAULT = 0x2,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   175
	ZPROP_SRC_TEMPORARY = 0x4,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   176
	ZPROP_SRC_LOCAL = 0x8,
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   177
	ZPROP_SRC_INHERITED = 0x10,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   178
	ZPROP_SRC_RECEIVED = 0x20
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   179
} zprop_source_t;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   180
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   181
#define	ZPROP_SRC_ALL	0x3f
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   182
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   183
#define	ZPROP_SOURCE_VAL_RECVD	"$recvd"
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   184
#define	ZPROP_N_MORE_ERRORS	"N_MORE_ERRORS"
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   185
/*
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   186
 * Dataset flag implemented as a special entry in the props zap object
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   187
 * indicating that the dataset has received properties on or after
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   188
 * SPA_VERSION_RECVD_PROPS. The first such receive blows away local properties
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   189
 * just as it did in earlier versions, and thereafter, local properties are
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   190
 * preserved.
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   191
 */
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   192
#define	ZPROP_HAS_RECVD		"$hasrecvd"
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   193
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   194
typedef enum {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   195
	ZPROP_ERR_NOCLEAR = 0x1, /* failure to clear existing props */
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   196
	ZPROP_ERR_NORESTORE = 0x2 /* failure to restore props on error */
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   197
} zprop_errflags_t;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   198
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   199
typedef int (*zprop_func)(int, void *);
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   200
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   201
/*
7184
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   202
 * Properties to be set on the root file system of a new pool
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   203
 * are stuffed into their own nvlist, which is then included in
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   204
 * the properties nvlist with the pool properties.
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   205
 */
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   206
#define	ZPOOL_ROOTFS_PROPS	"root-props-nvl"
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   207
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7046
diff changeset
   208
/*
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   209
 * Dataset property functions shared between libzfs and kernel.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   210
 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   211
const char *zfs_prop_default_string(zfs_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   212
uint64_t zfs_prop_default_numeric(zfs_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   213
boolean_t zfs_prop_readonly(zfs_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   214
boolean_t zfs_prop_inheritable(zfs_prop_t);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   215
boolean_t zfs_prop_setonce(zfs_prop_t);
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   216
const char *zfs_prop_to_name(zfs_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   217
zfs_prop_t zfs_name_to_prop(const char *);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   218
boolean_t zfs_prop_user(const char *);
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   219
boolean_t zfs_prop_userquota(const char *);
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   220
int zfs_prop_index_to_string(zfs_prop_t, uint64_t, const char **);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   221
int zfs_prop_string_to_index(zfs_prop_t, const char *, uint64_t *);
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   222
uint64_t zfs_prop_random_value(zfs_prop_t, uint64_t seed);
6690
19b5b95523e1 6695219 Running 'zfs get all' on a snapshot should not display the user properties
gw25295
parents: 6643
diff changeset
   223
boolean_t zfs_prop_valid_for_type(int, zfs_type_t);
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   224
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   225
/*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   226
 * Pool property functions shared between libzfs and kernel.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   227
 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   228
zpool_prop_t zpool_name_to_prop(const char *);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   229
const char *zpool_prop_to_name(zpool_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   230
const char *zpool_prop_default_string(zpool_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   231
uint64_t zpool_prop_default_numeric(zpool_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   232
boolean_t zpool_prop_readonly(zpool_prop_t);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   233
int zpool_prop_index_to_string(zpool_prop_t, uint64_t, const char **);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   234
int zpool_prop_string_to_index(zpool_prop_t, const char *, uint64_t *);
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   235
uint64_t zpool_prop_random_value(zpool_prop_t, uint64_t seed);
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   236
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   237
/*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   238
 * Definitions for the Delegation.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   239
 */
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   240
typedef enum {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   241
	ZFS_DELEG_WHO_UNKNOWN = 0,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   242
	ZFS_DELEG_USER = 'u',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   243
	ZFS_DELEG_USER_SETS = 'U',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   244
	ZFS_DELEG_GROUP = 'g',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   245
	ZFS_DELEG_GROUP_SETS = 'G',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   246
	ZFS_DELEG_EVERYONE = 'e',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   247
	ZFS_DELEG_EVERYONE_SETS = 'E',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   248
	ZFS_DELEG_CREATE = 'c',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   249
	ZFS_DELEG_CREATE_SETS = 'C',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   250
	ZFS_DELEG_NAMED_SET = 's',
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   251
	ZFS_DELEG_NAMED_SET_SETS = 'S'
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   252
} zfs_deleg_who_type_t;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   253
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   254
typedef enum {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   255
	ZFS_DELEG_NONE = 0,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   256
	ZFS_DELEG_PERM_LOCAL = 1,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   257
	ZFS_DELEG_PERM_DESCENDENT = 2,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   258
	ZFS_DELEG_PERM_LOCALDESCENDENT = 3,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   259
	ZFS_DELEG_PERM_CREATE = 4
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   260
} zfs_deleg_inherit_t;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   261
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   262
#define	ZFS_DELEG_PERM_UID	"uid"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   263
#define	ZFS_DELEG_PERM_GID	"gid"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   264
#define	ZFS_DELEG_PERM_GROUPS	"groups"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   265
10972
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10956
diff changeset
   266
#define	ZFS_MLSLABEL_DEFAULT	"none"
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10956
diff changeset
   267
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   268
#define	ZFS_SMB_ACL_SRC		"src"
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   269
#define	ZFS_SMB_ACL_TARGET	"target"
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   270
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   271
typedef enum {
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   272
	ZFS_CANMOUNT_OFF = 0,
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   273
	ZFS_CANMOUNT_ON = 1,
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   274
	ZFS_CANMOUNT_NOAUTO = 2
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   275
} zfs_canmount_type_t;
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5498
diff changeset
   276
10310
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   277
typedef enum {
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   278
	ZFS_LOGBIAS_LATENCY = 0,
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   279
	ZFS_LOGBIAS_THROUGHPUT = 1
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   280
} zfs_logbias_op_t;
ba87b3315737 PSARC 2009/423 ZFS logbias property
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 10242
diff changeset
   281
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   282
typedef enum zfs_share_op {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   283
	ZFS_SHARE_NFS = 0,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   284
	ZFS_UNSHARE_NFS = 1,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   285
	ZFS_SHARE_SMB = 2,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   286
	ZFS_UNSHARE_SMB = 3
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   287
} zfs_share_op_t;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   288
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   289
typedef enum zfs_smb_acl_op {
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   290
	ZFS_SMB_ACL_ADD,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   291
	ZFS_SMB_ACL_REMOVE,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   292
	ZFS_SMB_ACL_RENAME,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   293
	ZFS_SMB_ACL_PURGE
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   294
} zfs_smb_acl_op_t;
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   295
7237
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   296
typedef enum zfs_cache_type {
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   297
	ZFS_CACHE_NONE = 0,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   298
	ZFS_CACHE_METADATA = 1,
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   299
	ZFS_CACHE_ALL = 2
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   300
} zfs_cache_type_t;
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   301
12294
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
   302
typedef enum {
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
   303
	ZFS_SYNC_STANDARD = 0,
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
   304
	ZFS_SYNC_ALWAYS = 1,
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
   305
	ZFS_SYNC_DISABLED = 2
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
   306
} zfs_sync_type_t;
2a74b443e6b1 PSARC/2010/108 zil synchronicity
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12164
diff changeset
   307
7237
f47d41541b14 PSARC 2008/393 zfs primarycache and secondarycache properties
ek110237
parents: 7184
diff changeset
   308
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   309
/*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   310
 * On-disk version number.
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1544
diff changeset
   311
 */
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   312
#define	SPA_VERSION_1			1ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   313
#define	SPA_VERSION_2			2ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   314
#define	SPA_VERSION_3			3ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   315
#define	SPA_VERSION_4			4ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   316
#define	SPA_VERSION_5			5ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   317
#define	SPA_VERSION_6			6ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   318
#define	SPA_VERSION_7			7ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   319
#define	SPA_VERSION_8			8ULL
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   320
#define	SPA_VERSION_9			9ULL
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   321
#define	SPA_VERSION_10			10ULL
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   322
#define	SPA_VERSION_11			11ULL
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7237
diff changeset
   323
#define	SPA_VERSION_12			12ULL
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7294
diff changeset
   324
#define	SPA_VERSION_13			13ULL
8053
271f44d3de11 PSARC/2008/659 New ZFS "passthrough-x" ACL inheritance rules
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 7754
diff changeset
   325
#define	SPA_VERSION_14			14ULL
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   326
#define	SPA_VERSION_15			15ULL
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
   327
#define	SPA_VERSION_16			16ULL
10105
17811c723fb4 6854612 triple-parity RAID-Z
Adam Leventhal <adam.leventhal@sun.com>
parents: 9816
diff changeset
   328
#define	SPA_VERSION_17			17ULL
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   329
#define	SPA_VERSION_18			18ULL
10594
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10588
diff changeset
   330
#define	SPA_VERSION_19			19ULL
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   331
#define	SPA_VERSION_20			20ULL
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   332
#define	SPA_VERSION_21			21ULL
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   333
#define	SPA_VERSION_22			22ULL
11670
1d964fb5d948 6595532 ZIL is too talkative
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 11449
diff changeset
   334
#define	SPA_VERSION_23			23ULL
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11876
diff changeset
   335
#define	SPA_VERSION_24			24ULL
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   336
#define	SPA_VERSION_25			25ULL
12470
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
   337
#define	SPA_VERSION_26			26ULL
12839
1eab9192da8b 6844896 recursive snapshots take a long time
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12829
diff changeset
   338
#define	SPA_VERSION_27			27ULL
13049
2511753a6599 6782540 zpool cannot replace a replacing device
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12961
diff changeset
   339
#define	SPA_VERSION_28			28ULL
2511753a6599 6782540 zpool cannot replace a replacing device
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12961
diff changeset
   340
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   341
/*
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 6168
diff changeset
   342
 * When bumping up SPA_VERSION, make sure GRUB ZFS understands the on-disk
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
   343
 * format change. Go to usr/src/grub/grub-0.97/stage2/{zfs-include/, fsys_zfs*},
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   344
 * and do the appropriate changes.  Also bump the version number in
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   345
 * usr/src/grub/capability.
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   346
 */
13049
2511753a6599 6782540 zpool cannot replace a replacing device
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12961
diff changeset
   347
#define	SPA_VERSION			SPA_VERSION_28
2511753a6599 6782540 zpool cannot replace a replacing device
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12961
diff changeset
   348
#define	SPA_VERSION_STRING		"28"
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   349
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   350
/*
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   351
 * Symbolic names for the changes that caused a SPA_VERSION switch.
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   352
 * Used in the code when checking for presence or absence of a feature.
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   353
 * Feel free to define multiple symbolic names for each version if there
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   354
 * were multiple changes to on-disk structures during that version.
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   355
 *
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   356
 * NOTE: When checking the current SPA_VERSION in your code, be sure
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   357
 *       to use spa_version() since it reports the version of the
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   358
 *       last synced uberblock.  Checking the in-flight version can
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   359
 *       be dangerous in some cases.
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
   360
 */
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   361
#define	SPA_VERSION_INITIAL		SPA_VERSION_1
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   362
#define	SPA_VERSION_DITTO_BLOCKS	SPA_VERSION_2
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   363
#define	SPA_VERSION_SPARES		SPA_VERSION_3
10105
17811c723fb4 6854612 triple-parity RAID-Z
Adam Leventhal <adam.leventhal@sun.com>
parents: 9816
diff changeset
   364
#define	SPA_VERSION_RAIDZ2		SPA_VERSION_3
12470
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
   365
#define	SPA_VERSION_BPOBJ_ACCOUNT	SPA_VERSION_3
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   366
#define	SPA_VERSION_RAIDZ_DEFLATE	SPA_VERSION_3
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   367
#define	SPA_VERSION_DNODE_BYTES		SPA_VERSION_3
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   368
#define	SPA_VERSION_ZPOOL_HISTORY	SPA_VERSION_4
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   369
#define	SPA_VERSION_GZIP_COMPRESSION	SPA_VERSION_5
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   370
#define	SPA_VERSION_BOOTFS		SPA_VERSION_6
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   371
#define	SPA_VERSION_SLOGS		SPA_VERSION_7
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4849
diff changeset
   372
#define	SPA_VERSION_DELEGATED_PERMS	SPA_VERSION_8
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   373
#define	SPA_VERSION_FUID		SPA_VERSION_9
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   374
#define	SPA_VERSION_REFRESERVATION	SPA_VERSION_9
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   375
#define	SPA_VERSION_REFQUOTA		SPA_VERSION_9
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   376
#define	SPA_VERSION_UNIQUE_ACCURATE	SPA_VERSION_9
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   377
#define	SPA_VERSION_L2CACHE		SPA_VERSION_10
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   378
#define	SPA_VERSION_NEXT_CLONES		SPA_VERSION_11
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   379
#define	SPA_VERSION_ORIGIN		SPA_VERSION_11
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   380
#define	SPA_VERSION_DSL_SCRUB		SPA_VERSION_11
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7237
diff changeset
   381
#define	SPA_VERSION_SNAP_PROPS		SPA_VERSION_12
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7294
diff changeset
   382
#define	SPA_VERSION_USED_BREAKDOWN	SPA_VERSION_13
8053
271f44d3de11 PSARC/2008/659 New ZFS "passthrough-x" ACL inheritance rules
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 7754
diff changeset
   383
#define	SPA_VERSION_PASSTHROUGH_X	SPA_VERSION_14
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   384
#define	SPA_VERSION_USERSPACE		SPA_VERSION_15
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
   385
#define	SPA_VERSION_STMF_PROP		SPA_VERSION_16
10105
17811c723fb4 6854612 triple-parity RAID-Z
Adam Leventhal <adam.leventhal@sun.com>
parents: 9816
diff changeset
   386
#define	SPA_VERSION_RAIDZ3		SPA_VERSION_17
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   387
#define	SPA_VERSION_USERREFS		SPA_VERSION_18
10594
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10588
diff changeset
   388
#define	SPA_VERSION_HOLES		SPA_VERSION_19
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   389
#define	SPA_VERSION_ZLE_COMPRESSION	SPA_VERSION_20
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10921
diff changeset
   390
#define	SPA_VERSION_DEDUP		SPA_VERSION_21
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   391
#define	SPA_VERSION_RECVD_PROPS		SPA_VERSION_22
11670
1d964fb5d948 6595532 ZIL is too talkative
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 11449
diff changeset
   392
#define	SPA_VERSION_SLIM_ZIL		SPA_VERSION_23
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11876
diff changeset
   393
#define	SPA_VERSION_SA			SPA_VERSION_24
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   394
#define	SPA_VERSION_SCAN		SPA_VERSION_25
12470
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
   395
#define	SPA_VERSION_DIR_CLONES		SPA_VERSION_26
54258108784b 6948890 snapshot deletion can induce pathologically long spa_sync() times
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12296
diff changeset
   396
#define	SPA_VERSION_DEADLISTS		SPA_VERSION_26
12839
1eab9192da8b 6844896 recursive snapshots take a long time
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 12829
diff changeset
   397
#define	SPA_VERSION_FAST_SNAP		SPA_VERSION_27
13049
2511753a6599 6782540 zpool cannot replace a replacing device
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12961
diff changeset
   398
#define	SPA_VERSION_MULTI_REPLACE	SPA_VERSION_28
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   399
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   400
/*
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   401
 * ZPL version - rev'd whenever an incompatible on-disk format change
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   402
 * occurs.  This is independent of SPA/DMU/ZAP versioning.  You must
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   403
 * also update the version_table[] and help message in zfs_prop.c.
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   404
 *
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   405
 * When changing, be sure to teach GRUB how to read the new format!
9643
ffd8e7765f02 6736004 zvols need an additional property for comstar support
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9425
diff changeset
   406
 * See usr/src/grub/grub-0.97/stage2/{zfs-include/,fsys_zfs*}
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   407
 */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   408
#define	ZPL_VERSION_1			1ULL
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   409
#define	ZPL_VERSION_2			2ULL
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   410
#define	ZPL_VERSION_3			3ULL
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   411
#define	ZPL_VERSION_4			4ULL
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11876
diff changeset
   412
#define	ZPL_VERSION_5			5ULL
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11876
diff changeset
   413
#define	ZPL_VERSION			ZPL_VERSION_5
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11876
diff changeset
   414
#define	ZPL_VERSION_STRING		"5"
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   415
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   416
#define	ZPL_VERSION_INITIAL		ZPL_VERSION_1
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   417
#define	ZPL_VERSION_DIRENT_TYPE		ZPL_VERSION_2
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   418
#define	ZPL_VERSION_FUID		ZPL_VERSION_3
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5450
diff changeset
   419
#define	ZPL_VERSION_NORMALIZATION	ZPL_VERSION_3
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5329
diff changeset
   420
#define	ZPL_VERSION_SYSATTR		ZPL_VERSION_3
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   421
#define	ZPL_VERSION_USERSPACE		ZPL_VERSION_4
11935
538c866aaac6 6716117 ZFS needs native system attribute infrastructure
Mark Shellenbaum <Mark.Shellenbaum@Sun.COM>
parents: 11876
diff changeset
   422
#define	ZPL_VERSION_SA			ZPL_VERSION_5
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1544
diff changeset
   423
10921
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   424
/* Rewind request information */
11727
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   425
#define	ZPOOL_NO_REWIND		1  /* No policy - default behavior */
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   426
#define	ZPOOL_NEVER_REWIND	2  /* Do not search for best txg or rewind */
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   427
#define	ZPOOL_TRY_REWIND	4  /* Search for best txg, but do not rewind */
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   428
#define	ZPOOL_DO_REWIND		8  /* Rewind to best txg w/in deferred frees */
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   429
#define	ZPOOL_EXTREME_REWIND	16 /* Allow extreme measures to find best txg */
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   430
#define	ZPOOL_REWIND_MASK	28 /* All the possible rewind bits */
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   431
#define	ZPOOL_REWIND_POLICIES	31 /* All the possible policy bits */
10921
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   432
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   433
typedef struct zpool_rewind_policy {
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   434
	uint32_t	zrp_request;	/* rewind behavior requested */
11727
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   435
	uint64_t	zrp_maxmeta;	/* max acceptable meta-data errors */
497d03ab2824 6900971 zdb rewind behavior needs to be revisited
Victor Latushkin <Victor.Latushkin@Sun.COM>
parents: 11670
diff changeset
   436
	uint64_t	zrp_maxdata;	/* max acceptable data errors */
10921
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   437
	uint64_t	zrp_txg;	/* specific txg to load */
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   438
} zpool_rewind_policy_t;
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   439
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1544
diff changeset
   440
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   441
 * The following are configuration names used in the nvlist describing a pool's
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   442
 * configuration.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   443
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   444
#define	ZPOOL_CONFIG_VERSION		"version"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   445
#define	ZPOOL_CONFIG_POOL_NAME		"name"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   446
#define	ZPOOL_CONFIG_POOL_STATE		"state"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   447
#define	ZPOOL_CONFIG_POOL_TXG		"txg"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   448
#define	ZPOOL_CONFIG_POOL_GUID		"pool_guid"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
#define	ZPOOL_CONFIG_CREATE_TXG		"create_txg"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   450
#define	ZPOOL_CONFIG_TOP_GUID		"top_guid"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   451
#define	ZPOOL_CONFIG_VDEV_TREE		"vdev_tree"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   452
#define	ZPOOL_CONFIG_TYPE		"type"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   453
#define	ZPOOL_CONFIG_CHILDREN		"children"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   454
#define	ZPOOL_CONFIG_ID			"id"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   455
#define	ZPOOL_CONFIG_GUID		"guid"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   456
#define	ZPOOL_CONFIG_PATH		"path"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   457
#define	ZPOOL_CONFIG_DEVID		"devid"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   458
#define	ZPOOL_CONFIG_METASLAB_ARRAY	"metaslab_array"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   459
#define	ZPOOL_CONFIG_METASLAB_SHIFT	"metaslab_shift"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   460
#define	ZPOOL_CONFIG_ASHIFT		"ashift"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   461
#define	ZPOOL_CONFIG_ASIZE		"asize"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   462
#define	ZPOOL_CONFIG_DTL		"DTL"
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   463
#define	ZPOOL_CONFIG_SCAN_STATS		"scan_stats"	/* not stored on disk */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   464
#define	ZPOOL_CONFIG_VDEV_STATS		"vdev_stats"	/* not stored on disk */
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   465
#define	ZPOOL_CONFIG_WHOLE_DISK		"whole_disk"
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   466
#define	ZPOOL_CONFIG_ERRCOUNT		"error_count"
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   467
#define	ZPOOL_CONFIG_NOT_PRESENT	"not_present"
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   468
#define	ZPOOL_CONFIG_SPARES		"spares"
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   469
#define	ZPOOL_CONFIG_IS_SPARE		"is_spare"
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   470
#define	ZPOOL_CONFIG_NPARITY		"nparity"
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   471
#define	ZPOOL_CONFIG_HOSTID		"hostid"
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
   472
#define	ZPOOL_CONFIG_HOSTNAME		"hostname"
12829
0336e913b141 6937608 ZFS DE should ignore ereports prior to pool import
Tim Haley <Tim.Haley@Sun.COM>
parents: 12470
diff changeset
   473
#define	ZPOOL_CONFIG_LOADED_TIME	"initial_load_time"
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   474
#define	ZPOOL_CONFIG_UNSPARE		"unspare"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   475
#define	ZPOOL_CONFIG_PHYS_PATH		"phys_path"
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
   476
#define	ZPOOL_CONFIG_IS_LOG		"is_log"
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   477
#define	ZPOOL_CONFIG_L2CACHE		"l2cache"
10594
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10588
diff changeset
   478
#define	ZPOOL_CONFIG_HOLE_ARRAY		"hole_array"
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10588
diff changeset
   479
#define	ZPOOL_CONFIG_VDEV_CHILDREN	"vdev_children"
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10588
diff changeset
   480
#define	ZPOOL_CONFIG_IS_HOLE		"is_hole"
11149
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   481
#define	ZPOOL_CONFIG_DDT_HISTOGRAM	"ddt_histogram"
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   482
#define	ZPOOL_CONFIG_DDT_OBJ_STATS	"ddt_object_stats"
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   483
#define	ZPOOL_CONFIG_DDT_STATS		"ddt_stats"
11422
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   484
#define	ZPOOL_CONFIG_SPLIT		"splitcfg"
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   485
#define	ZPOOL_CONFIG_ORIG_GUID		"orig_guid"
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   486
#define	ZPOOL_CONFIG_SPLIT_GUID		"split_guid"
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   487
#define	ZPOOL_CONFIG_SPLIT_LIST		"guid_list"
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   488
#define	ZPOOL_CONFIG_REMOVING		"removing"
13049
2511753a6599 6782540 zpool cannot replace a replacing device
Mark J Musante <Mark.Musante@Sun.COM>
parents: 12961
diff changeset
   489
#define	ZPOOL_CONFIG_RESILVERING	"resilvering"
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7538
diff changeset
   490
#define	ZPOOL_CONFIG_SUSPENDED		"suspended"	/* not stored on disk */
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 6168
diff changeset
   491
#define	ZPOOL_CONFIG_TIMESTAMP		"timestamp"	/* not stored on disk */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 6168
diff changeset
   492
#define	ZPOOL_CONFIG_BOOTFS		"bootfs"	/* not stored on disk */
12961
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   493
#define	ZPOOL_CONFIG_MISSING_DEVICES	"missing_vdevs"	/* not stored on disk */
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   494
#define	ZPOOL_CONFIG_LOAD_INFO		"load_info"	/* not stored on disk */
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   495
/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   496
 * The persistent vdev state is stored as separate values rather than a single
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   497
 * 'vdev_state' entry.  This is because a device can be in multiple states, such
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   498
 * as offline and degraded.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   499
 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   500
#define	ZPOOL_CONFIG_OFFLINE		"offline"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   501
#define	ZPOOL_CONFIG_FAULTED		"faulted"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   502
#define	ZPOOL_CONFIG_DEGRADED		"degraded"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   503
#define	ZPOOL_CONFIG_REMOVED		"removed"
9425
e7ffacaec3a8 6799895 spa_add_spares() needs to be protected by config lock
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9396
diff changeset
   504
#define	ZPOOL_CONFIG_FRU		"fru"
10817
7dfde45252f0 6889826 ZFS retire agent should be able to repair pools
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10685
diff changeset
   505
#define	ZPOOL_CONFIG_AUX_STATE		"aux_state"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   506
10921
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   507
/* Rewind policy parameters */
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   508
#define	ZPOOL_REWIND_POLICY		"rewind-policy"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   509
#define	ZPOOL_REWIND_REQUEST		"rewind-request"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   510
#define	ZPOOL_REWIND_REQUEST_TXG	"rewind-request-txg"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   511
#define	ZPOOL_REWIND_META_THRESH	"rewind-meta-thresh"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   512
#define	ZPOOL_REWIND_DATA_THRESH	"rewind-data-thresh"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   513
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   514
/* Rewind data discovered */
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   515
#define	ZPOOL_CONFIG_LOAD_TIME		"rewind_txg_ts"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   516
#define	ZPOOL_CONFIG_LOAD_DATA_ERRORS	"verify_data_errors"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   517
#define	ZPOOL_CONFIG_REWIND_TIME	"seconds_of_rewind"
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   518
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   519
#define	VDEV_TYPE_ROOT			"root"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   520
#define	VDEV_TYPE_MIRROR		"mirror"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   521
#define	VDEV_TYPE_REPLACING		"replacing"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
#define	VDEV_TYPE_RAIDZ			"raidz"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   523
#define	VDEV_TYPE_DISK			"disk"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   524
#define	VDEV_TYPE_FILE			"file"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   525
#define	VDEV_TYPE_MISSING		"missing"
10594
986cb68d2347 6574286 removing a slog doesn't work
George Wilson <George.Wilson@Sun.COM>
parents: 10588
diff changeset
   526
#define	VDEV_TYPE_HOLE			"hole"
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   527
#define	VDEV_TYPE_SPARE			"spare"
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
   528
#define	VDEV_TYPE_LOG			"log"
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   529
#define	VDEV_TYPE_L2CACHE		"l2cache"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   530
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   531
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   532
 * This is needed in userland to report the minimum necessary device size.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   533
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   534
#define	SPA_MINDEVSIZE		(64ULL << 20)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   535
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   536
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   537
 * The location of the pool configuration repository, shared between kernel and
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   538
 * userland.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   539
 */
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6523
diff changeset
   540
#define	ZPOOL_CACHE		"/etc/zfs/zpool.cache"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   541
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   542
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   543
 * vdev states are ordered from least to most healthy.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   544
 * A vdev that's CANT_OPEN or below is considered unusable.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   545
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   546
typedef enum vdev_state {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   547
	VDEV_STATE_UNKNOWN = 0,	/* Uninitialized vdev			*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   548
	VDEV_STATE_CLOSED,	/* Not currently open			*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   549
	VDEV_STATE_OFFLINE,	/* Not allowed to open			*/
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   550
	VDEV_STATE_REMOVED,	/* Explicitly removed from system	*/
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   551
	VDEV_STATE_CANT_OPEN,	/* Tried to open, but failed		*/
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   552
	VDEV_STATE_FAULTED,	/* External request to fault device	*/
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   553
	VDEV_STATE_DEGRADED,	/* Replicated vdev with unhealthy kids	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   554
	VDEV_STATE_HEALTHY	/* Presumed good			*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   555
} vdev_state_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   556
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   557
#define	VDEV_STATE_ONLINE	VDEV_STATE_HEALTHY
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   558
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   559
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   560
 * vdev aux states.  When a vdev is in the CANT_OPEN state, the aux field
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   561
 * of the vdev stats structure uses these constants to distinguish why.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   562
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   563
typedef enum vdev_aux {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   564
	VDEV_AUX_NONE,		/* no error				*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   565
	VDEV_AUX_OPEN_FAILED,	/* ldi_open_*() or vn_open() failed	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   566
	VDEV_AUX_CORRUPT_DATA,	/* bad label or disk contents		*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   567
	VDEV_AUX_NO_REPLICAS,	/* insufficient number of replicas	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   568
	VDEV_AUX_BAD_GUID_SUM,	/* vdev guid sum doesn't match		*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   569
	VDEV_AUX_TOO_SMALL,	/* vdev size is too small		*/
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1544
diff changeset
   570
	VDEV_AUX_BAD_LABEL,	/* the label is OK but invalid		*/
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1544
diff changeset
   571
	VDEV_AUX_VERSION_NEWER,	/* on-disk version is too new		*/
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   572
	VDEV_AUX_VERSION_OLDER,	/* on-disk version is too old		*/
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   573
	VDEV_AUX_SPARED,	/* hot spare used in another pool	*/
6523
c1d2a7f04573 6616739 panic message ZFS: I/O failure (write on <unknown> is not very helpful
ek110237
parents: 6423
diff changeset
   574
	VDEV_AUX_ERR_EXCEEDED,	/* too many errors			*/
7294
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
   575
	VDEV_AUX_IO_FAILURE,	/* experienced I/O failure		*/
10817
7dfde45252f0 6889826 ZFS retire agent should be able to repair pools
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10685
diff changeset
   576
	VDEV_AUX_BAD_LOG,	/* cannot read log chain(s)		*/
11422
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   577
	VDEV_AUX_EXTERNAL,	/* external diagnosis			*/
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   578
	VDEV_AUX_SPLIT_POOL	/* vdev was split off into another pool	*/
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   579
} vdev_aux_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   580
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   581
/*
1352
b7039548de2f 6343802 zpool(1M) should make better use of libdiskmgt
eschrock
parents: 1175
diff changeset
   582
 * pool state.  The following states are written to disk as part of the normal
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   583
 * SPA lifecycle: ACTIVE, EXPORTED, DESTROYED, SPARE, L2CACHE.  The remaining
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   584
 * states are software abstractions used at various levels to communicate
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   585
 * pool state.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   586
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   587
typedef enum pool_state {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   588
	POOL_STATE_ACTIVE = 0,		/* In active use		*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   589
	POOL_STATE_EXPORTED,		/* Explicitly exported		*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   590
	POOL_STATE_DESTROYED,		/* Explicitly destroyed		*/
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   591
	POOL_STATE_SPARE,		/* Reserved for hot spare use	*/
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5378
diff changeset
   592
	POOL_STATE_L2CACHE,		/* Level 2 ARC device		*/
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   593
	POOL_STATE_UNINITIALIZED,	/* Internal spa_t state		*/
1352
b7039548de2f 6343802 zpool(1M) should make better use of libdiskmgt
eschrock
parents: 1175
diff changeset
   594
	POOL_STATE_UNAVAIL,		/* Internal libzfs state	*/
b7039548de2f 6343802 zpool(1M) should make better use of libdiskmgt
eschrock
parents: 1175
diff changeset
   595
	POOL_STATE_POTENTIALLY_ACTIVE	/* Internal libzfs state	*/
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   596
} pool_state_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   597
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   598
/*
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   599
 * Scan Functions.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   600
 */
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   601
typedef enum pool_scan_func {
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   602
	POOL_SCAN_NONE,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   603
	POOL_SCAN_SCRUB,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   604
	POOL_SCAN_RESILVER,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   605
	POOL_SCAN_FUNCS
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   606
} pool_scan_func_t;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   607
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   608
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   609
 * ZIO types.  Needed to interpret vdev statistics below.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   610
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   611
typedef enum zio_type {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   612
	ZIO_TYPE_NULL = 0,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   613
	ZIO_TYPE_READ,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   614
	ZIO_TYPE_WRITE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   615
	ZIO_TYPE_FREE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   616
	ZIO_TYPE_CLAIM,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   617
	ZIO_TYPE_IOCTL,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   618
	ZIO_TYPES
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   619
} zio_type_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   620
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   621
/*
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   622
 * Pool statistics.  Note: all fields should be 64-bit because this
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   623
 * is passed between kernel and userland as an nvlist uint64 array.
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   624
 */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   625
typedef struct pool_scan_stat {
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   626
	/* values stored on disk */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   627
	uint64_t	pss_func;	/* pool_scan_func_t */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   628
	uint64_t	pss_state;	/* dsl_scan_state_t */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   629
	uint64_t	pss_start_time;	/* scan start time */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   630
	uint64_t	pss_end_time;	/* scan end time */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   631
	uint64_t	pss_to_examine;	/* total bytes to scan */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   632
	uint64_t	pss_examined;	/* total examined bytes	*/
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   633
	uint64_t	pss_to_process; /* total bytes to process */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   634
	uint64_t	pss_processed;	/* total processed bytes */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   635
	uint64_t	pss_errors;	/* scan errors	*/
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   636
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   637
	/* values not stored on disk */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   638
	uint64_t	pss_pass_exam;	/* examined bytes per scan pass */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   639
	uint64_t	pss_pass_start;	/* start time of a scan pass */
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   640
} pool_scan_stat_t;
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   641
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   642
typedef enum dsl_scan_state {
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   643
	DSS_NONE,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   644
	DSS_SCANNING,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   645
	DSS_FINISHED,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   646
	DSS_CANCELED,
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   647
	DSS_NUM_STATES
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   648
} dsl_scan_state_t;
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   649
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   650
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   651
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   652
 * Vdev statistics.  Note: all fields should be 64-bit because this
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   653
 * is passed between kernel and userland as an nvlist uint64 array.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   654
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   655
typedef struct vdev_stat {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   656
	hrtime_t	vs_timestamp;		/* time since vdev load	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   657
	uint64_t	vs_state;		/* vdev state		*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   658
	uint64_t	vs_aux;			/* see vdev_aux_t	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   659
	uint64_t	vs_alloc;		/* space allocated	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   660
	uint64_t	vs_space;		/* total capacity	*/
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1775
diff changeset
   661
	uint64_t	vs_dspace;		/* deflated capacity	*/
1175
759d20c7e57b 6366265 attach/replace should allow a new device size at least the min of all devs in a mirror/raidz
lling
parents: 1171
diff changeset
   662
	uint64_t	vs_rsize;		/* replaceable dev size */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   663
	uint64_t	vs_ops[ZIO_TYPES];	/* operation count	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   664
	uint64_t	vs_bytes[ZIO_TYPES];	/* bytes read/written	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   665
	uint64_t	vs_read_errors;		/* read errors		*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   666
	uint64_t	vs_write_errors;	/* write errors		*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   667
	uint64_t	vs_checksum_errors;	/* checksum errors	*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   668
	uint64_t	vs_self_healed;		/* self-healed bytes	*/
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   669
	uint64_t	vs_scan_removing;	/* removing?	*/
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   670
	uint64_t	vs_scan_processed;	/* scan processed bytes	*/
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   671
} vdev_stat_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   672
11149
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   673
/*
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   674
 * DDT statistics.  Note: all fields should be 64-bit because this
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   675
 * is passed between kernel and userland as an nvlist uint64 array.
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   676
 */
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   677
typedef struct ddt_object {
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   678
	uint64_t	ddo_count;	/* number of elments in ddt 	*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   679
	uint64_t	ddo_dspace;	/* size of ddt on disk		*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   680
	uint64_t	ddo_mspace;	/* size of ddt in-core		*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   681
} ddt_object_t;
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   682
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   683
typedef struct ddt_stat {
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   684
	uint64_t	dds_blocks;	/* blocks			*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   685
	uint64_t	dds_lsize;	/* logical size			*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   686
	uint64_t	dds_psize;	/* physical size		*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   687
	uint64_t	dds_dsize;	/* deflated allocated size	*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   688
	uint64_t	dds_ref_blocks;	/* referenced blocks		*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   689
	uint64_t	dds_ref_lsize;	/* referenced lsize * refcnt	*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   690
	uint64_t	dds_ref_psize;	/* referenced psize * refcnt	*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   691
	uint64_t	dds_ref_dsize;	/* referenced dsize * refcnt	*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   692
} ddt_stat_t;
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   693
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   694
typedef struct ddt_histogram {
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   695
	ddt_stat_t	ddh_stat[64];	/* power-of-two histogram buckets */
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   696
} ddt_histogram_t;
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   697
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 6168
diff changeset
   698
#define	ZVOL_DRIVER	"zvol"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   699
#define	ZFS_DRIVER	"zfs"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   700
#define	ZFS_DEV		"/dev/zfs"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   701
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10575
diff changeset
   702
/* general zvol path */
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10575
diff changeset
   703
#define	ZVOL_DIR		"/dev/zvol"
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10575
diff changeset
   704
/* expansion */
9816
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 9643
diff changeset
   705
#define	ZVOL_PSEUDO_DEV		"/devices/pseudo/zfs@0:"
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10575
diff changeset
   706
/* for dump and swap */
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10575
diff changeset
   707
#define	ZVOL_FULL_DEV_DIR	ZVOL_DIR "/dsk/"
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10575
diff changeset
   708
#define	ZVOL_FULL_RDEV_DIR	ZVOL_DIR "/rdsk/"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   709
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   710
#define	ZVOL_PROP_NAME		"name"
11449
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11422
diff changeset
   711
#define	ZVOL_DEFAULT_BLOCKSIZE	8192
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   712
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   713
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   714
 * /dev/zfs ioctl numbers.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   715
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   716
#define	ZFS_IOC		('Z' << 8)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   717
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   718
typedef enum zfs_ioc {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   719
	ZFS_IOC_POOL_CREATE = ZFS_IOC,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   720
	ZFS_IOC_POOL_DESTROY,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   721
	ZFS_IOC_POOL_IMPORT,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   722
	ZFS_IOC_POOL_EXPORT,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   723
	ZFS_IOC_POOL_CONFIGS,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   724
	ZFS_IOC_POOL_STATS,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   725
	ZFS_IOC_POOL_TRYIMPORT,
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   726
	ZFS_IOC_POOL_SCAN,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   727
	ZFS_IOC_POOL_FREEZE,
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1544
diff changeset
   728
	ZFS_IOC_POOL_UPGRADE,
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   729
	ZFS_IOC_POOL_GET_HISTORY,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   730
	ZFS_IOC_VDEV_ADD,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   731
	ZFS_IOC_VDEV_REMOVE,
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   732
	ZFS_IOC_VDEV_SET_STATE,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   733
	ZFS_IOC_VDEV_ATTACH,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   734
	ZFS_IOC_VDEV_DETACH,
1354
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1352
diff changeset
   735
	ZFS_IOC_VDEV_SETPATH,
9425
e7ffacaec3a8 6799895 spa_add_spares() needs to be protected by config lock
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9396
diff changeset
   736
	ZFS_IOC_VDEV_SETFRU,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   737
	ZFS_IOC_OBJSET_STATS,
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5450
diff changeset
   738
	ZFS_IOC_OBJSET_ZPLPROPS,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   739
	ZFS_IOC_DATASET_LIST_NEXT,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   740
	ZFS_IOC_SNAPSHOT_LIST_NEXT,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   741
	ZFS_IOC_SET_PROP,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   742
	ZFS_IOC_CREATE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   743
	ZFS_IOC_DESTROY,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   744
	ZFS_IOC_ROLLBACK,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   745
	ZFS_IOC_RENAME,
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5363
diff changeset
   746
	ZFS_IOC_RECV,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5363
diff changeset
   747
	ZFS_IOC_SEND,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   748
	ZFS_IOC_INJECT_FAULT,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   749
	ZFS_IOC_CLEAR_FAULT,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   750
	ZFS_IOC_INJECT_LIST_NEXT,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   751
	ZFS_IOC_ERROR_LOG,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   752
	ZFS_IOC_CLEAR,
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2082
diff changeset
   753
	ZFS_IOC_PROMOTE,
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2082
diff changeset
   754
	ZFS_IOC_DESTROY_SNAPS,
3444
dc160a70a50d 6410433 'zpool status -v' would be more useful with filenames
ek110237
parents: 3377
diff changeset
   755
	ZFS_IOC_SNAPSHOT,
dc160a70a50d 6410433 'zpool status -v' would be more useful with filenames
ek110237
parents: 3377
diff changeset
   756
	ZFS_IOC_DSOBJ_TO_DSNAME,
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   757
	ZFS_IOC_OBJ_TO_PATH,
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   758
	ZFS_IOC_POOL_SET_PROPS,
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   759
	ZFS_IOC_POOL_GET_PROPS,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   760
	ZFS_IOC_SET_FSACL,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   761
	ZFS_IOC_GET_FSACL,
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   762
	ZFS_IOC_SHARE,
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8053
diff changeset
   763
	ZFS_IOC_INHERIT_PROP,
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   764
	ZFS_IOC_SMB_ACL,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   765
	ZFS_IOC_USERSPACE_ONE,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   766
	ZFS_IOC_USERSPACE_MANY,
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   767
	ZFS_IOC_USERSPACE_UPGRADE,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   768
	ZFS_IOC_HOLD,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   769
	ZFS_IOC_RELEASE,
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10972
diff changeset
   770
	ZFS_IOC_GET_HOLDS,
11422
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   771
	ZFS_IOC_OBJSET_RECVD_PROPS,
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   772
	ZFS_IOC_VDEV_SPLIT
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   773
} zfs_ioc_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   774
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   775
/*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   776
 * Internal SPA load state.  Used by FMA diagnosis engine.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   777
 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   778
typedef enum {
11149
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   779
	SPA_LOAD_NONE,		/* no load in progress	*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   780
	SPA_LOAD_OPEN,		/* normal open		*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   781
	SPA_LOAD_IMPORT,	/* import in progress	*/
10921
8aac17999e4d PSARC 2009/479 zpool recovery support
Tim Haley <Tim.Haley@Sun.COM>
parents: 10817
diff changeset
   782
	SPA_LOAD_TRYIMPORT,	/* tryimport in progress */
11149
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   783
	SPA_LOAD_RECOVER,	/* recovery requested	*/
8bad7424e2c2 6903731 need userland dedup stats
George Wilson <George.Wilson@Sun.COM>
parents: 11022
diff changeset
   784
	SPA_LOAD_ERROR		/* load failed		*/
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   785
} spa_load_state_t;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1485
diff changeset
   786
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2199
diff changeset
   787
/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2199
diff changeset
   788
 * Bookmark name values.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2199
diff changeset
   789
 */
3444
dc160a70a50d 6410433 'zpool status -v' would be more useful with filenames
ek110237
parents: 3377
diff changeset
   790
#define	ZPOOL_ERR_LIST		"error list"
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2199
diff changeset
   791
#define	ZPOOL_ERR_DATASET	"dataset"
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2199
diff changeset
   792
#define	ZPOOL_ERR_OBJECT	"object"
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2199
diff changeset
   793
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   794
#define	HIS_MAX_RECORD_LEN	(MAXPATHLEN + MAXPATHLEN + 1)
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   795
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   796
/*
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   797
 * The following are names used in the nvlist describing
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   798
 * the pool's history log.
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   799
 */
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   800
#define	ZPOOL_HIST_RECORD	"history record"
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   801
#define	ZPOOL_HIST_TIME		"history time"
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   802
#define	ZPOOL_HIST_CMD		"history command"
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   803
#define	ZPOOL_HIST_WHO		"history who"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   804
#define	ZPOOL_HIST_ZONE		"history zone"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   805
#define	ZPOOL_HIST_HOST		"history hostname"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   806
#define	ZPOOL_HIST_TXG		"history txg"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   807
#define	ZPOOL_HIST_INT_EVENT	"history internal event"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   808
#define	ZPOOL_HIST_INT_STR	"history internal str"
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2717
diff changeset
   809
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   810
/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   811
 * Flags for ZFS_IOC_VDEV_SET_STATE
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   812
 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   813
#define	ZFS_ONLINE_CHECKREMOVE	0x1
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   814
#define	ZFS_ONLINE_UNSPARE	0x2
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   815
#define	ZFS_ONLINE_FORCEFAULT	0x4
9816
847676ec1c5b PSARC 2008/353 zpool autoexpand property
George Wilson <George.Wilson@Sun.COM>
parents: 9643
diff changeset
   816
#define	ZFS_ONLINE_EXPAND	0x8
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   817
#define	ZFS_OFFLINE_TEMPORARY	0x1
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   818
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   819
/*
12961
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   820
 * Flags for ZFS_IOC_POOL_IMPORT
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   821
 */
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   822
#define	ZFS_IMPORT_NORMAL	0x0
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   823
#define	ZFS_IMPORT_VERBATIM	0x1
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   824
#define	ZFS_IMPORT_ANY_HOST	0x2
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   825
#define	ZFS_IMPORT_MISSING_LOG	0x4
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   826
b521d551715f 6733267 Allow a pool to be imported with a missing slog
George Wilson <George.Wilson@Sun.COM>
parents: 12839
diff changeset
   827
/*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   828
 * Sysevent payload members.  ZFS will generate the following sysevents with the
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   829
 * given payloads:
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   830
 *
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   831
 *	ESC_ZFS_RESILVER_START
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   832
 *	ESC_ZFS_RESILVER_END
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   833
 *	ESC_ZFS_POOL_DESTROY
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   834
 *
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   835
 *		ZFS_EV_POOL_NAME	DATA_TYPE_STRING
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   836
 *		ZFS_EV_POOL_GUID	DATA_TYPE_UINT64
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   837
 *
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   838
 *	ESC_ZFS_VDEV_REMOVE
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   839
 *	ESC_ZFS_VDEV_CLEAR
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   840
 *	ESC_ZFS_VDEV_CHECK
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   841
 *
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   842
 *		ZFS_EV_POOL_NAME	DATA_TYPE_STRING
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   843
 *		ZFS_EV_POOL_GUID	DATA_TYPE_UINT64
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   844
 *		ZFS_EV_VDEV_PATH	DATA_TYPE_STRING	(optional)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   845
 *		ZFS_EV_VDEV_GUID	DATA_TYPE_UINT64
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   846
 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   847
#define	ZFS_EV_POOL_NAME	"pool_name"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   848
#define	ZFS_EV_POOL_GUID	"pool_guid"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   849
#define	ZFS_EV_VDEV_PATH	"vdev_path"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   850
#define	ZFS_EV_VDEV_GUID	"vdev_guid"
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 3975
diff changeset
   851
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   852
/*
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   853
 * Note: This is encoded on-disk, so new events must be added to the
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   854
 * end, and unused events can not be removed.  Be sure to edit
10685
931790026ac6 6846163 ZFS continues to use faulted logzilla, bringing system to a crawl
George Wilson <George.Wilson@Sun.COM>
parents: 10594
diff changeset
   855
 * libzfs_pool.c: hist_event_table[].
7046
361307ae060d 6343667 scrub/resilver has to start over when a snapshot is taken
ahrens
parents: 6690
diff changeset
   856
 */
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   857
typedef enum history_internal_events {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   858
	LOG_NO_EVENT = 0,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   859
	LOG_POOL_CREATE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   860
	LOG_POOL_VDEV_ADD,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   861
	LOG_POOL_REMOVE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   862
	LOG_POOL_DESTROY,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   863
	LOG_POOL_EXPORT,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   864
	LOG_POOL_IMPORT,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   865
	LOG_POOL_VDEV_ATTACH,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   866
	LOG_POOL_VDEV_REPLACE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   867
	LOG_POOL_VDEV_DETACH,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   868
	LOG_POOL_VDEV_ONLINE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   869
	LOG_POOL_VDEV_OFFLINE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   870
	LOG_POOL_UPGRADE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   871
	LOG_POOL_CLEAR,
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   872
	LOG_POOL_SCAN,
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   873
	LOG_POOL_PROPSET,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   874
	LOG_DS_CREATE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   875
	LOG_DS_CLONE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   876
	LOG_DS_DESTROY,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   877
	LOG_DS_DESTROY_BEGIN,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   878
	LOG_DS_INHERIT,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   879
	LOG_DS_PROPSET,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   880
	LOG_DS_QUOTA,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   881
	LOG_DS_PERM_UPDATE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   882
	LOG_DS_PERM_REMOVE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   883
	LOG_DS_PERM_WHO_REMOVE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   884
	LOG_DS_PROMOTE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   885
	LOG_DS_RECEIVE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   886
	LOG_DS_RENAME,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   887
	LOG_DS_RESERVATION,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   888
	LOG_DS_REPLAY_INC_SYNC,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   889
	LOG_DS_REPLAY_FULL_SYNC,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   890
	LOG_DS_ROLLBACK,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   891
	LOG_DS_SNAPSHOT,
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   892
	LOG_DS_UPGRADE,
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   893
	LOG_DS_REFQUOTA,
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   894
	LOG_DS_REFRESERV,
12296
7cf402a7f374 6675946 'zpool status' should show the progress of resilvering for individual disk.
Lin Ling <Lin.Ling@Sun.COM>
parents: 12294
diff changeset
   895
	LOG_POOL_SCAN_DONE,
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   896
	LOG_DS_USER_HOLD,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10105
diff changeset
   897
	LOG_DS_USER_RELEASE,
11422
42768837421d PSARC/2009/511 zpool split
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11149
diff changeset
   898
	LOG_POOL_SPLIT,
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   899
	LOG_END
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   900
} history_internal_events_t;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
   901
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   902
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   903
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   904
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   905
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   906
#endif	/* _SYS_FS_ZFS_H */