annotate usr/src/uts/common/fs/zfs/spa.c @ 5913:a77f8ad2ce63

6575965 panic/thread=2a1016b5ca0: BAD TRAP: type=9 rp=1858500 addr=0 mmu_fsr=0, really, truly out of space 6600361 some kcondvars in the ZIL aren't being init'd/destroyed
author perrin
date Fri, 25 Jan 2008 14:29:11 -0800
parents fe556dc3c14d
children 02e692d1cb28
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
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
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
5 * Common Development and Distribution License (the "License").
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
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 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
21
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
22 /*
5756
05eb4c1ff492 6585441 spa_event_notify() doesn't pass its attributes
eschrock
parents: 5688
diff changeset
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
24 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
25 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
26
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
27 #pragma ident "%Z%%M% %I% %E% SMI"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
28
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
29 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
30 * This file contains all the routines used when modifying on-disk SPA state.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
31 * This includes opening, importing, destroying, exporting a pool, and syncing a
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
32 * pool.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
33 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
34
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
35 #include <sys/zfs_context.h>
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
36 #include <sys/fm/fs/zfs.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
37 #include <sys/spa_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
38 #include <sys/zio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
39 #include <sys/zio_checksum.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
40 #include <sys/zio_compress.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
41 #include <sys/dmu.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
42 #include <sys/dmu_tx.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
43 #include <sys/zap.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
44 #include <sys/zil.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
45 #include <sys/vdev_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
46 #include <sys/metaslab.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
47 #include <sys/uberblock_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
48 #include <sys/txg.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
49 #include <sys/avl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
50 #include <sys/dmu_traverse.h>
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
51 #include <sys/dmu_objset.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
52 #include <sys/unique.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
53 #include <sys/dsl_pool.h>
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
54 #include <sys/dsl_dataset.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
55 #include <sys/dsl_dir.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
56 #include <sys/dsl_prop.h>
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
57 #include <sys/dsl_synctask.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
58 #include <sys/fs/zfs.h>
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
59 #include <sys/arc.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
60 #include <sys/callb.h>
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
61 #include <sys/systeminfo.h>
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
62 #include <sys/sunddi.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
63
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
64 #include "zfs_prop.h"
5913
a77f8ad2ce63 6575965 panic/thread=2a1016b5ca0: BAD TRAP: type=9 rp=1858500 addr=0 mmu_fsr=0, really, truly out of space
perrin
parents: 5886
diff changeset
65 #include "zfs_comutil.h"
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
66
2986
c782fcf7a319 6485204 more tuneable tweakin
ek110237
parents: 2926
diff changeset
67 int zio_taskq_threads = 8;
c782fcf7a319 6485204 more tuneable tweakin
ek110237
parents: 2926
diff changeset
68
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
69 static void spa_sync_props(void *arg1, void *arg2, cred_t *cr, dmu_tx_t *tx);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
70
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
71 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
72 * ==========================================================================
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
73 * SPA properties routines
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
74 * ==========================================================================
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
75 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
76
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
77 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
78 * Add a (source=src, propname=propval) list to an nvlist.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
79 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
80 static int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
81 spa_prop_add_list(nvlist_t *nvl, zpool_prop_t prop, char *strval,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
82 uint64_t intval, zprop_source_t src)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
83 {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
84 const char *propname = zpool_prop_to_name(prop);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
85 nvlist_t *propval;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
86 int err = 0;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
87
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
88 if (err = nvlist_alloc(&propval, NV_UNIQUE_NAME, KM_SLEEP))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
89 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
90
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
91 if (err = nvlist_add_uint64(propval, ZPROP_SOURCE, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
92 goto out;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
93
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
94 if (strval != NULL) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
95 if (err = nvlist_add_string(propval, ZPROP_VALUE, strval))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
96 goto out;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
97 } else {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
98 if (err = nvlist_add_uint64(propval, ZPROP_VALUE, intval))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
99 goto out;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
100 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
101
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
102 err = nvlist_add_nvlist(nvl, propname, propval);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
103 out:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
104 nvlist_free(propval);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
105 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
106 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
107
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
108 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
109 * Get property values from the spa configuration.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
110 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
111 static int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
112 spa_prop_get_config(spa_t *spa, nvlist_t **nvp)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
113 {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
114 uint64_t size = spa_get_space(spa);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
115 uint64_t used = spa_get_alloc(spa);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
116 uint64_t cap, version;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
117 zprop_source_t src = ZPROP_SRC_NONE;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
118 int err;
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
119 char *cachefile;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
120 size_t len;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
121
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
122 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
123 * readonly properties
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
124 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
125 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_NAME, spa->spa_name,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
126 0, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
127 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
128
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
129 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_SIZE, NULL, size, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
130 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
131
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
132 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_USED, NULL, used, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
133 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
134
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
135 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_AVAILABLE, NULL,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
136 size - used, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
137 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
138
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
139 cap = (size == 0) ? 0 : (used * 100 / size);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
140 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_CAPACITY, NULL, cap, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
141 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
142
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
143 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_GUID, NULL,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
144 spa_guid(spa), src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
145 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
146
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
147 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_HEALTH, NULL,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
148 spa->spa_root_vdev->vdev_state, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
149 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
150
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
151 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
152 * settable properties that are not stored in the pool property object.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
153 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
154 version = spa_version(spa);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
155 if (version == zpool_prop_default_numeric(ZPOOL_PROP_VERSION))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
156 src = ZPROP_SRC_DEFAULT;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
157 else
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
158 src = ZPROP_SRC_LOCAL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
159 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_VERSION, NULL,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
160 version, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
161 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
162
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
163 if (spa->spa_root != NULL) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
164 src = ZPROP_SRC_LOCAL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
165 if (err = spa_prop_add_list(*nvp, ZPOOL_PROP_ALTROOT,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
166 spa->spa_root, 0, src))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
167 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
168 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
169
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
170 if (spa->spa_config_dir != NULL) {
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
171 if (strcmp(spa->spa_config_dir, "none") == 0) {
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
172 err = spa_prop_add_list(*nvp, ZPOOL_PROP_CACHEFILE,
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
173 spa->spa_config_dir, 0, ZPROP_SRC_LOCAL);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
174 } else {
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
175 len = strlen(spa->spa_config_dir) +
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
176 strlen(spa->spa_config_file) + 2;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
177 cachefile = kmem_alloc(len, KM_SLEEP);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
178 (void) snprintf(cachefile, len, "%s/%s",
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
179 spa->spa_config_dir, spa->spa_config_file);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
180 err = spa_prop_add_list(*nvp, ZPOOL_PROP_CACHEFILE,
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
181 cachefile, 0, ZPROP_SRC_LOCAL);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
182 kmem_free(cachefile, len);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
183 }
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
184
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
185 if (err)
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
186 return (err);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
187 }
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
188
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
189 return (0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
190 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
191
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
192 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
193 * Get zpool property values.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
194 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
195 int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
196 spa_prop_get(spa_t *spa, nvlist_t **nvp)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
197 {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
198 zap_cursor_t zc;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
199 zap_attribute_t za;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
200 objset_t *mos = spa->spa_meta_objset;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
201 int err;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
202
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
203 if (err = nvlist_alloc(nvp, NV_UNIQUE_NAME, KM_SLEEP))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
204 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
205
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
206 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
207 * Get properties from the spa config.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
208 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
209 if (err = spa_prop_get_config(spa, nvp))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
210 goto out;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
211
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
212 mutex_enter(&spa->spa_props_lock);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
213 /* If no pool property object, no more prop to get. */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
214 if (spa->spa_pool_props_object == 0) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
215 mutex_exit(&spa->spa_props_lock);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
216 return (0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
217 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
218
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
219 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
220 * Get properties from the MOS pool property object.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
221 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
222 for (zap_cursor_init(&zc, mos, spa->spa_pool_props_object);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
223 (err = zap_cursor_retrieve(&zc, &za)) == 0;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
224 zap_cursor_advance(&zc)) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
225 uint64_t intval = 0;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
226 char *strval = NULL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
227 zprop_source_t src = ZPROP_SRC_DEFAULT;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
228 zpool_prop_t prop;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
229
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
230 if ((prop = zpool_name_to_prop(za.za_name)) == ZPROP_INVAL)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
231 continue;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
232
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
233 switch (za.za_integer_length) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
234 case 8:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
235 /* integer property */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
236 if (za.za_first_integer !=
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
237 zpool_prop_default_numeric(prop))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
238 src = ZPROP_SRC_LOCAL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
239
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
240 if (prop == ZPOOL_PROP_BOOTFS) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
241 dsl_pool_t *dp;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
242 dsl_dataset_t *ds = NULL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
243
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
244 dp = spa_get_dsl(spa);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
245 rw_enter(&dp->dp_config_rwlock, RW_READER);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
246 if (err = dsl_dataset_open_obj(dp,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
247 za.za_first_integer, NULL, DS_MODE_NONE,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
248 FTAG, &ds)) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
249 rw_exit(&dp->dp_config_rwlock);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
250 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
251 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
252
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
253 strval = kmem_alloc(
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
254 MAXNAMELEN + strlen(MOS_DIR_NAME) + 1,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
255 KM_SLEEP);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
256 dsl_dataset_name(ds, strval);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
257 dsl_dataset_close(ds, DS_MODE_NONE, FTAG);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
258 rw_exit(&dp->dp_config_rwlock);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
259 } else {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
260 strval = NULL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
261 intval = za.za_first_integer;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
262 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
263
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
264 err = spa_prop_add_list(*nvp, prop, strval,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
265 intval, src);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
266
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
267 if (strval != NULL)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
268 kmem_free(strval,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
269 MAXNAMELEN + strlen(MOS_DIR_NAME) + 1);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
270
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
271 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
272
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
273 case 1:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
274 /* string property */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
275 strval = kmem_alloc(za.za_num_integers, KM_SLEEP);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
276 err = zap_lookup(mos, spa->spa_pool_props_object,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
277 za.za_name, 1, za.za_num_integers, strval);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
278 if (err) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
279 kmem_free(strval, za.za_num_integers);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
280 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
281 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
282 err = spa_prop_add_list(*nvp, prop, strval, 0, src);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
283 kmem_free(strval, za.za_num_integers);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
284 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
285
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
286 default:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
287 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
288 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
289 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
290 zap_cursor_fini(&zc);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
291 mutex_exit(&spa->spa_props_lock);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
292 out:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
293 if (err && err != ENOENT) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
294 nvlist_free(*nvp);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
295 return (err);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
296 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
297
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
298 return (0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
299 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
300
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
301 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
302 * Validate the given pool properties nvlist and modify the list
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
303 * for the property values to be set.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
304 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
305 static int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
306 spa_prop_validate(spa_t *spa, nvlist_t *props)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
307 {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
308 nvpair_t *elem;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
309 int error = 0, reset_bootfs = 0;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
310 uint64_t objnum;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
311
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
312 elem = NULL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
313 while ((elem = nvlist_next_nvpair(props, elem)) != NULL) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
314 zpool_prop_t prop;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
315 char *propname, *strval;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
316 uint64_t intval;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
317 vdev_t *rvdev;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
318 char *vdev_type;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
319 objset_t *os;
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
320 char *slash;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
321
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
322 propname = nvpair_name(elem);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
323
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
324 if ((prop = zpool_name_to_prop(propname)) == ZPROP_INVAL)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
325 return (EINVAL);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
326
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
327 switch (prop) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
328 case ZPOOL_PROP_VERSION:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
329 error = nvpair_value_uint64(elem, &intval);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
330 if (!error &&
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
331 (intval < spa_version(spa) || intval > SPA_VERSION))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
332 error = EINVAL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
333 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
334
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
335 case ZPOOL_PROP_DELEGATION:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
336 case ZPOOL_PROP_AUTOREPLACE:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
337 error = nvpair_value_uint64(elem, &intval);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
338 if (!error && intval > 1)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
339 error = EINVAL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
340 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
341
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
342 case ZPOOL_PROP_BOOTFS:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
343 if (spa_version(spa) < SPA_VERSION_BOOTFS) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
344 error = ENOTSUP;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
345 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
346 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
347
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
348 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
349 * A bootable filesystem can not be on a RAIDZ pool
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
350 * nor a striped pool with more than 1 device.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
351 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
352 rvdev = spa->spa_root_vdev;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
353 vdev_type =
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
354 rvdev->vdev_child[0]->vdev_ops->vdev_op_type;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
355 if (rvdev->vdev_children > 1 ||
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
356 strcmp(vdev_type, VDEV_TYPE_RAIDZ) == 0 ||
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
357 strcmp(vdev_type, VDEV_TYPE_MISSING) == 0) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
358 error = ENOTSUP;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
359 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
360 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
361
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
362 reset_bootfs = 1;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
363
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
364 error = nvpair_value_string(elem, &strval);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
365
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
366 if (!error) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
367 if (strval == NULL || strval[0] == '\0') {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
368 objnum = zpool_prop_default_numeric(
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
369 ZPOOL_PROP_BOOTFS);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
370 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
371 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
372
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
373 if (error = dmu_objset_open(strval, DMU_OST_ZFS,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
374 DS_MODE_STANDARD | DS_MODE_READONLY, &os))
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
375 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
376 objnum = dmu_objset_id(os);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
377 dmu_objset_close(os);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
378 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
379 break;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
380 case ZPOOL_PROP_FAILUREMODE:
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
381 error = nvpair_value_uint64(elem, &intval);
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
382 if (!error && (intval < ZIO_FAILURE_MODE_WAIT ||
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
383 intval > ZIO_FAILURE_MODE_PANIC))
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
384 error = EINVAL;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
385
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
386 /*
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
387 * This is a special case which only occurs when
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
388 * the pool has completely failed. This allows
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
389 * the user to change the in-core failmode property
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
390 * without syncing it out to disk (I/Os might
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
391 * currently be blocked). We do this by returning
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
392 * EIO to the caller (spa_prop_set) to trick it
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
393 * into thinking we encountered a property validation
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
394 * error.
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
395 */
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
396 if (!error && spa_state(spa) == POOL_STATE_IO_FAILURE) {
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
397 spa->spa_failmode = intval;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
398 error = EIO;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
399 }
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
400 break;
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
401
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
402 case ZPOOL_PROP_CACHEFILE:
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
403 if ((error = nvpair_value_string(elem, &strval)) != 0)
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
404 break;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
405
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
406 if (strval[0] == '\0')
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
407 break;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
408
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
409 if (strcmp(strval, "none") == 0)
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
410 break;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
411
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
412 if (strval[0] != '/') {
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
413 error = EINVAL;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
414 break;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
415 }
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
416
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
417 slash = strrchr(strval, '/');
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
418 ASSERT(slash != NULL);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
419
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
420 if (slash[1] == '\0' || strcmp(slash, "/.") == 0 ||
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
421 strcmp(slash, "/..") == 0)
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
422 error = EINVAL;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
423 break;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
424 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
425
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
426 if (error)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
427 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
428 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
429
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
430 if (!error && reset_bootfs) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
431 error = nvlist_remove(props,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
432 zpool_prop_to_name(ZPOOL_PROP_BOOTFS), DATA_TYPE_STRING);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
433
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
434 if (!error) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
435 error = nvlist_add_uint64(props,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
436 zpool_prop_to_name(ZPOOL_PROP_BOOTFS), objnum);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
437 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
438 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
439
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
440 return (error);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
441 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
442
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
443 int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
444 spa_prop_set(spa_t *spa, nvlist_t *nvp)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
445 {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
446 int error;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
447
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
448 if ((error = spa_prop_validate(spa, nvp)) != 0)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
449 return (error);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
450
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
451 return (dsl_sync_task_do(spa_get_dsl(spa), NULL, spa_sync_props,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
452 spa, nvp, 3));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
453 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
454
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
455 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
456 * If the bootfs property value is dsobj, clear it.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
457 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
458 void
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
459 spa_prop_clear_bootfs(spa_t *spa, uint64_t dsobj, dmu_tx_t *tx)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
460 {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
461 if (spa->spa_bootfs == dsobj && spa->spa_pool_props_object != 0) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
462 VERIFY(zap_remove(spa->spa_meta_objset,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
463 spa->spa_pool_props_object,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
464 zpool_prop_to_name(ZPOOL_PROP_BOOTFS), tx) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
465 spa->spa_bootfs = 0;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
466 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
467 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
468
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
469 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
470 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
471 * SPA state manipulation (open/create/destroy/import/export)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
472 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
473 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
474
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
475 static int
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
476 spa_error_entry_compare(const void *a, const void *b)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
477 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
478 spa_error_entry_t *sa = (spa_error_entry_t *)a;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
479 spa_error_entry_t *sb = (spa_error_entry_t *)b;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
480 int ret;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
481
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
482 ret = bcmp(&sa->se_bookmark, &sb->se_bookmark,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
483 sizeof (zbookmark_t));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
484
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
485 if (ret < 0)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
486 return (-1);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
487 else if (ret > 0)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
488 return (1);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
489 else
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
490 return (0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
491 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
492
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
493 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
494 * Utility function which retrieves copies of the current logs and
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
495 * re-initializes them in the process.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
496 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
497 void
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
498 spa_get_errlists(spa_t *spa, avl_tree_t *last, avl_tree_t *scrub)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
499 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
500 ASSERT(MUTEX_HELD(&spa->spa_errlist_lock));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
501
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
502 bcopy(&spa->spa_errlist_last, last, sizeof (avl_tree_t));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
503 bcopy(&spa->spa_errlist_scrub, scrub, sizeof (avl_tree_t));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
504
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
505 avl_create(&spa->spa_errlist_scrub,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
506 spa_error_entry_compare, sizeof (spa_error_entry_t),
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
507 offsetof(spa_error_entry_t, se_avl));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
508 avl_create(&spa->spa_errlist_last,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
509 spa_error_entry_compare, sizeof (spa_error_entry_t),
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
510 offsetof(spa_error_entry_t, se_avl));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
511 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
512
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
513 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
514 * Activate an uninitialized pool.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
515 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
516 static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
517 spa_activate(spa_t *spa)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
518 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
519 int t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
520
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
521 ASSERT(spa->spa_state == POOL_STATE_UNINITIALIZED);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
522
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
523 spa->spa_state = POOL_STATE_ACTIVE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
524
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
525 spa->spa_normal_class = metaslab_class_create();
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
526 spa->spa_log_class = metaslab_class_create();
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
527
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
528 for (t = 0; t < ZIO_TYPES; t++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
529 spa->spa_zio_issue_taskq[t] = taskq_create("spa_zio_issue",
2986
c782fcf7a319 6485204 more tuneable tweakin
ek110237
parents: 2926
diff changeset
530 zio_taskq_threads, maxclsyspri, 50, INT_MAX,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
531 TASKQ_PREPOPULATE);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
532 spa->spa_zio_intr_taskq[t] = taskq_create("spa_zio_intr",
2986
c782fcf7a319 6485204 more tuneable tweakin
ek110237
parents: 2926
diff changeset
533 zio_taskq_threads, maxclsyspri, 50, INT_MAX,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
534 TASKQ_PREPOPULATE);
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 list_create(&spa->spa_dirty_list, sizeof (vdev_t),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
538 offsetof(vdev_t, vdev_dirty_node));
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
539 list_create(&spa->spa_zio_list, sizeof (zio_t),
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
540 offsetof(zio_t, zio_link_node));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
541
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
542 txg_list_create(&spa->spa_vdev_txg_list,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
543 offsetof(struct vdev, vdev_txg_node));
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
545 avl_create(&spa->spa_errlist_scrub,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
546 spa_error_entry_compare, sizeof (spa_error_entry_t),
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
547 offsetof(spa_error_entry_t, se_avl));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
548 avl_create(&spa->spa_errlist_last,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
549 spa_error_entry_compare, sizeof (spa_error_entry_t),
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
550 offsetof(spa_error_entry_t, se_avl));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
551 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
552
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
553 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
554 * Opposite of spa_activate().
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
555 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
556 static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
557 spa_deactivate(spa_t *spa)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
558 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
559 int t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
560
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
561 ASSERT(spa->spa_sync_on == B_FALSE);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
562 ASSERT(spa->spa_dsl_pool == NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
563 ASSERT(spa->spa_root_vdev == NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
564
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
565 ASSERT(spa->spa_state != POOL_STATE_UNINITIALIZED);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
566
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
567 txg_list_destroy(&spa->spa_vdev_txg_list);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
568
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
569 list_destroy(&spa->spa_dirty_list);
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
570 list_destroy(&spa->spa_zio_list);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
571
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
572 for (t = 0; t < ZIO_TYPES; t++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
573 taskq_destroy(spa->spa_zio_issue_taskq[t]);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
574 taskq_destroy(spa->spa_zio_intr_taskq[t]);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
575 spa->spa_zio_issue_taskq[t] = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
576 spa->spa_zio_intr_taskq[t] = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
577 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
578
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
579 metaslab_class_destroy(spa->spa_normal_class);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
580 spa->spa_normal_class = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
581
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
582 metaslab_class_destroy(spa->spa_log_class);
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
583 spa->spa_log_class = NULL;
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
584
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
585 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
586 * If this was part of an import or the open otherwise failed, we may
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
587 * still have errors left in the queues. Empty them just in case.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
588 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
589 spa_errlog_drain(spa);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
590
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
591 avl_destroy(&spa->spa_errlist_scrub);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
592 avl_destroy(&spa->spa_errlist_last);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
593
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
594 spa->spa_state = POOL_STATE_UNINITIALIZED;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
595 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
596
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
597 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
598 * Verify a pool configuration, and construct the vdev tree appropriately. This
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
599 * will create all the necessary vdevs in the appropriate layout, with each vdev
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
600 * in the CLOSED state. This will prep the pool before open/creation/import.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
601 * All vdev validation is done by the vdev_alloc() routine.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
602 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
603 static int
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
604 spa_config_parse(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
605 uint_t id, int atype)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
606 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
607 nvlist_t **child;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
608 uint_t c, children;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
609 int error;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
610
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
611 if ((error = vdev_alloc(spa, vdp, nv, parent, id, atype)) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
612 return (error);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
613
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
614 if ((*vdp)->vdev_ops->vdev_op_leaf)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
615 return (0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
616
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
617 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
618 &child, &children) != 0) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
619 vdev_free(*vdp);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
620 *vdp = NULL;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
621 return (EINVAL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
622 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
623
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
624 for (c = 0; c < children; c++) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
625 vdev_t *vd;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
626 if ((error = spa_config_parse(spa, &vd, child[c], *vdp, c,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
627 atype)) != 0) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
628 vdev_free(*vdp);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
629 *vdp = NULL;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
630 return (error);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
631 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
632 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
633
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
634 ASSERT(*vdp != NULL);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
635
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
636 return (0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
637 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
638
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
639 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
640 * Opposite of spa_load().
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
641 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
642 static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
643 spa_unload(spa_t *spa)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
644 {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
645 int i;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
646
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
647 /*
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
648 * Stop async tasks.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
649 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
650 spa_async_suspend(spa);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
651
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
652 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
653 * Stop syncing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
654 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
655 if (spa->spa_sync_on) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
656 txg_sync_stop(spa->spa_dsl_pool);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
657 spa->spa_sync_on = B_FALSE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
658 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
659
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
660 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
661 * Wait for any outstanding prefetch I/O to complete.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
662 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
663 spa_config_enter(spa, RW_WRITER, FTAG);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
664 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
665
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
666 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
667 * Drop and purge level 2 cache
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
668 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
669 spa_l2cache_drop(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
670
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
671 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
672 * Close the dsl pool.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
673 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
674 if (spa->spa_dsl_pool) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
675 dsl_pool_close(spa->spa_dsl_pool);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
676 spa->spa_dsl_pool = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
677 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
678
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
679 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
680 * Close all vdevs.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
681 */
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
682 if (spa->spa_root_vdev)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
683 vdev_free(spa->spa_root_vdev);
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
684 ASSERT(spa->spa_root_vdev == NULL);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
685
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
686 for (i = 0; i < spa->spa_spares.sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
687 vdev_free(spa->spa_spares.sav_vdevs[i]);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
688 if (spa->spa_spares.sav_vdevs) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
689 kmem_free(spa->spa_spares.sav_vdevs,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
690 spa->spa_spares.sav_count * sizeof (void *));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
691 spa->spa_spares.sav_vdevs = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
692 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
693 if (spa->spa_spares.sav_config) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
694 nvlist_free(spa->spa_spares.sav_config);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
695 spa->spa_spares.sav_config = NULL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
696 }
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
697
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
698 for (i = 0; i < spa->spa_l2cache.sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
699 vdev_free(spa->spa_l2cache.sav_vdevs[i]);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
700 if (spa->spa_l2cache.sav_vdevs) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
701 kmem_free(spa->spa_l2cache.sav_vdevs,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
702 spa->spa_l2cache.sav_count * sizeof (void *));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
703 spa->spa_l2cache.sav_vdevs = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
704 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
705 if (spa->spa_l2cache.sav_config) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
706 nvlist_free(spa->spa_l2cache.sav_config);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
707 spa->spa_l2cache.sav_config = NULL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
708 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
709
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
710 spa->spa_async_suspended = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
711 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
712
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
713 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
714 * Load (or re-load) the current list of vdevs describing the active spares for
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
715 * this pool. When this is called, we have some form of basic information in
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
716 * 'spa_spares.sav_config'. We parse this into vdevs, try to open them, and
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
717 * then re-generate a more complete list including status information.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
718 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
719 static void
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
720 spa_load_spares(spa_t *spa)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
721 {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
722 nvlist_t **spares;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
723 uint_t nspares;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
724 int i;
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
725 vdev_t *vd, *tvd;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
726
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
727 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
728 * First, close and free any existing spare vdevs.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
729 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
730 for (i = 0; i < spa->spa_spares.sav_count; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
731 vd = spa->spa_spares.sav_vdevs[i];
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
732
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
733 /* Undo the call to spa_activate() below */
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
734 if ((tvd = spa_lookup_by_guid(spa, vd->vdev_guid)) != NULL &&
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
735 tvd->vdev_isspare)
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
736 spa_spare_remove(tvd);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
737 vdev_close(vd);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
738 vdev_free(vd);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
739 }
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
740
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
741 if (spa->spa_spares.sav_vdevs)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
742 kmem_free(spa->spa_spares.sav_vdevs,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
743 spa->spa_spares.sav_count * sizeof (void *));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
744
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
745 if (spa->spa_spares.sav_config == NULL)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
746 nspares = 0;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
747 else
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
748 VERIFY(nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
749 ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
750
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
751 spa->spa_spares.sav_count = (int)nspares;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
752 spa->spa_spares.sav_vdevs = NULL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
753
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
754 if (nspares == 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
755 return;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
756
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
757 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
758 * Construct the array of vdevs, opening them to get status in the
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
759 * process. For each spare, there is potentially two different vdev_t
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
760 * structures associated with it: one in the list of spares (used only
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
761 * for basic validation purposes) and one in the active vdev
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
762 * configuration (if it's spared in). During this phase we open and
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
763 * validate each vdev on the spare list. If the vdev also exists in the
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
764 * active configuration, then we also mark this vdev as an active spare.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
765 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
766 spa->spa_spares.sav_vdevs = kmem_alloc(nspares * sizeof (void *),
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
767 KM_SLEEP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
768 for (i = 0; i < spa->spa_spares.sav_count; i++) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
769 VERIFY(spa_config_parse(spa, &vd, spares[i], NULL, 0,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
770 VDEV_ALLOC_SPARE) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
771 ASSERT(vd != NULL);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
772
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
773 spa->spa_spares.sav_vdevs[i] = vd;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
774
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
775 if ((tvd = spa_lookup_by_guid(spa, vd->vdev_guid)) != NULL) {
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
776 if (!tvd->vdev_isspare)
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
777 spa_spare_add(tvd);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
778
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
779 /*
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
780 * We only mark the spare active if we were successfully
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
781 * able to load the vdev. Otherwise, importing a pool
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
782 * with a bad active spare would result in strange
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
783 * behavior, because multiple pool would think the spare
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
784 * is actively in use.
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
785 *
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
786 * There is a vulnerability here to an equally bizarre
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
787 * circumstance, where a dead active spare is later
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
788 * brought back to life (onlined or otherwise). Given
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
789 * the rarity of this scenario, and the extra complexity
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
790 * it adds, we ignore the possibility.
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
791 */
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
792 if (!vdev_is_dead(tvd))
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
793 spa_spare_activate(tvd);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
794 }
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
795
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
796 if (vdev_open(vd) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
797 continue;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
798
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
799 vd->vdev_top = vd;
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
800 if (vdev_validate_aux(vd) == 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
801 spa_spare_add(vd);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
802 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
803
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
804 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
805 * Recompute the stashed list of spares, with status information
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
806 * this time.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
807 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
808 VERIFY(nvlist_remove(spa->spa_spares.sav_config, ZPOOL_CONFIG_SPARES,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
809 DATA_TYPE_NVLIST_ARRAY) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
810
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
811 spares = kmem_alloc(spa->spa_spares.sav_count * sizeof (void *),
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
812 KM_SLEEP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
813 for (i = 0; i < spa->spa_spares.sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
814 spares[i] = vdev_config_generate(spa,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
815 spa->spa_spares.sav_vdevs[i], B_TRUE, B_TRUE, B_FALSE);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
816 VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
817 ZPOOL_CONFIG_SPARES, spares, spa->spa_spares.sav_count) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
818 for (i = 0; i < spa->spa_spares.sav_count; i++)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
819 nvlist_free(spares[i]);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
820 kmem_free(spares, spa->spa_spares.sav_count * sizeof (void *));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
821 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
822
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
823 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
824 * Load (or re-load) the current list of vdevs describing the active l2cache for
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
825 * this pool. When this is called, we have some form of basic information in
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
826 * 'spa_l2cache.sav_config'. We parse this into vdevs, try to open them, and
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
827 * then re-generate a more complete list including status information.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
828 * Devices which are already active have their details maintained, and are
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
829 * not re-opened.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
830 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
831 static void
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
832 spa_load_l2cache(spa_t *spa)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
833 {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
834 nvlist_t **l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
835 uint_t nl2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
836 int i, j, oldnvdevs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
837 uint64_t guid;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
838 vdev_t *vd, **oldvdevs, **newvdevs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
839 spa_aux_vdev_t *sav = &spa->spa_l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
840
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
841 if (sav->sav_config != NULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
842 VERIFY(nvlist_lookup_nvlist_array(sav->sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
843 ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
844 newvdevs = kmem_alloc(nl2cache * sizeof (void *), KM_SLEEP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
845 } else {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
846 nl2cache = 0;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
847 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
848
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
849 oldvdevs = sav->sav_vdevs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
850 oldnvdevs = sav->sav_count;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
851 sav->sav_vdevs = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
852 sav->sav_count = 0;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
853
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
854 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
855 * Process new nvlist of vdevs.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
856 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
857 for (i = 0; i < nl2cache; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
858 VERIFY(nvlist_lookup_uint64(l2cache[i], ZPOOL_CONFIG_GUID,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
859 &guid) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
860
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
861 newvdevs[i] = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
862 for (j = 0; j < oldnvdevs; j++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
863 vd = oldvdevs[j];
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
864 if (vd != NULL && guid == vd->vdev_guid) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
865 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
866 * Retain previous vdev for add/remove ops.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
867 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
868 newvdevs[i] = vd;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
869 oldvdevs[j] = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
870 break;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
871 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
872 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
873
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
874 if (newvdevs[i] == NULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
875 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
876 * Create new vdev
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
877 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
878 VERIFY(spa_config_parse(spa, &vd, l2cache[i], NULL, 0,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
879 VDEV_ALLOC_L2CACHE) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
880 ASSERT(vd != NULL);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
881 newvdevs[i] = vd;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
882
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
883 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
884 * Commit this vdev as an l2cache device,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
885 * even if it fails to open.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
886 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
887 spa_l2cache_add(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
888
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
889 if (vdev_open(vd) != 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
890 continue;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
891
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
892 vd->vdev_top = vd;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
893 (void) vdev_validate_aux(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
894
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
895 if (!vdev_is_dead(vd)) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
896 uint64_t size;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
897 size = vdev_get_rsize(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
898 ASSERT3U(size, >, 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
899 if (spa_mode & FWRITE) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
900 l2arc_add_vdev(spa, vd,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
901 VDEV_LABEL_START_SIZE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
902 size - VDEV_LABEL_START_SIZE);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
903 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
904 spa_l2cache_activate(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
905 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
906 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
907 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
908
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
909 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
910 * Purge vdevs that were dropped
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
911 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
912 for (i = 0; i < oldnvdevs; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
913 uint64_t pool;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
914
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
915 vd = oldvdevs[i];
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
916 if (vd != NULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
917 if (spa_mode & FWRITE &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
918 spa_l2cache_exists(vd->vdev_guid, &pool) &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
919 pool != 0ULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
920 l2arc_remove_vdev(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
921 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
922 (void) vdev_close(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
923 spa_l2cache_remove(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
924 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
925 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
926
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
927 if (oldvdevs)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
928 kmem_free(oldvdevs, oldnvdevs * sizeof (void *));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
929
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
930 if (sav->sav_config == NULL)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
931 goto out;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
932
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
933 sav->sav_vdevs = newvdevs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
934 sav->sav_count = (int)nl2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
935
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
936 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
937 * Recompute the stashed list of l2cache devices, with status
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
938 * information this time.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
939 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
940 VERIFY(nvlist_remove(sav->sav_config, ZPOOL_CONFIG_L2CACHE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
941 DATA_TYPE_NVLIST_ARRAY) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
942
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
943 l2cache = kmem_alloc(sav->sav_count * sizeof (void *), KM_SLEEP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
944 for (i = 0; i < sav->sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
945 l2cache[i] = vdev_config_generate(spa,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
946 sav->sav_vdevs[i], B_TRUE, B_FALSE, B_TRUE);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
947 VERIFY(nvlist_add_nvlist_array(sav->sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
948 ZPOOL_CONFIG_L2CACHE, l2cache, sav->sav_count) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
949 out:
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
950 for (i = 0; i < sav->sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
951 nvlist_free(l2cache[i]);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
952 if (sav->sav_count)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
953 kmem_free(l2cache, sav->sav_count * sizeof (void *));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
954 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
955
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
956 static int
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
957 load_nvlist(spa_t *spa, uint64_t obj, nvlist_t **value)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
958 {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
959 dmu_buf_t *db;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
960 char *packed = NULL;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
961 size_t nvsize = 0;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
962 int error;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
963 *value = NULL;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
964
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
965 VERIFY(0 == dmu_bonus_hold(spa->spa_meta_objset, obj, FTAG, &db));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
966 nvsize = *(uint64_t *)db->db_data;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
967 dmu_buf_rele(db, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
968
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
969 packed = kmem_alloc(nvsize, KM_SLEEP);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
970 error = dmu_read(spa->spa_meta_objset, obj, 0, nvsize, packed);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
971 if (error == 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
972 error = nvlist_unpack(packed, nvsize, value, 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
973 kmem_free(packed, nvsize);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
974
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
975 return (error);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
976 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
977
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
978 /*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
979 * Checks to see if the given vdev could not be opened, in which case we post a
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
980 * sysevent to notify the autoreplace code that the device has been removed.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
981 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
982 static void
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
983 spa_check_removed(vdev_t *vd)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
984 {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
985 int c;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
986
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
987 for (c = 0; c < vd->vdev_children; c++)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
988 spa_check_removed(vd->vdev_child[c]);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
989
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
990 if (vd->vdev_ops->vdev_op_leaf && vdev_is_dead(vd)) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
991 zfs_post_autoreplace(vd->vdev_spa, vd);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
992 spa_event_notify(vd->vdev_spa, vd, ESC_ZFS_VDEV_CHECK);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
993 }
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
994 }
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
995
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
996 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
997 * Load an existing storage pool, using the pool's builtin spa_config as a
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
998 * source of configuration information.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
999 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1000 static int
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1001 spa_load(spa_t *spa, nvlist_t *config, spa_load_state_t state, int mosconfig)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1002 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1003 int error = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1004 nvlist_t *nvroot = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1005 vdev_t *rvd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1006 uberblock_t *ub = &spa->spa_uberblock;
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1007 uint64_t config_cache_txg = spa->spa_config_txg;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1008 uint64_t pool_guid;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1009 uint64_t version;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1010 zio_t *zio;
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1011 uint64_t autoreplace = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1012
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1013 spa->spa_load_state = state;
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1014
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1015 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE, &nvroot) ||
1733
a7c3bc84e012 6407377 spa_tryimport() is broken
bonwick
parents: 1732
diff changeset
1016 nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID, &pool_guid)) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1017 error = EINVAL;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1018 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1019 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1020
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1021 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1022 * Versioning wasn't explicitly added to the label until later, so if
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1023 * it's not present treat it as the initial version.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1024 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1025 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_VERSION, &version) != 0)
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
1026 version = SPA_VERSION_INITIAL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1027
1733
a7c3bc84e012 6407377 spa_tryimport() is broken
bonwick
parents: 1732
diff changeset
1028 (void) nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_TXG,
a7c3bc84e012 6407377 spa_tryimport() is broken
bonwick
parents: 1732
diff changeset
1029 &spa->spa_config_txg);
a7c3bc84e012 6407377 spa_tryimport() is broken
bonwick
parents: 1732
diff changeset
1030
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1031 if ((state == SPA_LOAD_IMPORT || state == SPA_LOAD_TRYIMPORT) &&
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1032 spa_guid_exists(pool_guid, 0)) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1033 error = EEXIST;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1034 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1035 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1036
2174
73de7a781492 6433717 offline devices should not be marked persistently unavailble
eschrock
parents: 2082
diff changeset
1037 spa->spa_load_guid = pool_guid;
73de7a781492 6433717 offline devices should not be marked persistently unavailble
eschrock
parents: 2082
diff changeset
1038
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1039 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1040 * Parse the configuration into a vdev tree. We explicitly set the
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1041 * value that will be returned by spa_version() since parsing the
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1042 * configuration requires knowing the version number.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1043 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1044 spa_config_enter(spa, RW_WRITER, FTAG);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1045 spa->spa_ubsync.ub_version = version;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1046 error = spa_config_parse(spa, &rvd, nvroot, NULL, 0, VDEV_ALLOC_LOAD);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1047 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1048
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1049 if (error != 0)
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1050 goto out;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1051
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1052 ASSERT(spa->spa_root_vdev == rvd);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1053 ASSERT(spa_guid(spa) == pool_guid);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1054
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1055 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1056 * Try to open all vdevs, loading each label in the process.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1057 */
4070
4390ea390a1e 6386594 zdb message should be clearer when failing for lack of permissions
mc142369
parents: 3975
diff changeset
1058 error = vdev_open(rvd);
4390ea390a1e 6386594 zdb message should be clearer when failing for lack of permissions
mc142369
parents: 3975
diff changeset
1059 if (error != 0)
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1060 goto out;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1061
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1062 /*
1986
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1063 * Validate the labels for all leaf vdevs. We need to grab the config
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1064 * lock because all label I/O is done with the ZIO_FLAG_CONFIG_HELD
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1065 * flag.
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1066 */
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1067 spa_config_enter(spa, RW_READER, FTAG);
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1068 error = vdev_validate(rvd);
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1069 spa_config_exit(spa, FTAG);
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1070
4070
4390ea390a1e 6386594 zdb message should be clearer when failing for lack of permissions
mc142369
parents: 3975
diff changeset
1071 if (error != 0)
1986
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1072 goto out;
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1073
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1074 if (rvd->vdev_state <= VDEV_STATE_CANT_OPEN) {
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1075 error = ENXIO;
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1076 goto out;
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1077 }
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1078
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1079 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1080 * Find the best uberblock.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1081 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1082 bzero(ub, sizeof (uberblock_t));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1083
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1084 zio = zio_root(spa, NULL, NULL,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1085 ZIO_FLAG_CANFAIL | ZIO_FLAG_SPECULATIVE);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1086 vdev_uberblock_load(zio, rvd, ub);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1087 error = zio_wait(zio);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1088
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1089 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1090 * If we weren't able to find a single valid uberblock, return failure.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1091 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1092 if (ub->ub_txg == 0) {
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
1093 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
1094 VDEV_AUX_CORRUPT_DATA);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1095 error = ENXIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1096 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1097 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1098
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1099 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1100 * If the pool is newer than the code, we can't open it.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1101 */
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
1102 if (ub->ub_version > SPA_VERSION) {
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
1103 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
1104 VDEV_AUX_VERSION_NEWER);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1105 error = ENOTSUP;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1106 goto out;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1107 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1108
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1109 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1110 * If the vdev guid sum doesn't match the uberblock, we have an
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1111 * incomplete configuration.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1112 */
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
1113 if (rvd->vdev_guid_sum != ub->ub_guid_sum && mosconfig) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1114 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1115 VDEV_AUX_BAD_GUID_SUM);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1116 error = ENXIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1117 goto out;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1118 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1119
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1120 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1121 * Initialize internal SPA structures.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1122 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1123 spa->spa_state = POOL_STATE_ACTIVE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1124 spa->spa_ubsync = spa->spa_uberblock;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1125 spa->spa_first_txg = spa_last_synced_txg(spa) + 1;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1126 error = dsl_pool_open(spa, spa->spa_first_txg, &spa->spa_dsl_pool);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1127 if (error) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1128 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1129 VDEV_AUX_CORRUPT_DATA);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1130 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1131 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1132 spa->spa_meta_objset = spa->spa_dsl_pool->dp_meta_objset;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1133
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1134 if (zap_lookup(spa->spa_meta_objset,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1135 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_CONFIG,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1136 sizeof (uint64_t), 1, &spa->spa_config_object) != 0) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1137 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1138 VDEV_AUX_CORRUPT_DATA);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1139 error = EIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1140 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1141 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1142
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1143 if (!mosconfig) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1144 nvlist_t *newconfig;
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1145 uint64_t hostid;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1146
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1147 if (load_nvlist(spa, spa->spa_config_object, &newconfig) != 0) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1148 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1149 VDEV_AUX_CORRUPT_DATA);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1150 error = EIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1151 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1152 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1153
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1154 if (nvlist_lookup_uint64(newconfig, ZPOOL_CONFIG_HOSTID,
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1155 &hostid) == 0) {
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1156 char *hostname;
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1157 unsigned long myhostid = 0;
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1158
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1159 VERIFY(nvlist_lookup_string(newconfig,
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1160 ZPOOL_CONFIG_HOSTNAME, &hostname) == 0);
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1161
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1162 (void) ddi_strtoul(hw_serial, NULL, 10, &myhostid);
4178
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 4070
diff changeset
1163 if (hostid != 0 && myhostid != 0 &&
ad95fd86760b 6553537 zfs root fails to boot from a snv_63+zfsboot-pfinstall netinstall image
lling
parents: 4070
diff changeset
1164 (unsigned long)hostid != myhostid) {
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1165 cmn_err(CE_WARN, "pool '%s' could not be "
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1166 "loaded as it was last accessed by "
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1167 "another system (host: %s hostid: 0x%lx). "
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1168 "See: http://www.sun.com/msg/ZFS-8000-EY",
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1169 spa->spa_name, hostname,
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1170 (unsigned long)hostid);
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1171 error = EBADF;
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1172 goto out;
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1173 }
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1174 }
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
1175
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1176 spa_config_set(spa, newconfig);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1177 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1178 spa_deactivate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1179 spa_activate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1180
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1181 return (spa_load(spa, newconfig, state, B_TRUE));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1182 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1183
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1184 if (zap_lookup(spa->spa_meta_objset,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1185 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_SYNC_BPLIST,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1186 sizeof (uint64_t), 1, &spa->spa_sync_bplist_obj) != 0) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1187 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1188 VDEV_AUX_CORRUPT_DATA);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1189 error = EIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1190 goto out;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1191 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1192
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1193 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1194 * Load the bit that tells us to use the new accounting function
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1195 * (raid-z deflation). If we have an older pool, this will not
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1196 * be present.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1197 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1198 error = zap_lookup(spa->spa_meta_objset,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1199 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_DEFLATE,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1200 sizeof (uint64_t), 1, &spa->spa_deflate);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1201 if (error != 0 && error != ENOENT) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1202 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1203 VDEV_AUX_CORRUPT_DATA);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1204 error = EIO;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1205 goto out;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1206 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1207
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1208 /*
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1209 * Load the persistent error log. If we have an older pool, this will
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1210 * not be present.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1211 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1212 error = zap_lookup(spa->spa_meta_objset,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1213 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_ERRLOG_LAST,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1214 sizeof (uint64_t), 1, &spa->spa_errlog_last);
1807
35c8b566d7af 6410711 intent log blocks don't get invited to pool parties
bonwick
parents: 1775
diff changeset
1215 if (error != 0 && error != ENOENT) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1216 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1217 VDEV_AUX_CORRUPT_DATA);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1218 error = EIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1219 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1220 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1221
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1222 error = zap_lookup(spa->spa_meta_objset,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1223 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_ERRLOG_SCRUB,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1224 sizeof (uint64_t), 1, &spa->spa_errlog_scrub);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1225 if (error != 0 && error != ENOENT) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1226 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1227 VDEV_AUX_CORRUPT_DATA);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1228 error = EIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1229 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1230 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1231
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1232 /*
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1233 * Load the history object. If we have an older pool, this
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1234 * will not be present.
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1235 */
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1236 error = zap_lookup(spa->spa_meta_objset,
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1237 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_HISTORY,
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1238 sizeof (uint64_t), 1, &spa->spa_history);
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1239 if (error != 0 && error != ENOENT) {
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1240 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1241 VDEV_AUX_CORRUPT_DATA);
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1242 error = EIO;
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1243 goto out;
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1244 }
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1245
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
1246 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1247 * Load any hot spares for this pool.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1248 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1249 error = zap_lookup(spa->spa_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1250 DMU_POOL_SPARES, sizeof (uint64_t), 1, &spa->spa_spares.sav_object);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1251 if (error != 0 && error != ENOENT) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1252 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1253 VDEV_AUX_CORRUPT_DATA);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1254 error = EIO;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1255 goto out;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1256 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1257 if (error == 0) {
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
1258 ASSERT(spa_version(spa) >= SPA_VERSION_SPARES);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1259 if (load_nvlist(spa, spa->spa_spares.sav_object,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1260 &spa->spa_spares.sav_config) != 0) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1261 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1262 VDEV_AUX_CORRUPT_DATA);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1263 error = EIO;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1264 goto out;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1265 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1266
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1267 spa_config_enter(spa, RW_WRITER, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1268 spa_load_spares(spa);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1269 spa_config_exit(spa, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1270 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1271
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1272 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1273 * Load any level 2 ARC devices for this pool.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1274 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1275 error = zap_lookup(spa->spa_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1276 DMU_POOL_L2CACHE, sizeof (uint64_t), 1,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1277 &spa->spa_l2cache.sav_object);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1278 if (error != 0 && error != ENOENT) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1279 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1280 VDEV_AUX_CORRUPT_DATA);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1281 error = EIO;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1282 goto out;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1283 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1284 if (error == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1285 ASSERT(spa_version(spa) >= SPA_VERSION_L2CACHE);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1286 if (load_nvlist(spa, spa->spa_l2cache.sav_object,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1287 &spa->spa_l2cache.sav_config) != 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1288 vdev_set_state(rvd, B_TRUE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1289 VDEV_STATE_CANT_OPEN,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1290 VDEV_AUX_CORRUPT_DATA);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1291 error = EIO;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1292 goto out;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1293 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1294
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1295 spa_config_enter(spa, RW_WRITER, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1296 spa_load_l2cache(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1297 spa_config_exit(spa, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1298 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1299
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1300 spa->spa_delegation = zpool_prop_default_numeric(ZPOOL_PROP_DELEGATION);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
1301
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1302 error = zap_lookup(spa->spa_meta_objset, DMU_POOL_DIRECTORY_OBJECT,
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1303 DMU_POOL_PROPS, sizeof (uint64_t), 1, &spa->spa_pool_props_object);
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1304
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1305 if (error && error != ENOENT) {
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1306 vdev_set_state(rvd, B_TRUE, VDEV_STATE_CANT_OPEN,
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1307 VDEV_AUX_CORRUPT_DATA);
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1308 error = EIO;
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1309 goto out;
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1310 }
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1311
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1312 if (error == 0) {
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1313 (void) zap_lookup(spa->spa_meta_objset,
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1314 spa->spa_pool_props_object,
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1315 zpool_prop_to_name(ZPOOL_PROP_BOOTFS),
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1316 sizeof (uint64_t), 1, &spa->spa_bootfs);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1317 (void) zap_lookup(spa->spa_meta_objset,
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1318 spa->spa_pool_props_object,
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1319 zpool_prop_to_name(ZPOOL_PROP_AUTOREPLACE),
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1320 sizeof (uint64_t), 1, &autoreplace);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
1321 (void) zap_lookup(spa->spa_meta_objset,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
1322 spa->spa_pool_props_object,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
1323 zpool_prop_to_name(ZPOOL_PROP_DELEGATION),
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
1324 sizeof (uint64_t), 1, &spa->spa_delegation);
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
1325 (void) zap_lookup(spa->spa_meta_objset,
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
1326 spa->spa_pool_props_object,
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
1327 zpool_prop_to_name(ZPOOL_PROP_FAILUREMODE),
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
1328 sizeof (uint64_t), 1, &spa->spa_failmode);
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1329 }
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
1330
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1331 /*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1332 * If the 'autoreplace' property is set, then post a resource notifying
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1333 * the ZFS DE that it should not issue any faults for unopenable
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1334 * devices. We also iterate over the vdevs, and post a sysevent for any
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1335 * unopenable vdevs so that the normal autoreplace handler can take
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1336 * over.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1337 */
5756
05eb4c1ff492 6585441 spa_event_notify() doesn't pass its attributes
eschrock
parents: 5688
diff changeset
1338 if (autoreplace && state != SPA_LOAD_TRYIMPORT)
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1339 spa_check_removed(spa->spa_root_vdev);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1340
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1341 /*
1986
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1342 * Load the vdev state for all toplevel vdevs.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1343 */
1986
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1344 vdev_load(rvd);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1345
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1346 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1347 * Propagate the leaf DTLs we just loaded all the way up the tree.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1348 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1349 spa_config_enter(spa, RW_WRITER, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1350 vdev_dtl_reassess(rvd, 0, 0, B_FALSE);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1351 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1352
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1353 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1354 * Check the state of the root vdev. If it can't be opened, it
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1355 * indicates one or more toplevel vdevs are faulted.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1356 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1357 if (rvd->vdev_state <= VDEV_STATE_CANT_OPEN) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1358 error = ENXIO;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1359 goto out;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1360 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1361
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1362 if ((spa_mode & FWRITE) && state != SPA_LOAD_TRYIMPORT) {
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1363 dmu_tx_t *tx;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1364 int need_update = B_FALSE;
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1365 int c;
1601
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
1366
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1367 /*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1368 * Claim log blocks that haven't been committed yet.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1369 * This must all happen in a single txg.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1370 */
1601
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
1371 tx = dmu_tx_create_assigned(spa_get_dsl(spa),
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1372 spa_first_txg(spa));
2417
694d5de97348 6444346 zfs promote fails in zone
ahrens
parents: 2329
diff changeset
1373 (void) dmu_objset_find(spa->spa_name,
694d5de97348 6444346 zfs promote fails in zone
ahrens
parents: 2329
diff changeset
1374 zil_claim, tx, DS_FIND_CHILDREN);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1375 dmu_tx_commit(tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1376
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1377 spa->spa_sync_on = B_TRUE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1378 txg_sync_start(spa->spa_dsl_pool);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1379
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1380 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1381 * Wait for all claims to sync.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1382 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1383 txg_wait_synced(spa->spa_dsl_pool, 0);
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1384
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1385 /*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1386 * If the config cache is stale, or we have uninitialized
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1387 * metaslabs (see spa_vdev_add()), then update the config.
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1388 */
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1389 if (config_cache_txg != spa->spa_config_txg ||
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1390 state == SPA_LOAD_IMPORT)
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1391 need_update = B_TRUE;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1392
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1393 for (c = 0; c < rvd->vdev_children; c++)
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1394 if (rvd->vdev_child[c]->vdev_ms_array == 0)
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1395 need_update = B_TRUE;
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1396
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1397 /*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1398 * Update the config cache asychronously in case we're the
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1399 * root pool, in which case the config cache isn't writable yet.
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
1400 */
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1401 if (need_update)
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1402 spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1403 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1404
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1405 error = 0;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1406 out:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1407 if (error && error != EBADF)
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1408 zfs_ereport_post(FM_EREPORT_ZFS_POOL, spa, NULL, NULL, 0, 0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1409 spa->spa_load_state = SPA_LOAD_NONE;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1410 spa->spa_ena = 0;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1411
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1412 return (error);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1413 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1414
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1415 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1416 * Pool Open/Import
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1417 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1418 * The import case is identical to an open except that the configuration is sent
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1419 * down from userland, instead of grabbed from the configuration cache. For the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1420 * case of an open, the pool configuration will exist in the
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1421 * POOL_STATE_UNINITIALIZED state.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1422 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1423 * The stats information (gen/count/ustats) is used to gather vdev statistics at
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1424 * the same time open the pool, without having to keep around the spa_t in some
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1425 * ambiguous state.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1426 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1427 static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1428 spa_open_common(const char *pool, spa_t **spapp, void *tag, nvlist_t **config)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1429 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1430 spa_t *spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1431 int error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1432 int loaded = B_FALSE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1433 int locked = B_FALSE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1434
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1435 *spapp = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1436
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1437 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1438 * As disgusting as this is, we need to support recursive calls to this
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1439 * function because dsl_dir_open() is called during spa_load(), and ends
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1440 * up calling spa_open() again. The real fix is to figure out how to
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1441 * avoid dsl_dir_open() calling this in the first place.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1442 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1443 if (mutex_owner(&spa_namespace_lock) != curthread) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1444 mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1445 locked = B_TRUE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1446 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1447
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1448 if ((spa = spa_lookup(pool)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1449 if (locked)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1450 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1451 return (ENOENT);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1452 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1453 if (spa->spa_state == POOL_STATE_UNINITIALIZED) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1454
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1455 spa_activate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1456
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1457 error = spa_load(spa, spa->spa_config, SPA_LOAD_OPEN, B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1458
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1459 if (error == EBADF) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1460 /*
1986
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1461 * If vdev_validate() returns failure (indicated by
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1462 * EBADF), it indicates that one of the vdevs indicates
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1463 * that the pool has been exported or destroyed. If
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1464 * this is the case, the config cache is out of sync and
628267397204 6424405 zpool import destroyed_pool can damage existing pool using same devices
eschrock
parents: 1807
diff changeset
1465 * we should remove the pool from the namespace.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1466 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1467 zfs_post_ok(spa, NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1468 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1469 spa_deactivate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1470 spa_remove(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1471 spa_config_sync();
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1472 if (locked)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1473 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1474 return (ENOENT);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1475 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1476
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1477 if (error) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1478 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1479 * We can't open the pool, but we still have useful
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1480 * information: the state of each vdev after the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1481 * attempted vdev_open(). Return this to the user.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1482 */
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1483 if (config != NULL && spa->spa_root_vdev != NULL) {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1484 spa_config_enter(spa, RW_READER, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1485 *config = spa_config_generate(spa, NULL, -1ULL,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1486 B_TRUE);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1487 spa_config_exit(spa, FTAG);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1488 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1489 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1490 spa_deactivate(spa);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1491 spa->spa_last_open_failed = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1492 if (locked)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1493 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1494 *spapp = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1495 return (error);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1496 } else {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1497 zfs_post_ok(spa, NULL);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1498 spa->spa_last_open_failed = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1499 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1500
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1501 loaded = B_TRUE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1502 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1503
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1504 spa_open_ref(spa, tag);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1505
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1506 /*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1507 * If we just loaded the pool, resilver anything that's out of date.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1508 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1509 if (loaded && (spa_mode & FWRITE))
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1510 VERIFY(spa_scrub(spa, POOL_SCRUB_RESILVER, B_TRUE) == 0);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
1511
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1512 if (locked)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1513 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1514
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1515 *spapp = spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1516
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1517 if (config != NULL) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1518 spa_config_enter(spa, RW_READER, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1519 *config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1520 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1521 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1522
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1523 return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1524 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1525
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1526 int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1527 spa_open(const char *name, spa_t **spapp, void *tag)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1528 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1529 return (spa_open_common(name, spapp, tag, NULL));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1530 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1531
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1532 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1533 * Lookup the given spa_t, incrementing the inject count in the process,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1534 * preventing it from being exported or destroyed.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1535 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1536 spa_t *
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1537 spa_inject_addref(char *name)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1538 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1539 spa_t *spa;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1540
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1541 mutex_enter(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1542 if ((spa = spa_lookup(name)) == NULL) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1543 mutex_exit(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1544 return (NULL);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1545 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1546 spa->spa_inject_ref++;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1547 mutex_exit(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1548
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1549 return (spa);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1550 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1551
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1552 void
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1553 spa_inject_delref(spa_t *spa)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1554 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1555 mutex_enter(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1556 spa->spa_inject_ref--;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1557 mutex_exit(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1558 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1559
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1560 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1561 * Add spares device information to the nvlist.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1562 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1563 static void
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1564 spa_add_spares(spa_t *spa, nvlist_t *config)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1565 {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1566 nvlist_t **spares;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1567 uint_t i, nspares;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1568 nvlist_t *nvroot;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1569 uint64_t guid;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1570 vdev_stat_t *vs;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1571 uint_t vsc;
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1572 uint64_t pool;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1573
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1574 if (spa->spa_spares.sav_count == 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1575 return;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1576
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1577 VERIFY(nvlist_lookup_nvlist(config,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1578 ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1579 VERIFY(nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1580 ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1581 if (nspares != 0) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1582 VERIFY(nvlist_add_nvlist_array(nvroot,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1583 ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1584 VERIFY(nvlist_lookup_nvlist_array(nvroot,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1585 ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1586
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1587 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1588 * Go through and find any spares which have since been
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1589 * repurposed as an active spare. If this is the case, update
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1590 * their status appropriately.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1591 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1592 for (i = 0; i < nspares; i++) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1593 VERIFY(nvlist_lookup_uint64(spares[i],
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1594 ZPOOL_CONFIG_GUID, &guid) == 0);
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1595 if (spa_spare_exists(guid, &pool) && pool != 0ULL) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1596 VERIFY(nvlist_lookup_uint64_array(
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1597 spares[i], ZPOOL_CONFIG_STATS,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1598 (uint64_t **)&vs, &vsc) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1599 vs->vs_state = VDEV_STATE_CANT_OPEN;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1600 vs->vs_aux = VDEV_AUX_SPARED;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1601 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1602 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1603 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1604 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1605
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1606 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1607 * Add l2cache device information to the nvlist, including vdev stats.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1608 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1609 static void
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1610 spa_add_l2cache(spa_t *spa, nvlist_t *config)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1611 {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1612 nvlist_t **l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1613 uint_t i, j, nl2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1614 nvlist_t *nvroot;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1615 uint64_t guid;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1616 vdev_t *vd;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1617 vdev_stat_t *vs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1618 uint_t vsc;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1619
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1620 if (spa->spa_l2cache.sav_count == 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1621 return;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1622
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1623 spa_config_enter(spa, RW_READER, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1624
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1625 VERIFY(nvlist_lookup_nvlist(config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1626 ZPOOL_CONFIG_VDEV_TREE, &nvroot) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1627 VERIFY(nvlist_lookup_nvlist_array(spa->spa_l2cache.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1628 ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1629 if (nl2cache != 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1630 VERIFY(nvlist_add_nvlist_array(nvroot,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1631 ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1632 VERIFY(nvlist_lookup_nvlist_array(nvroot,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1633 ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1634
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1635 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1636 * Update level 2 cache device stats.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1637 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1638
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1639 for (i = 0; i < nl2cache; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1640 VERIFY(nvlist_lookup_uint64(l2cache[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1641 ZPOOL_CONFIG_GUID, &guid) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1642
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1643 vd = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1644 for (j = 0; j < spa->spa_l2cache.sav_count; j++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1645 if (guid ==
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1646 spa->spa_l2cache.sav_vdevs[j]->vdev_guid) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1647 vd = spa->spa_l2cache.sav_vdevs[j];
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1648 break;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1649 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1650 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1651 ASSERT(vd != NULL);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1652
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1653 VERIFY(nvlist_lookup_uint64_array(l2cache[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1654 ZPOOL_CONFIG_STATS, (uint64_t **)&vs, &vsc) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1655 vdev_get_stats(vd, vs);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1656 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1657 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1658
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1659 spa_config_exit(spa, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1660 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1661
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1662 int
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1663 spa_get_stats(const char *name, nvlist_t **config, char *altroot, size_t buflen)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1664 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1665 int error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1666 spa_t *spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1667
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1668 *config = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1669 error = spa_open_common(name, &spa, FTAG, config);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1670
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1671 if (spa && *config != NULL) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1672 VERIFY(nvlist_add_uint64(*config, ZPOOL_CONFIG_ERRCOUNT,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1673 spa_get_errlog_size(spa)) == 0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1674
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1675 spa_add_spares(spa, *config);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1676 spa_add_l2cache(spa, *config);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1677 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1678
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1679 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1680 * We want to get the alternate root even for faulted pools, so we cheat
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1681 * and call spa_lookup() directly.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1682 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1683 if (altroot) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1684 if (spa == NULL) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1685 mutex_enter(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1686 spa = spa_lookup(name);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1687 if (spa)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1688 spa_altroot(spa, altroot, buflen);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1689 else
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1690 altroot[0] = '\0';
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1691 spa = NULL;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1692 mutex_exit(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1693 } else {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1694 spa_altroot(spa, altroot, buflen);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1695 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1696 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
1697
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1698 if (spa != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1699 spa_close(spa, FTAG);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1700
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1701 return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1702 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1703
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1704 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1705 * Validate that the auxiliary device array is well formed. We must have an
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1706 * array of nvlists, each which describes a valid leaf vdev. If this is an
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1707 * import (mode is VDEV_ALLOC_SPARE), then we allow corrupted spares to be
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1708 * specified, as long as they are well-formed.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1709 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1710 static int
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1711 spa_validate_aux_devs(spa_t *spa, nvlist_t *nvroot, uint64_t crtxg, int mode,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1712 spa_aux_vdev_t *sav, const char *config, uint64_t version,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1713 vdev_labeltype_t label)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1714 {
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1715 nvlist_t **dev;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1716 uint_t i, ndev;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1717 vdev_t *vd;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1718 int error;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1719
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1720 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1721 * It's acceptable to have no devs specified.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1722 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1723 if (nvlist_lookup_nvlist_array(nvroot, config, &dev, &ndev) != 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1724 return (0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1725
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1726 if (ndev == 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1727 return (EINVAL);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1728
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1729 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1730 * Make sure the pool is formatted with a version that supports this
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1731 * device type.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1732 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1733 if (spa_version(spa) < version)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1734 return (ENOTSUP);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1735
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1736 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1737 * Set the pending device list so we correctly handle device in-use
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1738 * checking.
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1739 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1740 sav->sav_pending = dev;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1741 sav->sav_npending = ndev;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1742
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1743 for (i = 0; i < ndev; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1744 if ((error = spa_config_parse(spa, &vd, dev[i], NULL, 0,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1745 mode)) != 0)
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1746 goto out;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1747
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1748 if (!vd->vdev_ops->vdev_op_leaf) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1749 vdev_free(vd);
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1750 error = EINVAL;
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1751 goto out;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1752 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1753
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1754 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1755 * The L2ARC currently only supports disk devices.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1756 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1757 if ((strcmp(config, ZPOOL_CONFIG_L2CACHE) == 0) &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1758 strcmp(vd->vdev_ops->vdev_op_type, VDEV_TYPE_DISK) != 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1759 error = ENOTBLK;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1760 goto out;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1761 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1762
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1763 vd->vdev_top = vd;
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1764
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1765 if ((error = vdev_open(vd)) == 0 &&
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1766 (error = vdev_label_init(vd, crtxg, label)) == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1767 VERIFY(nvlist_add_uint64(dev[i], ZPOOL_CONFIG_GUID,
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1768 vd->vdev_guid) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1769 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1770
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1771 vdev_free(vd);
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1772
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1773 if (error &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1774 (mode != VDEV_ALLOC_SPARE && mode != VDEV_ALLOC_L2CACHE))
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1775 goto out;
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1776 else
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1777 error = 0;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1778 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1779
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1780 out:
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1781 sav->sav_pending = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1782 sav->sav_npending = 0;
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
1783 return (error);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1784 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1785
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1786 static int
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1787 spa_validate_aux(spa_t *spa, nvlist_t *nvroot, uint64_t crtxg, int mode)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1788 {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1789 int error;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1790
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1791 if ((error = spa_validate_aux_devs(spa, nvroot, crtxg, mode,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1792 &spa->spa_spares, ZPOOL_CONFIG_SPARES, SPA_VERSION_SPARES,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1793 VDEV_LABEL_SPARE)) != 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1794 return (error);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1795 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1796
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1797 return (spa_validate_aux_devs(spa, nvroot, crtxg, mode,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1798 &spa->spa_l2cache, ZPOOL_CONFIG_L2CACHE, SPA_VERSION_L2CACHE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1799 VDEV_LABEL_L2CACHE));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1800 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1801
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1802 static void
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1803 spa_set_aux_vdevs(spa_aux_vdev_t *sav, nvlist_t **devs, int ndevs,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1804 const char *config)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1805 {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1806 int i;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1807
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1808 if (sav->sav_config != NULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1809 nvlist_t **olddevs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1810 uint_t oldndevs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1811 nvlist_t **newdevs;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1812
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1813 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1814 * Generate new dev list by concatentating with the
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1815 * current dev list.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1816 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1817 VERIFY(nvlist_lookup_nvlist_array(sav->sav_config, config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1818 &olddevs, &oldndevs) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1819
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1820 newdevs = kmem_alloc(sizeof (void *) *
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1821 (ndevs + oldndevs), KM_SLEEP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1822 for (i = 0; i < oldndevs; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1823 VERIFY(nvlist_dup(olddevs[i], &newdevs[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1824 KM_SLEEP) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1825 for (i = 0; i < ndevs; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1826 VERIFY(nvlist_dup(devs[i], &newdevs[i + oldndevs],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1827 KM_SLEEP) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1828
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1829 VERIFY(nvlist_remove(sav->sav_config, config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1830 DATA_TYPE_NVLIST_ARRAY) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1831
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1832 VERIFY(nvlist_add_nvlist_array(sav->sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1833 config, newdevs, ndevs + oldndevs) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1834 for (i = 0; i < oldndevs + ndevs; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1835 nvlist_free(newdevs[i]);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1836 kmem_free(newdevs, (oldndevs + ndevs) * sizeof (void *));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1837 } else {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1838 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1839 * Generate a new dev list.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1840 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1841 VERIFY(nvlist_alloc(&sav->sav_config, NV_UNIQUE_NAME,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1842 KM_SLEEP) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1843 VERIFY(nvlist_add_nvlist_array(sav->sav_config, config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1844 devs, ndevs) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1845 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1846 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1847
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1848 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1849 * Stop and drop level 2 ARC devices
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1850 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1851 void
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1852 spa_l2cache_drop(spa_t *spa)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1853 {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1854 vdev_t *vd;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1855 int i;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1856 spa_aux_vdev_t *sav = &spa->spa_l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1857
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1858 for (i = 0; i < sav->sav_count; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1859 uint64_t pool;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1860
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1861 vd = sav->sav_vdevs[i];
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1862 ASSERT(vd != NULL);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1863
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1864 if (spa_mode & FWRITE &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1865 spa_l2cache_exists(vd->vdev_guid, &pool) && pool != 0ULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1866 l2arc_remove_vdev(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1867 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1868 if (vd->vdev_isl2cache)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1869 spa_l2cache_remove(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1870 vdev_clear_stats(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1871 (void) vdev_close(vd);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1872 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1873 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1874
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1875 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1876 * Pool Creation
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1877 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1878 int
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1879 spa_create(const char *pool, nvlist_t *nvroot, nvlist_t *props,
4715
e8d212dda064 6535695 Panic: shpp->sh_eof == shpp->sh_pool_create_len, file: ../../common/fs/zfs/spa_history.c, line: 235
ek110237
parents: 4627
diff changeset
1880 const char *history_str)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1881 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1882 spa_t *spa;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1883 char *altroot = NULL;
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1884 vdev_t *rvd;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1885 dsl_pool_t *dp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1886 dmu_tx_t *tx;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1887 int c, error = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1888 uint64_t txg = TXG_INITIAL;
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1889 nvlist_t **spares, **l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1890 uint_t nspares, nl2cache;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1891 uint64_t version;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1892
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1893 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1894 * If this pool already exists, return failure.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1895 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1896 mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1897 if (spa_lookup(pool) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1898 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1899 return (EEXIST);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1900 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1901
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1902 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1903 * Allocate a new spa_t structure.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1904 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1905 (void) nvlist_lookup_string(props,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1906 zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1907 spa = spa_add(pool, altroot);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1908 spa_activate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1909
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1910 spa->spa_uberblock.ub_txg = txg - 1;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1911
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1912 if (props && (error = spa_prop_validate(spa, props))) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1913 spa_unload(spa);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1914 spa_deactivate(spa);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1915 spa_remove(spa);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1916 return (error);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1917 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1918
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1919 if (nvlist_lookup_uint64(props, zpool_prop_to_name(ZPOOL_PROP_VERSION),
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1920 &version) != 0)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1921 version = SPA_VERSION;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1922 ASSERT(version <= SPA_VERSION);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
1923 spa->spa_uberblock.ub_version = version;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1924 spa->spa_ubsync = spa->spa_uberblock;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1925
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1926 /*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1927 * Create the root vdev.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1928 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1929 spa_config_enter(spa, RW_WRITER, FTAG);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1930
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1931 error = spa_config_parse(spa, &rvd, nvroot, NULL, 0, VDEV_ALLOC_ADD);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1932
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1933 ASSERT(error != 0 || rvd != NULL);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1934 ASSERT(error != 0 || spa->spa_root_vdev == rvd);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1935
5913
a77f8ad2ce63 6575965 panic/thread=2a1016b5ca0: BAD TRAP: type=9 rp=1858500 addr=0 mmu_fsr=0, really, truly out of space
perrin
parents: 5886
diff changeset
1936 if (error == 0 && !zfs_allocatable_devs(nvroot))
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1937 error = EINVAL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1938
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1939 if (error == 0 &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1940 (error = vdev_create(rvd, txg, B_FALSE)) == 0 &&
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1941 (error = spa_validate_aux(spa, nvroot, txg,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1942 VDEV_ALLOC_ADD)) == 0) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1943 for (c = 0; c < rvd->vdev_children; c++)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1944 vdev_init(rvd->vdev_child[c], txg);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1945 vdev_config_dirty(rvd);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1946 }
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1947
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
1948 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1949
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1950 if (error != 0) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1951 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1952 spa_deactivate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1953 spa_remove(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1954 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1955 return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1956 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1957
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1958 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1959 * Get the list of spares, if specified.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1960 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1961 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1962 &spares, &nspares) == 0) {
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1963 VERIFY(nvlist_alloc(&spa->spa_spares.sav_config, NV_UNIQUE_NAME,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1964 KM_SLEEP) == 0);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1965 VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1966 ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1967 spa_config_enter(spa, RW_WRITER, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1968 spa_load_spares(spa);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1969 spa_config_exit(spa, FTAG);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1970 spa->spa_spares.sav_sync = B_TRUE;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1971 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1972
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1973 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1974 * Get the list of level 2 cache devices, if specified.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1975 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1976 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1977 &l2cache, &nl2cache) == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1978 VERIFY(nvlist_alloc(&spa->spa_l2cache.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1979 NV_UNIQUE_NAME, KM_SLEEP) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1980 VERIFY(nvlist_add_nvlist_array(spa->spa_l2cache.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1981 ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1982 spa_config_enter(spa, RW_WRITER, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1983 spa_load_l2cache(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1984 spa_config_exit(spa, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
1985 spa->spa_l2cache.sav_sync = B_TRUE;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1986 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
1987
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1988 spa->spa_dsl_pool = dp = dsl_pool_create(spa, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1989 spa->spa_meta_objset = dp->dp_meta_objset;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1990
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1991 tx = dmu_tx_create_assigned(dp, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1992
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1993 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1994 * Create the pool config object.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1995 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1996 spa->spa_config_object = dmu_object_alloc(spa->spa_meta_objset,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1997 DMU_OT_PACKED_NVLIST, 1 << 14,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1998 DMU_OT_PACKED_NVLIST_SIZE, sizeof (uint64_t), tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
1999
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2000 if (zap_add(spa->spa_meta_objset,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2001 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_CONFIG,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2002 sizeof (uint64_t), 1, &spa->spa_config_object, tx) != 0) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2003 cmn_err(CE_PANIC, "failed to add pool config");
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2004 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2005
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2006 /* Newly created pools with the right version are always deflated. */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2007 if (version >= SPA_VERSION_RAIDZ_DEFLATE) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2008 spa->spa_deflate = TRUE;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2009 if (zap_add(spa->spa_meta_objset,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2010 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_DEFLATE,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2011 sizeof (uint64_t), 1, &spa->spa_deflate, tx) != 0) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2012 cmn_err(CE_PANIC, "failed to add deflate");
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2013 }
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2014 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2015
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2016 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2017 * Create the deferred-free bplist object. Turn off compression
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2018 * because sync-to-convergence takes longer if the blocksize
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2019 * keeps changing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2020 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2021 spa->spa_sync_bplist_obj = bplist_create(spa->spa_meta_objset,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2022 1 << 14, tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2023 dmu_object_set_compress(spa->spa_meta_objset, spa->spa_sync_bplist_obj,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2024 ZIO_COMPRESS_OFF, tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2025
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2026 if (zap_add(spa->spa_meta_objset,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2027 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_SYNC_BPLIST,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2028 sizeof (uint64_t), 1, &spa->spa_sync_bplist_obj, tx) != 0) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2029 cmn_err(CE_PANIC, "failed to add bplist");
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2030 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2031
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
2032 /*
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
2033 * Create the pool's history object.
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
2034 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2035 if (version >= SPA_VERSION_ZPOOL_HISTORY)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2036 spa_history_create_obj(spa, tx);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2037
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2038 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2039 * Set pool properties.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2040 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2041 spa->spa_bootfs = zpool_prop_default_numeric(ZPOOL_PROP_BOOTFS);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2042 spa->spa_delegation = zpool_prop_default_numeric(ZPOOL_PROP_DELEGATION);
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
2043 spa->spa_failmode = zpool_prop_default_numeric(ZPOOL_PROP_FAILUREMODE);
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2044 if (props)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2045 spa_sync_props(spa, props, CRED(), tx);
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
2046
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2047 dmu_tx_commit(tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2048
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2049 spa->spa_sync_on = B_TRUE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2050 txg_sync_start(spa->spa_dsl_pool);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2051
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2052 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2053 * We explicitly wait for the first transaction to complete so that our
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2054 * bean counters are appropriately updated.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2055 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2056 txg_wait_synced(spa->spa_dsl_pool, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2057
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2058 spa_config_sync();
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2059
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2060 if (version >= SPA_VERSION_ZPOOL_HISTORY && history_str != NULL)
4715
e8d212dda064 6535695 Panic: shpp->sh_eof == shpp->sh_pool_create_len, file: ../../common/fs/zfs/spa_history.c, line: 235
ek110237
parents: 4627
diff changeset
2061 (void) spa_history_log(spa, history_str, LOG_CMD_POOL_CREATE);
e8d212dda064 6535695 Panic: shpp->sh_eof == shpp->sh_pool_create_len, file: ../../common/fs/zfs/spa_history.c, line: 235
ek110237
parents: 4627
diff changeset
2062
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2063 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2064
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2065 return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2066 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2067
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2068 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2069 * Import the given pool into the system. We set up the necessary spa_t and
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2070 * then call spa_load() to do the dirty work.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2071 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2072 int
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2073 spa_import(const char *pool, nvlist_t *config, nvlist_t *props)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2074 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2075 spa_t *spa;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2076 char *altroot = NULL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2077 int error;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2078 nvlist_t *nvroot;
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2079 nvlist_t **spares, **l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2080 uint_t nspares, nl2cache;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2081
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2082 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2083 * If a pool with this name exists, return failure.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2084 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2085 mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2086 if (spa_lookup(pool) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2087 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2088 return (EEXIST);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2089 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2090
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2091 /*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2092 * Create and initialize the spa structure.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2093 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2094 (void) nvlist_lookup_string(props,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2095 zpool_prop_to_name(ZPOOL_PROP_ALTROOT), &altroot);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2096 spa = spa_add(pool, altroot);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2097 spa_activate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2098
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2099 /*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2100 * Pass off the heavy lifting to spa_load().
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2101 * Pass TRUE for mosconfig because the user-supplied config
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2102 * is actually the one to trust when doing an import.
1601
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
2103 */
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2104 error = spa_load(spa, config, SPA_LOAD_IMPORT, B_TRUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2105
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2106 spa_config_enter(spa, RW_WRITER, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2107 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2108 * Toss any existing sparelist, as it doesn't have any validity anymore,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2109 * and conflicts with spa_has_spare().
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2110 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2111 if (spa->spa_spares.sav_config) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2112 nvlist_free(spa->spa_spares.sav_config);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2113 spa->spa_spares.sav_config = NULL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2114 spa_load_spares(spa);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2115 }
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2116 if (spa->spa_l2cache.sav_config) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2117 nvlist_free(spa->spa_l2cache.sav_config);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2118 spa->spa_l2cache.sav_config = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2119 spa_load_l2cache(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2120 }
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2121
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2122 VERIFY(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2123 &nvroot) == 0);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2124 if (error == 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2125 error = spa_validate_aux(spa, nvroot, -1ULL, VDEV_ALLOC_SPARE);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2126 if (error == 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2127 error = spa_validate_aux(spa, nvroot, -1ULL,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2128 VDEV_ALLOC_L2CACHE);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2129 spa_config_exit(spa, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2130
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
2131 if (error != 0 || (props && (error = spa_prop_set(spa, props)))) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2132 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2133 spa_deactivate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2134 spa_remove(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2135 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2136 return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2137 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2138
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2139 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2140 * Override any spares and level 2 cache devices as specified by
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2141 * the user, as these may have correct device names/devids, etc.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2142 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2143 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2144 &spares, &nspares) == 0) {
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2145 if (spa->spa_spares.sav_config)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2146 VERIFY(nvlist_remove(spa->spa_spares.sav_config,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2147 ZPOOL_CONFIG_SPARES, DATA_TYPE_NVLIST_ARRAY) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2148 else
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2149 VERIFY(nvlist_alloc(&spa->spa_spares.sav_config,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2150 NV_UNIQUE_NAME, KM_SLEEP) == 0);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2151 VERIFY(nvlist_add_nvlist_array(spa->spa_spares.sav_config,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2152 ZPOOL_CONFIG_SPARES, spares, nspares) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2153 spa_config_enter(spa, RW_WRITER, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2154 spa_load_spares(spa);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2155 spa_config_exit(spa, FTAG);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2156 spa->spa_spares.sav_sync = B_TRUE;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2157 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2158 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2159 &l2cache, &nl2cache) == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2160 if (spa->spa_l2cache.sav_config)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2161 VERIFY(nvlist_remove(spa->spa_l2cache.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2162 ZPOOL_CONFIG_L2CACHE, DATA_TYPE_NVLIST_ARRAY) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2163 else
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2164 VERIFY(nvlist_alloc(&spa->spa_l2cache.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2165 NV_UNIQUE_NAME, KM_SLEEP) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2166 VERIFY(nvlist_add_nvlist_array(spa->spa_l2cache.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2167 ZPOOL_CONFIG_L2CACHE, l2cache, nl2cache) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2168 spa_config_enter(spa, RW_WRITER, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2169 spa_load_l2cache(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2170 spa_config_exit(spa, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2171 spa->spa_l2cache.sav_sync = B_TRUE;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2172 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2173
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2174 /*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2175 * Update the config cache to include the newly-imported pool.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2176 */
4627
c85631613c19 6509812 it would be useful if zdb(1M) could run on exported pools
ck153898
parents: 4577
diff changeset
2177 if (spa_mode & FWRITE)
c85631613c19 6509812 it would be useful if zdb(1M) could run on exported pools
ck153898
parents: 4577
diff changeset
2178 spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2179
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2180 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2181 * Resilver anything that's out of date.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2182 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2183 if (spa_mode & FWRITE)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2184 VERIFY(spa_scrub(spa, POOL_SCRUB_RESILVER, B_TRUE) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2185
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2186 mutex_exit(&spa_namespace_lock);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2187
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2188 return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2189 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2190
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2191 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2192 * This (illegal) pool name is used when temporarily importing a spa_t in order
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2193 * to get the vdev stats associated with the imported devices.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2194 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2195 #define TRYIMPORT_NAME "$import"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2196
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2197 nvlist_t *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2198 spa_tryimport(nvlist_t *tryconfig)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2199 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2200 nvlist_t *config = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2201 char *poolname;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2202 spa_t *spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2203 uint64_t state;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2204
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2205 if (nvlist_lookup_string(tryconfig, ZPOOL_CONFIG_POOL_NAME, &poolname))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2206 return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2207
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2208 if (nvlist_lookup_uint64(tryconfig, ZPOOL_CONFIG_POOL_STATE, &state))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2209 return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2210
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2211 /*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2212 * Create and initialize the spa structure.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2213 */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2214 mutex_enter(&spa_namespace_lock);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2215 spa = spa_add(TRYIMPORT_NAME, NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2216 spa_activate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2217
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2218 /*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2219 * Pass off the heavy lifting to spa_load().
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2220 * Pass TRUE for mosconfig because the user-supplied config
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2221 * is actually the one to trust when doing an import.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2222 */
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2223 (void) spa_load(spa, tryconfig, SPA_LOAD_TRYIMPORT, B_TRUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2224
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2225 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2226 * If 'tryconfig' was at least parsable, return the current config.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2227 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2228 if (spa->spa_root_vdev != NULL) {
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2229 spa_config_enter(spa, RW_READER, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2230 config = spa_config_generate(spa, NULL, -1ULL, B_TRUE);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2231 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2232 VERIFY(nvlist_add_string(config, ZPOOL_CONFIG_POOL_NAME,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2233 poolname) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2234 VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_POOL_STATE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2235 state) == 0);
3975
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
2236 VERIFY(nvlist_add_uint64(config, ZPOOL_CONFIG_TIMESTAMP,
6674f5d79069 6282725 hostname/hostid should be stored in the label
ek110237
parents: 3912
diff changeset
2237 spa->spa_uberblock.ub_timestamp) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2238
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2239 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2240 * Add the list of hot spares and level 2 cache devices.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2241 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2242 spa_add_spares(spa, config);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2243 spa_add_l2cache(spa, config);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2244 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2245
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2246 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2247 spa_deactivate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2248 spa_remove(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2249 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2250
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2251 return (config);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2252 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2253
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2254 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2255 * Pool export/destroy
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2256 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2257 * The act of destroying or exporting a pool is very simple. We make sure there
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2258 * is no more pending I/O and any references to the pool are gone. Then, we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2259 * update the pool state and sync all the labels to disk, removing the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2260 * configuration from the cache afterwards.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2261 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2262 static int
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2263 spa_export_common(char *pool, int new_state, nvlist_t **oldconfig)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2264 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2265 spa_t *spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2266
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2267 if (oldconfig)
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2268 *oldconfig = NULL;
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2269
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2270 if (!(spa_mode & FWRITE))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2271 return (EROFS);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2272
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2273 mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2274 if ((spa = spa_lookup(pool)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2275 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2276 return (ENOENT);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2277 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2278
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2279 /*
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2280 * Put a hold on the pool, drop the namespace lock, stop async tasks,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2281 * reacquire the namespace lock, and see if we can export.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2282 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2283 spa_open_ref(spa, FTAG);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2284 mutex_exit(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2285 spa_async_suspend(spa);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2286 mutex_enter(&spa_namespace_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2287 spa_close(spa, FTAG);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2288
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2289 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2290 * The pool will be in core if it's openable,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2291 * in which case we can modify its state.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2292 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2293 if (spa->spa_state != POOL_STATE_UNINITIALIZED && spa->spa_sync_on) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2294 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2295 * Objsets may be open only because they're dirty, so we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2296 * have to force it to sync before checking spa_refcnt.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2297 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2298 spa_scrub_suspend(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2299 txg_wait_synced(spa->spa_dsl_pool, 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2300
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2301 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2302 * A pool cannot be exported or destroyed if there are active
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2303 * references. If we are resetting a pool, allow references by
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2304 * fault injection handlers.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2305 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2306 if (!spa_refcount_zero(spa) ||
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2307 (spa->spa_inject_ref != 0 &&
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2308 new_state != POOL_STATE_UNINITIALIZED)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2309 spa_scrub_resume(spa);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2310 spa_async_resume(spa);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2311 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2312 return (EBUSY);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2313 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2314
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2315 spa_scrub_resume(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2316 VERIFY(spa_scrub(spa, POOL_SCRUB_NONE, B_TRUE) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2317
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2318 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2319 * We want this to be reflected on every label,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2320 * so mark them all dirty. spa_unload() will do the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2321 * final sync that pushes these changes out.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2322 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2323 if (new_state != POOL_STATE_UNINITIALIZED) {
1601
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
2324 spa_config_enter(spa, RW_WRITER, FTAG);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2325 spa->spa_state = new_state;
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2326 spa->spa_final_txg = spa_last_synced_txg(spa) + 1;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2327 vdev_config_dirty(spa->spa_root_vdev);
1601
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
2328 spa_config_exit(spa, FTAG);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2329 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2330 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2331
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2332 spa_event_notify(spa, NULL, ESC_ZFS_POOL_DESTROY);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2333
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2334 if (spa->spa_state != POOL_STATE_UNINITIALIZED) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2335 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2336 spa_deactivate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2337 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2338
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2339 if (oldconfig && spa->spa_config)
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2340 VERIFY(nvlist_dup(spa->spa_config, oldconfig, 0) == 0);
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2341
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2342 if (new_state != POOL_STATE_UNINITIALIZED) {
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
2343 spa_config_check(spa->spa_config_dir,
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
2344 spa->spa_config_file);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2345 spa_remove(spa);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2346 spa_config_sync();
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2347 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2348 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2349
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2350 return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2351 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2352
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2353 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2354 * Destroy a storage pool.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2355 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2356 int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2357 spa_destroy(char *pool)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2358 {
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2359 return (spa_export_common(pool, POOL_STATE_DESTROYED, NULL));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2360 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2361
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2362 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2363 * Export a storage pool.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2364 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2365 int
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2366 spa_export(char *pool, nvlist_t **oldconfig)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2367 {
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2368 return (spa_export_common(pool, POOL_STATE_EXPORTED, oldconfig));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2369 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2370
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2371 /*
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2372 * Similar to spa_export(), this unloads the spa_t without actually removing it
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2373 * from the namespace in any way.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2374 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2375 int
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2376 spa_reset(char *pool)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2377 {
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
2378 return (spa_export_common(pool, POOL_STATE_UNINITIALIZED, NULL));
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2379 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2380
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2381
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2382 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2383 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2384 * Device manipulation
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2385 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2386 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2387
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2388 /*
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2389 * Add a device to a storage pool.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2390 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2391 int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2392 spa_vdev_add(spa_t *spa, nvlist_t *nvroot)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2393 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2394 uint64_t txg;
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2395 int c, error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2396 vdev_t *rvd = spa->spa_root_vdev;
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2397 vdev_t *vd, *tvd;
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2398 nvlist_t **spares, **l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2399 uint_t nspares, nl2cache;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2400
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2401 txg = spa_vdev_enter(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2402
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2403 if ((error = spa_config_parse(spa, &vd, nvroot, NULL, 0,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2404 VDEV_ALLOC_ADD)) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2405 return (spa_vdev_exit(spa, NULL, txg, error));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2406
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2407 spa->spa_pending_vdev = vd;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2408
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2409 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES, &spares,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2410 &nspares) != 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2411 nspares = 0;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2412
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2413 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE, &l2cache,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2414 &nl2cache) != 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2415 nl2cache = 0;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2416
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2417 if (vd->vdev_children == 0 && nspares == 0 && nl2cache == 0) {
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2418 spa->spa_pending_vdev = NULL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2419 return (spa_vdev_exit(spa, vd, txg, EINVAL));
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2420 }
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2421
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2422 if (vd->vdev_children != 0) {
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2423 if ((error = vdev_create(vd, txg, B_FALSE)) != 0) {
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2424 spa->spa_pending_vdev = NULL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2425 return (spa_vdev_exit(spa, vd, txg, error));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2426 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2427 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2428
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2429 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2430 * We must validate the spares and l2cache devices after checking the
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2431 * children. Otherwise, vdev_inuse() will blindly overwrite the spare.
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2432 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2433 if ((error = spa_validate_aux(spa, nvroot, txg, VDEV_ALLOC_ADD)) != 0) {
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2434 spa->spa_pending_vdev = NULL;
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2435 return (spa_vdev_exit(spa, vd, txg, error));
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2436 }
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2437
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2438 spa->spa_pending_vdev = NULL;
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2439
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2440 /*
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2441 * Transfer each new top-level vdev from vd to rvd.
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2442 */
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2443 for (c = 0; c < vd->vdev_children; c++) {
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2444 tvd = vd->vdev_child[c];
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2445 vdev_remove_child(vd, tvd);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2446 tvd->vdev_id = rvd->vdev_children;
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2447 vdev_add_child(rvd, tvd);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2448 vdev_config_dirty(tvd);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2449 }
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2450
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2451 if (nspares != 0) {
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2452 spa_set_aux_vdevs(&spa->spa_spares, spares, nspares,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2453 ZPOOL_CONFIG_SPARES);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2454 spa_load_spares(spa);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2455 spa->spa_spares.sav_sync = B_TRUE;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2456 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2457
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2458 if (nl2cache != 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2459 spa_set_aux_vdevs(&spa->spa_l2cache, l2cache, nl2cache,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2460 ZPOOL_CONFIG_L2CACHE);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2461 spa_load_l2cache(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2462 spa->spa_l2cache.sav_sync = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2463 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2464
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2465 /*
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2466 * We have to be careful when adding new vdevs to an existing pool.
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2467 * If other threads start allocating from these vdevs before we
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2468 * sync the config cache, and we lose power, then upon reboot we may
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2469 * fail to open the pool because there are DVAs that the config cache
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2470 * can't translate. Therefore, we first add the vdevs without
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2471 * initializing metaslabs; sync the config cache (via spa_vdev_exit());
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2472 * and then let spa_config_update() initialize the new metaslabs.
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2473 *
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2474 * spa_load() checks for added-but-not-initialized vdevs, so that
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2475 * if we lose power at any point in this sequence, the remaining
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2476 * steps will be completed the next time we load the pool.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2477 */
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2478 (void) spa_vdev_exit(spa, vd, txg, 0);
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2479
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2480 mutex_enter(&spa_namespace_lock);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2481 spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2482 mutex_exit(&spa_namespace_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2483
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
2484 return (0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2485 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2486
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2487 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2488 * Attach a device to a mirror. The arguments are the path to any device
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2489 * in the mirror, and the nvroot for the new device. If the path specifies
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2490 * a device that is not mirrored, we automatically insert the mirror vdev.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2491 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2492 * If 'replacing' is specified, the new device is intended to replace the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2493 * existing device; in this case the two devices are made into their own
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2494 * mirror using the 'replacing' vdev, which is functionally identical to
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2495 * the mirror vdev (it actually reuses all the same ops) but has a few
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2496 * extra rules: you can't attach to it after it's been created, and upon
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2497 * completion of resilvering, the first disk (the one being replaced)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2498 * is automatically detached.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2499 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2500 int
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2501 spa_vdev_attach(spa_t *spa, uint64_t guid, nvlist_t *nvroot, int replacing)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2502 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2503 uint64_t txg, open_txg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2504 int error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2505 vdev_t *rvd = spa->spa_root_vdev;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2506 vdev_t *oldvd, *newvd, *newrootvd, *pvd, *tvd;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2507 vdev_ops_t *pvops;
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2508 int is_log;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2509
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2510 txg = spa_vdev_enter(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2511
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2512 oldvd = vdev_lookup_by_guid(rvd, guid);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2513
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2514 if (oldvd == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2515 return (spa_vdev_exit(spa, NULL, txg, ENODEV));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2516
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2517 if (!oldvd->vdev_ops->vdev_op_leaf)
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2518 return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2519
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2520 pvd = oldvd->vdev_parent;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2521
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2522 if ((error = spa_config_parse(spa, &newrootvd, nvroot, NULL, 0,
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2523 VDEV_ALLOC_ADD)) != 0)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2524 return (spa_vdev_exit(spa, NULL, txg, EINVAL));
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2525
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2526 if (newrootvd->vdev_children != 1)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2527 return (spa_vdev_exit(spa, newrootvd, txg, EINVAL));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2528
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2529 newvd = newrootvd->vdev_child[0];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2530
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2531 if (!newvd->vdev_ops->vdev_op_leaf)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2532 return (spa_vdev_exit(spa, newrootvd, txg, EINVAL));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2533
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2534 if ((error = vdev_create(newrootvd, txg, replacing)) != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2535 return (spa_vdev_exit(spa, newrootvd, txg, error));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2536
4527
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2537 /*
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2538 * Spares can't replace logs
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2539 */
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2540 is_log = oldvd->vdev_islog;
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2541 if (is_log && newvd->vdev_isspare)
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2542 return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
5d5b6ba91b17 PSARC 2007/171 ZFS Separate Intent Log
perrin
parents: 4451
diff changeset
2543
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2544 if (!replacing) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2545 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2546 * For attach, the only allowable parent is a mirror or the root
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2547 * vdev.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2548 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2549 if (pvd->vdev_ops != &vdev_mirror_ops &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2550 pvd->vdev_ops != &vdev_root_ops)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2551 return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2552
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2553 pvops = &vdev_mirror_ops;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2554 } else {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2555 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2556 * Active hot spares can only be replaced by inactive hot
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2557 * spares.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2558 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2559 if (pvd->vdev_ops == &vdev_spare_ops &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2560 pvd->vdev_child[1] == oldvd &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2561 !spa_has_spare(spa, newvd->vdev_guid))
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2562 return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2563
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2564 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2565 * If the source is a hot spare, and the parent isn't already a
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2566 * spare, then we want to create a new hot spare. Otherwise, we
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2567 * want to create a replacing vdev. The user is not allowed to
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2568 * attach to a spared vdev child unless the 'isspare' state is
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2569 * the same (spare replaces spare, non-spare replaces
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2570 * non-spare).
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2571 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2572 if (pvd->vdev_ops == &vdev_replacing_ops)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2573 return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2574 else if (pvd->vdev_ops == &vdev_spare_ops &&
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2575 newvd->vdev_isspare != oldvd->vdev_isspare)
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2576 return (spa_vdev_exit(spa, newrootvd, txg, ENOTSUP));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2577 else if (pvd->vdev_ops != &vdev_spare_ops &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2578 newvd->vdev_isspare)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2579 pvops = &vdev_spare_ops;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2580 else
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2581 pvops = &vdev_replacing_ops;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2582 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2583
1175
759d20c7e57b 6366265 attach/replace should allow a new device size at least the min of all devs in a mirror/raidz
lling
parents: 797
diff changeset
2584 /*
759d20c7e57b 6366265 attach/replace should allow a new device size at least the min of all devs in a mirror/raidz
lling
parents: 797
diff changeset
2585 * Compare the new device size with the replaceable/attachable
759d20c7e57b 6366265 attach/replace should allow a new device size at least the min of all devs in a mirror/raidz
lling
parents: 797
diff changeset
2586 * device size.
759d20c7e57b 6366265 attach/replace should allow a new device size at least the min of all devs in a mirror/raidz
lling
parents: 797
diff changeset
2587 */
759d20c7e57b 6366265 attach/replace should allow a new device size at least the min of all devs in a mirror/raidz
lling
parents: 797
diff changeset
2588 if (newvd->vdev_psize < vdev_get_rsize(oldvd))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2589 return (spa_vdev_exit(spa, newrootvd, txg, EOVERFLOW));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2590
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2591 /*
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2592 * The new device cannot have a higher alignment requirement
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2593 * than the top-level vdev.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2594 */
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2595 if (newvd->vdev_ashift > oldvd->vdev_top->vdev_ashift)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2596 return (spa_vdev_exit(spa, newrootvd, txg, EDOM));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2597
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2598 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2599 * If this is an in-place replacement, update oldvd's path and devid
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2600 * to make it distinguishable from newvd, and unopenable from now on.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2601 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2602 if (strcmp(oldvd->vdev_path, newvd->vdev_path) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2603 spa_strfree(oldvd->vdev_path);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2604 oldvd->vdev_path = kmem_alloc(strlen(newvd->vdev_path) + 5,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2605 KM_SLEEP);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2606 (void) sprintf(oldvd->vdev_path, "%s/%s",
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2607 newvd->vdev_path, "old");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2608 if (oldvd->vdev_devid != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2609 spa_strfree(oldvd->vdev_devid);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2610 oldvd->vdev_devid = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2611 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2612 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2613
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2614 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2615 * If the parent is not a mirror, or if we're replacing, insert the new
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2616 * mirror/replacing/spare vdev above oldvd.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2617 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2618 if (pvd->vdev_ops != pvops)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2619 pvd = vdev_add_parent(oldvd, pvops);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2620
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2621 ASSERT(pvd->vdev_top->vdev_parent == rvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2622 ASSERT(pvd->vdev_ops == pvops);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2623 ASSERT(oldvd->vdev_parent == pvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2624
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2625 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2626 * Extract the new device from its root and add it to pvd.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2627 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2628 vdev_remove_child(newrootvd, newvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2629 newvd->vdev_id = pvd->vdev_children;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2630 vdev_add_child(pvd, newvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2631
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2632 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2633 * If newvd is smaller than oldvd, but larger than its rsize,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2634 * the addition of newvd may have decreased our parent's asize.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2635 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2636 pvd->vdev_asize = MIN(pvd->vdev_asize, newvd->vdev_asize);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2637
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2638 tvd = newvd->vdev_top;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2639 ASSERT(pvd->vdev_top == tvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2640 ASSERT(tvd->vdev_parent == rvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2641
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2642 vdev_config_dirty(tvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2643
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2644 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2645 * Set newvd's DTL to [TXG_INITIAL, open_txg]. It will propagate
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2646 * upward when spa_vdev_exit() calls vdev_dtl_reassess().
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2647 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2648 open_txg = txg + TXG_CONCURRENT_STATES - 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2649
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2650 mutex_enter(&newvd->vdev_dtl_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2651 space_map_add(&newvd->vdev_dtl_map, TXG_INITIAL,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2652 open_txg - TXG_INITIAL + 1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2653 mutex_exit(&newvd->vdev_dtl_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2654
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2655 if (newvd->vdev_isspare)
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2656 spa_spare_activate(newvd);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2657
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2658 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2659 * Mark newvd's DTL dirty in this txg.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2660 */
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2661 vdev_dirty(tvd, VDD_DTL, newvd, txg);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2662
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2663 (void) spa_vdev_exit(spa, newrootvd, open_txg, 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2664
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2665 /*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2666 * Kick off a resilver to update newvd. We need to grab the namespace
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2667 * lock because spa_scrub() needs to post a sysevent with the pool name.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2668 */
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2669 mutex_enter(&spa_namespace_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2670 VERIFY(spa_scrub(spa, POOL_SCRUB_RESILVER, B_TRUE) == 0);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2671 mutex_exit(&spa_namespace_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2672
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2673 return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2674 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2675
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2676 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2677 * Detach a device from a mirror or replacing vdev.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2678 * If 'replace_done' is specified, only detach if the parent
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2679 * is a replacing vdev.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2680 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2681 int
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2682 spa_vdev_detach(spa_t *spa, uint64_t guid, int replace_done)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2683 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2684 uint64_t txg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2685 int c, t, error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2686 vdev_t *rvd = spa->spa_root_vdev;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2687 vdev_t *vd, *pvd, *cvd, *tvd;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2688 boolean_t unspare = B_FALSE;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2689 uint64_t unspare_guid;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2690
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2691 txg = spa_vdev_enter(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2692
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
2693 vd = vdev_lookup_by_guid(rvd, guid);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2694
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2695 if (vd == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2696 return (spa_vdev_exit(spa, NULL, txg, ENODEV));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2697
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2698 if (!vd->vdev_ops->vdev_op_leaf)
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2699 return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
2700
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2701 pvd = vd->vdev_parent;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2702
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2703 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2704 * If replace_done is specified, only remove this device if it's
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2705 * the first child of a replacing vdev. For the 'spare' vdev, either
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2706 * disk can be removed.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2707 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2708 if (replace_done) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2709 if (pvd->vdev_ops == &vdev_replacing_ops) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2710 if (vd->vdev_id != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2711 return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2712 } else if (pvd->vdev_ops != &vdev_spare_ops) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2713 return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2714 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2715 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2716
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2717 ASSERT(pvd->vdev_ops != &vdev_spare_ops ||
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
2718 spa_version(spa) >= SPA_VERSION_SPARES);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2719
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2720 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2721 * Only mirror, replacing, and spare vdevs support detach.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2722 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2723 if (pvd->vdev_ops != &vdev_replacing_ops &&
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2724 pvd->vdev_ops != &vdev_mirror_ops &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2725 pvd->vdev_ops != &vdev_spare_ops)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2726 return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2727
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2728 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2729 * If there's only one replica, you can't detach it.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2730 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2731 if (pvd->vdev_children <= 1)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2732 return (spa_vdev_exit(spa, NULL, txg, EBUSY));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2733
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2734 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2735 * If all siblings have non-empty DTLs, this device may have the only
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2736 * valid copy of the data, which means we cannot safely detach it.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2737 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2738 * XXX -- as in the vdev_offline() case, we really want a more
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2739 * precise DTL check.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2740 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2741 for (c = 0; c < pvd->vdev_children; c++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2742 uint64_t dirty;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2743
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2744 cvd = pvd->vdev_child[c];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2745 if (cvd == vd)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2746 continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2747 if (vdev_is_dead(cvd))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2748 continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2749 mutex_enter(&cvd->vdev_dtl_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2750 dirty = cvd->vdev_dtl_map.sm_space |
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2751 cvd->vdev_dtl_scrub.sm_space;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2752 mutex_exit(&cvd->vdev_dtl_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2753 if (!dirty)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2754 break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2755 }
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2756
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2757 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2758 * If we are a replacing or spare vdev, then we can always detach the
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2759 * latter child, as that is how one cancels the operation.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2760 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2761 if ((pvd->vdev_ops == &vdev_mirror_ops || vd->vdev_id != 1) &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2762 c == pvd->vdev_children)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2763 return (spa_vdev_exit(spa, NULL, txg, EBUSY));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2764
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2765 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2766 * If we are detaching the original disk from a spare, then it implies
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2767 * that the spare should become a real disk, and be removed from the
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2768 * active spare list for the pool.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2769 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2770 if (pvd->vdev_ops == &vdev_spare_ops &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2771 vd->vdev_id == 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2772 unspare = B_TRUE;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2773
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2774 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2775 * Erase the disk labels so the disk can be used for other things.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2776 * This must be done after all other error cases are handled,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2777 * but before we disembowel vd (so we can still do I/O to it).
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2778 * But if we can't do it, don't treat the error as fatal --
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2779 * it may be that the unwritability of the disk is the reason
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2780 * it's being detached!
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2781 */
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2782 error = vdev_label_init(vd, 0, VDEV_LABEL_REMOVE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2783
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2784 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2785 * Remove vd from its parent and compact the parent's children.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2786 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2787 vdev_remove_child(pvd, vd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2788 vdev_compact_children(pvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2790 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2791 * Remember one of the remaining children so we can get tvd below.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2792 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2793 cvd = pvd->vdev_child[0];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2794
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2795 /*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2796 * If we need to remove the remaining child from the list of hot spares,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2797 * do it now, marking the vdev as no longer a spare in the process. We
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2798 * must do this before vdev_remove_parent(), because that can change the
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2799 * GUID if it creates a new toplevel GUID.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2800 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2801 if (unspare) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2802 ASSERT(cvd->vdev_isspare);
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2803 spa_spare_remove(cvd);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2804 unspare_guid = cvd->vdev_guid;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2805 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2806
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2807 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2808 * If the parent mirror/replacing vdev only has one child,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2809 * the parent is no longer needed. Remove it from the tree.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2810 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2811 if (pvd->vdev_children == 1)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2812 vdev_remove_parent(cvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2813
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2814 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2815 * We don't set tvd until now because the parent we just removed
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2816 * may have been the previous top-level vdev.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2817 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2818 tvd = cvd->vdev_top;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2819 ASSERT(tvd->vdev_parent == rvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2820
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2821 /*
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2822 * Reevaluate the parent vdev state.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2823 */
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2824 vdev_propagate_state(cvd);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2825
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2826 /*
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2827 * If the device we just detached was smaller than the others, it may be
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2828 * possible to add metaslabs (i.e. grow the pool). vdev_metaslab_init()
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2829 * can't fail because the existing metaslabs are already in core, so
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2830 * there's nothing to read from disk.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2831 */
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2832 VERIFY(vdev_metaslab_init(tvd, txg) == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2833
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2834 vdev_config_dirty(tvd);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2835
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2836 /*
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2837 * Mark vd's DTL as dirty in this txg. vdev_dtl_sync() will see that
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2838 * vd->vdev_detached is set and free vd's DTL object in syncing context.
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2839 * But first make sure we're not on any *other* txg's DTL list, to
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2840 * prevent vd from being accessed after it's freed.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2841 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2842 for (t = 0; t < TXG_SIZE; t++)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2843 (void) txg_list_remove_this(&tvd->vdev_dtl_list, vd, t);
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2844 vd->vdev_detached = B_TRUE;
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
2845 vdev_dirty(tvd, VDD_DTL, vd, txg);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
2846
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2847 spa_event_notify(spa, vd, ESC_ZFS_VDEV_REMOVE);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
2848
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2849 error = spa_vdev_exit(spa, vd, txg, 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2850
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2851 /*
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2852 * If this was the removal of the original device in a hot spare vdev,
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2853 * then we want to go through and remove the device from the hot spare
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
2854 * list of every other pool.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2855 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2856 if (unspare) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2857 spa = NULL;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2858 mutex_enter(&spa_namespace_lock);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2859 while ((spa = spa_next(spa)) != NULL) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2860 if (spa->spa_state != POOL_STATE_ACTIVE)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2861 continue;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2862
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2863 (void) spa_vdev_remove(spa, unspare_guid, B_TRUE);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2864 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2865 mutex_exit(&spa_namespace_lock);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2866 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2867
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2868 return (error);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2869 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2870
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2871 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2872 * Remove a spares vdev from the nvlist config.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2873 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2874 static int
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2875 spa_remove_spares(spa_aux_vdev_t *sav, uint64_t guid, boolean_t unspare,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2876 nvlist_t **spares, int nspares, vdev_t *vd)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2877 {
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2878 nvlist_t *nv, **newspares;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2879 int i, j;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2880
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2881 nv = NULL;
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2882 for (i = 0; i < nspares; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2883 uint64_t theguid;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2884
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2885 VERIFY(nvlist_lookup_uint64(spares[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2886 ZPOOL_CONFIG_GUID, &theguid) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2887 if (theguid == guid) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2888 nv = spares[i];
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2889 break;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2890 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2891 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2892
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2893 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2894 * Only remove the hot spare if it's not currently in use in this pool.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2895 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2896 if (nv == NULL && vd == NULL)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2897 return (ENOENT);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2898
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2899 if (nv == NULL && vd != NULL)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2900 return (ENOTSUP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2901
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2902 if (!unspare && nv != NULL && vd != NULL)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2903 return (EBUSY);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2904
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2905 if (nspares == 1) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2906 newspares = NULL;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2907 } else {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2908 newspares = kmem_alloc((nspares - 1) * sizeof (void *),
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2909 KM_SLEEP);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2910 for (i = 0, j = 0; i < nspares; i++) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2911 if (spares[i] != nv)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2912 VERIFY(nvlist_dup(spares[i],
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2913 &newspares[j++], KM_SLEEP) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2914 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2915 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2916
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2917 VERIFY(nvlist_remove(sav->sav_config, ZPOOL_CONFIG_SPARES,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2918 DATA_TYPE_NVLIST_ARRAY) == 0);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2919 VERIFY(nvlist_add_nvlist_array(sav->sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2920 ZPOOL_CONFIG_SPARES, newspares, nspares - 1) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2921 for (i = 0; i < nspares - 1; i++)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2922 nvlist_free(newspares[i]);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
2923 kmem_free(newspares, (nspares - 1) * sizeof (void *));
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2924
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2925 return (0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2926 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2927
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2928 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2929 * Remove an l2cache vdev from the nvlist config.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2930 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2931 static int
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2932 spa_remove_l2cache(spa_aux_vdev_t *sav, uint64_t guid, nvlist_t **l2cache,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2933 int nl2cache, vdev_t *vd)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2934 {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2935 nvlist_t *nv, **newl2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2936 int i, j;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2937
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2938 nv = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2939 for (i = 0; i < nl2cache; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2940 uint64_t theguid;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2941
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2942 VERIFY(nvlist_lookup_uint64(l2cache[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2943 ZPOOL_CONFIG_GUID, &theguid) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2944 if (theguid == guid) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2945 nv = l2cache[i];
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2946 break;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2947 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2948 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2949
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2950 if (vd == NULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2951 for (i = 0; i < nl2cache; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2952 if (sav->sav_vdevs[i]->vdev_guid == guid) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2953 vd = sav->sav_vdevs[i];
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2954 break;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2955 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2956 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2957 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2958
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2959 if (nv == NULL && vd == NULL)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2960 return (ENOENT);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2961
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2962 if (nv == NULL && vd != NULL)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2963 return (ENOTSUP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2964
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2965 if (nl2cache == 1) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2966 newl2cache = NULL;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2967 } else {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2968 newl2cache = kmem_alloc((nl2cache - 1) * sizeof (void *),
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2969 KM_SLEEP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2970 for (i = 0, j = 0; i < nl2cache; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2971 if (l2cache[i] != nv)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2972 VERIFY(nvlist_dup(l2cache[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2973 &newl2cache[j++], KM_SLEEP) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2974 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2975 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2976
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2977 VERIFY(nvlist_remove(sav->sav_config, ZPOOL_CONFIG_L2CACHE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2978 DATA_TYPE_NVLIST_ARRAY) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2979 VERIFY(nvlist_add_nvlist_array(sav->sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2980 ZPOOL_CONFIG_L2CACHE, newl2cache, nl2cache - 1) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2981 for (i = 0; i < nl2cache - 1; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2982 nvlist_free(newl2cache[i]);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2983 kmem_free(newl2cache, (nl2cache - 1) * sizeof (void *));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2984
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2985 return (0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2986 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2987
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2988 /*
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2989 * Remove a device from the pool. Currently, this supports removing only hot
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2990 * spares and level 2 ARC devices.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2991 */
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2992 int
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2993 spa_vdev_remove(spa_t *spa, uint64_t guid, boolean_t unspare)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2994 {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2995 vdev_t *vd;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2996 nvlist_t **spares, **l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2997 uint_t nspares, nl2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2998 int error = 0;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
2999
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3000 spa_config_enter(spa, RW_WRITER, FTAG);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3001
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3002 vd = spa_lookup_by_guid(spa, guid);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3003
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3004 if (spa->spa_spares.sav_vdevs != NULL &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3005 spa_spare_exists(guid, NULL) &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3006 nvlist_lookup_nvlist_array(spa->spa_spares.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3007 ZPOOL_CONFIG_SPARES, &spares, &nspares) == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3008 if ((error = spa_remove_spares(&spa->spa_spares, guid, unspare,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3009 spares, nspares, vd)) != 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3010 goto out;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3011 spa_load_spares(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3012 spa->spa_spares.sav_sync = B_TRUE;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3013 goto out;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3014 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3015
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3016 if (spa->spa_l2cache.sav_vdevs != NULL &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3017 spa_l2cache_exists(guid, NULL) &&
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3018 nvlist_lookup_nvlist_array(spa->spa_l2cache.sav_config,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3019 ZPOOL_CONFIG_L2CACHE, &l2cache, &nl2cache) == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3020 if ((error = spa_remove_l2cache(&spa->spa_l2cache, guid,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3021 l2cache, nl2cache, vd)) != 0)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3022 goto out;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3023 spa_load_l2cache(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3024 spa->spa_l2cache.sav_sync = B_TRUE;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3025 }
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3026
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3027 out:
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3028 spa_config_exit(spa, FTAG);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3029 return (error);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3030 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3031
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3032 /*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3033 * Find any device that's done replacing, or a vdev marked 'unspare' that's
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3034 * current spared, so we can detach it.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3035 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3036 static vdev_t *
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3037 spa_vdev_resilver_done_hunt(vdev_t *vd)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3038 {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3039 vdev_t *newvd, *oldvd;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3040 int c;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3041
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3042 for (c = 0; c < vd->vdev_children; c++) {
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3043 oldvd = spa_vdev_resilver_done_hunt(vd->vdev_child[c]);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3044 if (oldvd != NULL)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3045 return (oldvd);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3046 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3047
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3048 /*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3049 * Check for a completed replacement.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3050 */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3051 if (vd->vdev_ops == &vdev_replacing_ops && vd->vdev_children == 2) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3052 oldvd = vd->vdev_child[0];
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3053 newvd = vd->vdev_child[1];
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3054
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3055 mutex_enter(&newvd->vdev_dtl_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3056 if (newvd->vdev_dtl_map.sm_space == 0 &&
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3057 newvd->vdev_dtl_scrub.sm_space == 0) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3058 mutex_exit(&newvd->vdev_dtl_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3059 return (oldvd);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3060 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3061 mutex_exit(&newvd->vdev_dtl_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3062 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3063
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3064 /*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3065 * Check for a completed resilver with the 'unspare' flag set.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3066 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3067 if (vd->vdev_ops == &vdev_spare_ops && vd->vdev_children == 2) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3068 newvd = vd->vdev_child[0];
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3069 oldvd = vd->vdev_child[1];
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3070
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3071 mutex_enter(&newvd->vdev_dtl_lock);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3072 if (newvd->vdev_unspare &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3073 newvd->vdev_dtl_map.sm_space == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3074 newvd->vdev_dtl_scrub.sm_space == 0) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3075 newvd->vdev_unspare = 0;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3076 mutex_exit(&newvd->vdev_dtl_lock);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3077 return (oldvd);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3078 }
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3079 mutex_exit(&newvd->vdev_dtl_lock);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3080 }
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3081
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3082 return (NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3083 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3084
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3085 static void
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3086 spa_vdev_resilver_done(spa_t *spa)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3087 {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3088 vdev_t *vd;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3089 vdev_t *pvd;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3090 uint64_t guid;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3091 uint64_t pguid = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3092
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3093 spa_config_enter(spa, RW_READER, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3094
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3095 while ((vd = spa_vdev_resilver_done_hunt(spa->spa_root_vdev)) != NULL) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3096 guid = vd->vdev_guid;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3097 /*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3098 * If we have just finished replacing a hot spared device, then
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3099 * we need to detach the parent's first child (the original hot
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3100 * spare) as well.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3101 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3102 pvd = vd->vdev_parent;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3103 if (pvd->vdev_parent->vdev_ops == &vdev_spare_ops &&
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3104 pvd->vdev_id == 0) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3105 ASSERT(pvd->vdev_ops == &vdev_replacing_ops);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3106 ASSERT(pvd->vdev_parent->vdev_children == 2);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3107 pguid = pvd->vdev_parent->vdev_child[1]->vdev_guid;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3108 }
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3109 spa_config_exit(spa, FTAG);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3110 if (spa_vdev_detach(spa, guid, B_TRUE) != 0)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3111 return;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3112 if (pguid != 0 && spa_vdev_detach(spa, pguid, B_TRUE) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3113 return;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3114 spa_config_enter(spa, RW_READER, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3115 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3116
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3117 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3118 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3119
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3120 /*
1354
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3121 * Update the stored path for this vdev. Dirty the vdev configuration, relying
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3122 * on spa_vdev_enter/exit() to synchronize the labels and cache.
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3123 */
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3124 int
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3125 spa_vdev_setpath(spa_t *spa, uint64_t guid, const char *newpath)
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3126 {
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3127 vdev_t *rvd, *vd;
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3128 uint64_t txg;
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3129
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3130 rvd = spa->spa_root_vdev;
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3131
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3132 txg = spa_vdev_enter(spa);
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3133
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3134 if ((vd = vdev_lookup_by_guid(rvd, guid)) == NULL) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3135 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3136 * Determine if this is a reference to a hot spare or l2cache
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3137 * device. If it is, update the path as stored in their
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3138 * device list.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3139 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3140 nvlist_t **spares, **l2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3141 uint_t i, nspares, nl2cache;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3142
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3143 if (spa->spa_spares.sav_config != NULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3144 VERIFY(nvlist_lookup_nvlist_array(
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3145 spa->spa_spares.sav_config, ZPOOL_CONFIG_SPARES,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3146 &spares, &nspares) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3147 for (i = 0; i < nspares; i++) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3148 uint64_t theguid;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3149 VERIFY(nvlist_lookup_uint64(spares[i],
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3150 ZPOOL_CONFIG_GUID, &theguid) == 0);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3151 if (theguid == guid) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3152 VERIFY(nvlist_add_string(spares[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3153 ZPOOL_CONFIG_PATH, newpath) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3154 spa_load_spares(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3155 spa->spa_spares.sav_sync = B_TRUE;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3156 return (spa_vdev_exit(spa, NULL, txg,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3157 0));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3158 }
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3159 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3160 }
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3161
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3162 if (spa->spa_l2cache.sav_config != NULL) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3163 VERIFY(nvlist_lookup_nvlist_array(
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3164 spa->spa_l2cache.sav_config, ZPOOL_CONFIG_L2CACHE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3165 &l2cache, &nl2cache) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3166 for (i = 0; i < nl2cache; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3167 uint64_t theguid;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3168 VERIFY(nvlist_lookup_uint64(l2cache[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3169 ZPOOL_CONFIG_GUID, &theguid) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3170 if (theguid == guid) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3171 VERIFY(nvlist_add_string(l2cache[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3172 ZPOOL_CONFIG_PATH, newpath) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3173 spa_load_l2cache(spa);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3174 spa->spa_l2cache.sav_sync = B_TRUE;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3175 return (spa_vdev_exit(spa, NULL, txg,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3176 0));
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3177 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3178 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3179 }
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3180
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3181 return (spa_vdev_exit(spa, NULL, txg, ENOENT));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3182 }
1354
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3183
1585
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
3184 if (!vd->vdev_ops->vdev_op_leaf)
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
3185 return (spa_vdev_exit(spa, NULL, txg, ENOTSUP));
4ad213e858a9 6395480 ztest ASSERT: rbt.bt_objset == wbt.bt_objset, line 2041
bonwick
parents: 1544
diff changeset
3186
1354
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3187 spa_strfree(vd->vdev_path);
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3188 vd->vdev_path = spa_strdup(newpath);
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3189
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3190 vdev_config_dirty(vd->vdev_top);
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3191
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3192 return (spa_vdev_exit(spa, NULL, txg, 0));
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3193 }
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3194
81359ee1ee63 6362672 import gets confused about overlapping slices
eschrock
parents: 1175
diff changeset
3195 /*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3196 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3197 * SPA Scrubbing
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3198 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3199 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3200
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3201 static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3202 spa_scrub_io_done(zio_t *zio)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3203 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3204 spa_t *spa = zio->io_spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3205
4309
3dfde0f4662d 6542676 ARC needs to track meta-data memory overhead
maybee
parents: 4178
diff changeset
3206 arc_data_buf_free(zio->io_data, zio->io_size);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3207
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3208 mutex_enter(&spa->spa_scrub_lock);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3209 if (zio->io_error && !(zio->io_flags & ZIO_FLAG_SPECULATIVE)) {
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3210 vdev_t *vd = zio->io_vd ? zio->io_vd : spa->spa_root_vdev;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3211 spa->spa_scrub_errors++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3212 mutex_enter(&vd->vdev_stat_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3213 vd->vdev_stat.vs_scrub_errors++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3214 mutex_exit(&vd->vdev_stat_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3215 }
3697
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3216
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3217 if (--spa->spa_scrub_inflight < spa->spa_scrub_maxinflight)
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3218 cv_broadcast(&spa->spa_scrub_io_cv);
3697
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3219
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3220 ASSERT(spa->spa_scrub_inflight >= 0);
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3221
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3222 mutex_exit(&spa->spa_scrub_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3223 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3224
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3225 static void
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3226 spa_scrub_io_start(spa_t *spa, blkptr_t *bp, int priority, int flags,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3227 zbookmark_t *zb)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3228 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3229 size_t size = BP_GET_LSIZE(bp);
3697
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3230 void *data;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3231
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3232 mutex_enter(&spa->spa_scrub_lock);
3697
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3233 /*
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3234 * Do not give too much work to vdev(s).
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3235 */
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3236 while (spa->spa_scrub_inflight >= spa->spa_scrub_maxinflight) {
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3237 cv_wait(&spa->spa_scrub_io_cv, &spa->spa_scrub_lock);
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3238 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3239 spa->spa_scrub_inflight++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3240 mutex_exit(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3241
4309
3dfde0f4662d 6542676 ARC needs to track meta-data memory overhead
maybee
parents: 4178
diff changeset
3242 data = arc_data_buf_alloc(size);
3697
5340a4d98e0b 6456888 zpool scrubbing leads to memory exhaustion and system hang
mishra
parents: 3377
diff changeset
3243
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3244 if (zb->zb_level == -1 && BP_GET_TYPE(bp) != DMU_OT_OBJSET)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3245 flags |= ZIO_FLAG_SPECULATIVE; /* intent log block */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3246
1807
35c8b566d7af 6410711 intent log blocks don't get invited to pool parties
bonwick
parents: 1775
diff changeset
3247 flags |= ZIO_FLAG_SCRUB_THREAD | ZIO_FLAG_CANFAIL;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3248
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3249 zio_nowait(zio_read(NULL, spa, bp, data, size,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3250 spa_scrub_io_done, NULL, priority, flags, zb));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3251 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3252
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3253 /* ARGSUSED */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3254 static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3255 spa_scrub_cb(traverse_blk_cache_t *bc, spa_t *spa, void *a)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3256 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3257 blkptr_t *bp = &bc->bc_blkptr;
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3258 vdev_t *vd = spa->spa_root_vdev;
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3259 dva_t *dva = bp->blk_dva;
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3260 int needs_resilver = B_FALSE;
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3261 int d;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3262
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3263 if (bc->bc_errno) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3264 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3265 * We can't scrub this block, but we can continue to scrub
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3266 * the rest of the pool. Note the error and move along.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3267 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3268 mutex_enter(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3269 spa->spa_scrub_errors++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3270 mutex_exit(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3271
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3272 mutex_enter(&vd->vdev_stat_lock);
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3273 vd->vdev_stat.vs_scrub_errors++;
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3274 mutex_exit(&vd->vdev_stat_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3275
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3276 return (ERESTART);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3277 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3278
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3279 ASSERT(bp->blk_birth < spa->spa_scrub_maxtxg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3280
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3281 for (d = 0; d < BP_GET_NDVAS(bp); d++) {
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3282 vd = vdev_lookup_top(spa, DVA_GET_VDEV(&dva[d]));
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3283
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3284 ASSERT(vd != NULL);
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3285
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3286 /*
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3287 * Keep track of how much data we've examined so that
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3288 * zpool(1M) status can make useful progress reports.
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3289 */
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3290 mutex_enter(&vd->vdev_stat_lock);
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3291 vd->vdev_stat.vs_scrub_examined += DVA_GET_ASIZE(&dva[d]);
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3292 mutex_exit(&vd->vdev_stat_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3293
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3294 if (spa->spa_scrub_type == POOL_SCRUB_RESILVER) {
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3295 if (DVA_GET_GANG(&dva[d])) {
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3296 /*
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3297 * Gang members may be spread across multiple
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3298 * vdevs, so the best we can do is look at the
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3299 * pool-wide DTL.
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3300 * XXX -- it would be better to change our
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3301 * allocation policy to ensure that this can't
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3302 * happen.
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3303 */
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3304 vd = spa->spa_root_vdev;
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3305 }
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3306 if (vdev_dtl_contains(&vd->vdev_dtl_map,
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3307 bp->blk_birth, 1))
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3308 needs_resilver = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3309 }
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3310 }
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3311
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3312 if (spa->spa_scrub_type == POOL_SCRUB_EVERYTHING)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3313 spa_scrub_io_start(spa, bp, ZIO_PRIORITY_SCRUB,
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3314 ZIO_FLAG_SCRUB, &bc->bc_bookmark);
1775
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3315 else if (needs_resilver)
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3316 spa_scrub_io_start(spa, bp, ZIO_PRIORITY_RESILVER,
e51e26b432c0 6410698 ZFS metadata needs to be more highly replicated (ditto blocks)
billm
parents: 1760
diff changeset
3317 ZIO_FLAG_RESILVER, &bc->bc_bookmark);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3318
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3319 return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3320 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3321
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3322 static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3323 spa_scrub_thread(spa_t *spa)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3324 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3325 callb_cpr_t cprinfo;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3326 traverse_handle_t *th = spa->spa_scrub_th;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3327 vdev_t *rvd = spa->spa_root_vdev;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3328 pool_scrub_type_t scrub_type = spa->spa_scrub_type;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3329 int error = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3330 boolean_t complete;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3331
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3332 CALLB_CPR_INIT(&cprinfo, &spa->spa_scrub_lock, callb_generic_cpr, FTAG);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3333
797
af56ba8b7e41 6344108 snapshot create/delete interlock with scrub/resilver must sync txg
bonwick
parents: 789
diff changeset
3334 /*
af56ba8b7e41 6344108 snapshot create/delete interlock with scrub/resilver must sync txg
bonwick
parents: 789
diff changeset
3335 * If we're restarting due to a snapshot create/delete,
af56ba8b7e41 6344108 snapshot create/delete interlock with scrub/resilver must sync txg
bonwick
parents: 789
diff changeset
3336 * wait for that to complete.
af56ba8b7e41 6344108 snapshot create/delete interlock with scrub/resilver must sync txg
bonwick
parents: 789
diff changeset
3337 */
af56ba8b7e41 6344108 snapshot create/delete interlock with scrub/resilver must sync txg
bonwick
parents: 789
diff changeset
3338 txg_wait_synced(spa_get_dsl(spa), 0);
af56ba8b7e41 6344108 snapshot create/delete interlock with scrub/resilver must sync txg
bonwick
parents: 789
diff changeset
3339
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3340 dprintf("start %s mintxg=%llu maxtxg=%llu\n",
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3341 scrub_type == POOL_SCRUB_RESILVER ? "resilver" : "scrub",
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3342 spa->spa_scrub_mintxg, spa->spa_scrub_maxtxg);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3343
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3344 spa_config_enter(spa, RW_WRITER, FTAG);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3345 vdev_reopen(rvd); /* purge all vdev caches */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3346 vdev_config_dirty(rvd); /* rewrite all disk labels */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3347 vdev_scrub_stat_update(rvd, scrub_type, B_FALSE);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3348 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3349
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3350 mutex_enter(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3351 spa->spa_scrub_errors = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3352 spa->spa_scrub_active = 1;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3353 ASSERT(spa->spa_scrub_inflight == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3354
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3355 while (!spa->spa_scrub_stop) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3356 CALLB_CPR_SAFE_BEGIN(&cprinfo);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3357 while (spa->spa_scrub_suspended) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3358 spa->spa_scrub_active = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3359 cv_broadcast(&spa->spa_scrub_cv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3360 cv_wait(&spa->spa_scrub_cv, &spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3361 spa->spa_scrub_active = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3362 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3363 CALLB_CPR_SAFE_END(&cprinfo, &spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3364
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3365 if (spa->spa_scrub_restart_txg != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3366 break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3367
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3368 mutex_exit(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3369 error = traverse_more(th);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3370 mutex_enter(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3371 if (error != EAGAIN)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3372 break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3373 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3374
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3375 while (spa->spa_scrub_inflight)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3376 cv_wait(&spa->spa_scrub_io_cv, &spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3377
1601
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3378 spa->spa_scrub_active = 0;
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3379 cv_broadcast(&spa->spa_scrub_cv);
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3380
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3381 mutex_exit(&spa->spa_scrub_lock);
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3382
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3383 spa_config_enter(spa, RW_WRITER, FTAG);
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3384
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3385 mutex_enter(&spa->spa_scrub_lock);
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3386
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3387 /*
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3388 * Note: we check spa_scrub_restart_txg under both spa_scrub_lock
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3389 * AND the spa config lock to synchronize with any config changes
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3390 * that revise the DTLs under spa_vdev_enter() / spa_vdev_exit().
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3391 */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3392 if (spa->spa_scrub_restart_txg != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3393 error = ERESTART;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3394
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3395 if (spa->spa_scrub_stop)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3396 error = EINTR;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3397
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3398 /*
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3399 * Even if there were uncorrectable errors, we consider the scrub
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3400 * completed. The downside is that if there is a transient error during
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3401 * a resilver, we won't resilver the data properly to the target. But
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3402 * if the damage is permanent (more likely) we will resilver forever,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3403 * which isn't really acceptable. Since there is enough information for
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3404 * the user to know what has failed and why, this seems like a more
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3405 * tractable approach.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3406 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3407 complete = (error == 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3408
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3409 dprintf("end %s to maxtxg=%llu %s, traverse=%d, %llu errors, stop=%u\n",
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3410 scrub_type == POOL_SCRUB_RESILVER ? "resilver" : "scrub",
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3411 spa->spa_scrub_maxtxg, complete ? "done" : "FAILED",
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3412 error, spa->spa_scrub_errors, spa->spa_scrub_stop);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3413
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3414 mutex_exit(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3415
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3416 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3417 * If the scrub/resilver completed, update all DTLs to reflect this.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3418 * Whether it succeeded or not, vacate all temporary scrub DTLs.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3419 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3420 vdev_dtl_reassess(rvd, spa_last_synced_txg(spa) + 1,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3421 complete ? spa->spa_scrub_maxtxg : 0, B_TRUE);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3422 vdev_scrub_stat_update(rvd, POOL_SCRUB_NONE, complete);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3423 spa_errlog_rotate(spa);
1601
438b928f80c7 6397197 ADVANCE_ZIL should only visit claimed-but-not-yet-replayed logs
bonwick
parents: 1585
diff changeset
3424
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3425 if (scrub_type == POOL_SCRUB_RESILVER && complete)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3426 spa_event_notify(spa, NULL, ESC_ZFS_RESILVER_FINISH);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3427
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3428 spa_config_exit(spa, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3429
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3430 mutex_enter(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3431
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3432 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3433 * We may have finished replacing a device.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3434 * Let the async thread assess this and handle the detach.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3435 */
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3436 spa_async_request(spa, SPA_ASYNC_RESILVER_DONE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3437
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3438 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3439 * If we were told to restart, our final act is to start a new scrub.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3440 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3441 if (error == ERESTART)
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3442 spa_async_request(spa, scrub_type == POOL_SCRUB_RESILVER ?
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3443 SPA_ASYNC_RESILVER : SPA_ASYNC_SCRUB);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3444
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3445 spa->spa_scrub_type = POOL_SCRUB_NONE;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3446 spa->spa_scrub_active = 0;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3447 spa->spa_scrub_thread = NULL;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3448 cv_broadcast(&spa->spa_scrub_cv);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3449 CALLB_CPR_EXIT(&cprinfo); /* drops &spa->spa_scrub_lock */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3450 thread_exit();
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3451 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3452
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3453 void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3454 spa_scrub_suspend(spa_t *spa)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3455 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3456 mutex_enter(&spa->spa_scrub_lock);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3457 spa->spa_scrub_suspended++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3458 while (spa->spa_scrub_active) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3459 cv_broadcast(&spa->spa_scrub_cv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3460 cv_wait(&spa->spa_scrub_cv, &spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3461 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3462 while (spa->spa_scrub_inflight)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3463 cv_wait(&spa->spa_scrub_io_cv, &spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3464 mutex_exit(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3465 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3466
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3467 void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3468 spa_scrub_resume(spa_t *spa)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3469 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3470 mutex_enter(&spa->spa_scrub_lock);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3471 ASSERT(spa->spa_scrub_suspended != 0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3472 if (--spa->spa_scrub_suspended == 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3473 cv_broadcast(&spa->spa_scrub_cv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3474 mutex_exit(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3475 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3476
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3477 void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3478 spa_scrub_restart(spa_t *spa, uint64_t txg)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3479 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3480 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3481 * Something happened (e.g. snapshot create/delete) that means
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3482 * we must restart any in-progress scrubs. The itinerary will
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3483 * fix this properly.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3484 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3485 mutex_enter(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3486 spa->spa_scrub_restart_txg = txg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3487 mutex_exit(&spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3488 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3489
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3490 int
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3491 spa_scrub(spa_t *spa, pool_scrub_type_t type, boolean_t force)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3492 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3493 space_seg_t *ss;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3494 uint64_t mintxg, maxtxg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3495 vdev_t *rvd = spa->spa_root_vdev;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3496
4808
63629eaeb41a 6498144 ::kmastat could be even easier to read
ek110237
parents: 4787
diff changeset
3497 ASSERT(MUTEX_HELD(&spa_namespace_lock));
63629eaeb41a 6498144 ::kmastat could be even easier to read
ek110237
parents: 4787
diff changeset
3498 ASSERT(!spa_config_held(spa, RW_WRITER));
63629eaeb41a 6498144 ::kmastat could be even easier to read
ek110237
parents: 4787
diff changeset
3499
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3500 if ((uint_t)type >= POOL_SCRUB_TYPES)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3501 return (ENOTSUP);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3502
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3503 mutex_enter(&spa->spa_scrub_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3504
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3505 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3506 * If there's a scrub or resilver already in progress, stop it.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3507 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3508 while (spa->spa_scrub_thread != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3509 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3510 * Don't stop a resilver unless forced.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3511 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3512 if (spa->spa_scrub_type == POOL_SCRUB_RESILVER && !force) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3513 mutex_exit(&spa->spa_scrub_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3514 return (EBUSY);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3515 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3516 spa->spa_scrub_stop = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3517 cv_broadcast(&spa->spa_scrub_cv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3518 cv_wait(&spa->spa_scrub_cv, &spa->spa_scrub_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3519 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3520
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3521 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3522 * Terminate the previous traverse.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3523 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3524 if (spa->spa_scrub_th != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3525 traverse_fini(spa->spa_scrub_th);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3526 spa->spa_scrub_th = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3527 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3528
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3529 if (rvd == NULL) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3530 ASSERT(spa->spa_scrub_stop == 0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3531 ASSERT(spa->spa_scrub_type == type);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3532 ASSERT(spa->spa_scrub_restart_txg == 0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3533 mutex_exit(&spa->spa_scrub_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3534 return (0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3535 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3536
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3537 mintxg = TXG_INITIAL - 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3538 maxtxg = spa_last_synced_txg(spa) + 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3539
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3540 mutex_enter(&rvd->vdev_dtl_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3541
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3542 if (rvd->vdev_dtl_map.sm_space == 0) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3543 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3544 * The pool-wide DTL is empty.
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
3545 * If this is a resilver, there's nothing to do except
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
3546 * check whether any in-progress replacements have completed.
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3547 */
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
3548 if (type == POOL_SCRUB_RESILVER) {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3549 type = POOL_SCRUB_NONE;
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3550 spa_async_request(spa, SPA_ASYNC_RESILVER_DONE);
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1635
diff changeset
3551 }
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3552 } else {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3553 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3554 * The pool-wide DTL is non-empty.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3555 * If this is a normal scrub, upgrade to a resilver instead.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3556 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3557 if (type == POOL_SCRUB_EVERYTHING)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3558 type = POOL_SCRUB_RESILVER;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3559 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3560
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3561 if (type == POOL_SCRUB_RESILVER) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3562 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3563 * Determine the resilvering boundaries.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3564 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3565 * Note: (mintxg, maxtxg) is an open interval,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3566 * i.e. mintxg and maxtxg themselves are not included.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3567 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3568 * Note: for maxtxg, we MIN with spa_last_synced_txg(spa) + 1
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3569 * so we don't claim to resilver a txg that's still changing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3570 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3571 ss = avl_first(&rvd->vdev_dtl_map.sm_root);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3572 mintxg = ss->ss_start - 1;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3573 ss = avl_last(&rvd->vdev_dtl_map.sm_root);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3574 maxtxg = MIN(ss->ss_end, maxtxg);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3575
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3576 spa_event_notify(spa, NULL, ESC_ZFS_RESILVER_START);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3577 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3578
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3579 mutex_exit(&rvd->vdev_dtl_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3580
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3581 spa->spa_scrub_stop = 0;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3582 spa->spa_scrub_type = type;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3583 spa->spa_scrub_restart_txg = 0;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3584
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3585 if (type != POOL_SCRUB_NONE) {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3586 spa->spa_scrub_mintxg = mintxg;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3587 spa->spa_scrub_maxtxg = maxtxg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3588 spa->spa_scrub_th = traverse_init(spa, spa_scrub_cb, NULL,
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3589 ADVANCE_PRE | ADVANCE_PRUNE | ADVANCE_ZIL,
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3590 ZIO_FLAG_CANFAIL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3591 traverse_add_pool(spa->spa_scrub_th, mintxg, maxtxg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3592 spa->spa_scrub_thread = thread_create(NULL, 0,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3593 spa_scrub_thread, spa, 0, &p0, TS_RUN, minclsyspri);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3594 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3595
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3596 mutex_exit(&spa->spa_scrub_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3597
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3598 return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3599 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3600
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3601 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3602 * ==========================================================================
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3603 * SPA async task processing
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3604 * ==========================================================================
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3605 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3606
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3607 static void
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3608 spa_async_remove(spa_t *spa, vdev_t *vd)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3609 {
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3610 vdev_t *tvd;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3611 int c;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3612
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3613 for (c = 0; c < vd->vdev_children; c++) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3614 tvd = vd->vdev_child[c];
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3615 if (tvd->vdev_remove_wanted) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3616 tvd->vdev_remove_wanted = 0;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3617 vdev_set_state(tvd, B_FALSE, VDEV_STATE_REMOVED,
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3618 VDEV_AUX_NONE);
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3619 vdev_clear(spa, tvd, B_TRUE);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3620 vdev_config_dirty(tvd->vdev_top);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3621 }
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3622 spa_async_remove(spa, tvd);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3623 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3624 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3625
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3626 static void
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3627 spa_async_thread(spa_t *spa)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3628 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3629 int tasks;
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3630 uint64_t txg;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3631
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3632 ASSERT(spa->spa_sync_on);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3633
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3634 mutex_enter(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3635 tasks = spa->spa_async_tasks;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3636 spa->spa_async_tasks = 0;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3637 mutex_exit(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3638
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3639 /*
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3640 * See if the config needs to be updated.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3641 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3642 if (tasks & SPA_ASYNC_CONFIG_UPDATE) {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3643 mutex_enter(&spa_namespace_lock);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3644 spa_config_update(spa, SPA_CONFIG_UPDATE_POOL);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3645 mutex_exit(&spa_namespace_lock);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3646 }
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3647
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3648 /*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3649 * See if any devices need to be marked REMOVED.
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3650 *
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3651 * XXX - We avoid doing this when we are in
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3652 * I/O failure state since spa_vdev_enter() grabs
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3653 * the namespace lock and would not be able to obtain
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3654 * the writer config lock.
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3655 */
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3656 if (tasks & SPA_ASYNC_REMOVE &&
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3657 spa_state(spa) != POOL_STATE_IO_FAILURE) {
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3658 txg = spa_vdev_enter(spa);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3659 spa_async_remove(spa, spa->spa_root_vdev);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3660 (void) spa_vdev_exit(spa, NULL, txg, 0);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3661 }
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3662
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3663 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3664 * If any devices are done replacing, detach them.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3665 */
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3666 if (tasks & SPA_ASYNC_RESILVER_DONE)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3667 spa_vdev_resilver_done(spa);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3668
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3669 /*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3670 * Kick off a scrub. When starting a RESILVER scrub (or an EVERYTHING
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3671 * scrub which can become a resilver), we need to hold
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3672 * spa_namespace_lock() because the sysevent we post via
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3673 * spa_event_notify() needs to get the name of the pool.
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3674 */
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3675 if (tasks & SPA_ASYNC_SCRUB) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3676 mutex_enter(&spa_namespace_lock);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3677 VERIFY(spa_scrub(spa, POOL_SCRUB_EVERYTHING, B_TRUE) == 0);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3678 mutex_exit(&spa_namespace_lock);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3679 }
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3680
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3681 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3682 * Kick off a resilver.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3683 */
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3684 if (tasks & SPA_ASYNC_RESILVER) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3685 mutex_enter(&spa_namespace_lock);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3686 VERIFY(spa_scrub(spa, POOL_SCRUB_RESILVER, B_TRUE) == 0);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3687 mutex_exit(&spa_namespace_lock);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3688 }
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3689
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3690 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3691 * Let the world know that we're done.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3692 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3693 mutex_enter(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3694 spa->spa_async_thread = NULL;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3695 cv_broadcast(&spa->spa_async_cv);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3696 mutex_exit(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3697 thread_exit();
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3698 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3699
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3700 void
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3701 spa_async_suspend(spa_t *spa)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3702 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3703 mutex_enter(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3704 spa->spa_async_suspended++;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3705 while (spa->spa_async_thread != NULL)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3706 cv_wait(&spa->spa_async_cv, &spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3707 mutex_exit(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3708 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3709
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3710 void
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3711 spa_async_resume(spa_t *spa)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3712 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3713 mutex_enter(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3714 ASSERT(spa->spa_async_suspended != 0);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3715 spa->spa_async_suspended--;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3716 mutex_exit(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3717 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3718
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3719 static void
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3720 spa_async_dispatch(spa_t *spa)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3721 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3722 mutex_enter(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3723 if (spa->spa_async_tasks && !spa->spa_async_suspended &&
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3724 spa->spa_async_thread == NULL &&
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3725 rootdir != NULL && !vn_is_readonly(rootdir))
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3726 spa->spa_async_thread = thread_create(NULL, 0,
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3727 spa_async_thread, spa, 0, &p0, TS_RUN, maxclsyspri);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3728 mutex_exit(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3729 }
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3730
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3731 void
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3732 spa_async_request(spa_t *spa, int task)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3733 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3734 mutex_enter(&spa->spa_async_lock);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3735 spa->spa_async_tasks |= task;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
3736 mutex_exit(&spa->spa_async_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3737 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3738
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3739 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3740 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3741 * SPA syncing routines
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3742 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3743 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3744
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3745 static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3746 spa_sync_deferred_frees(spa_t *spa, uint64_t txg)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3747 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3748 bplist_t *bpl = &spa->spa_sync_bplist;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3749 dmu_tx_t *tx;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3750 blkptr_t blk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3751 uint64_t itor = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3752 zio_t *zio;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3753 int error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3754 uint8_t c = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3755
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3756 zio = zio_root(spa, NULL, NULL, ZIO_FLAG_CONFIG_HELD);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3757
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3758 while (bplist_iterate(bpl, &itor, &blk) == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3759 zio_nowait(zio_free(zio, spa, txg, &blk, NULL, NULL));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3760
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3761 error = zio_wait(zio);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3762 ASSERT3U(error, ==, 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3763
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3764 tx = dmu_tx_create_assigned(spa->spa_dsl_pool, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3765 bplist_vacate(bpl, tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3766
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3767 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3768 * Pre-dirty the first block so we sync to convergence faster.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3769 * (Usually only the first block is needed.)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3770 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3771 dmu_write(spa->spa_meta_objset, spa->spa_sync_bplist_obj, 0, 1, &c, tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3772 dmu_tx_commit(tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3773 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3774
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3775 static void
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3776 spa_sync_nvlist(spa_t *spa, uint64_t obj, nvlist_t *nv, dmu_tx_t *tx)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3777 {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3778 char *packed = NULL;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3779 size_t nvsize = 0;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3780 dmu_buf_t *db;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3781
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3782 VERIFY(nvlist_size(nv, &nvsize, NV_ENCODE_XDR) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3783
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3784 packed = kmem_alloc(nvsize, KM_SLEEP);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3785
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3786 VERIFY(nvlist_pack(nv, &packed, &nvsize, NV_ENCODE_XDR,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3787 KM_SLEEP) == 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3788
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3789 dmu_write(spa->spa_meta_objset, obj, 0, nvsize, packed, tx);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3790
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3791 kmem_free(packed, nvsize);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3792
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3793 VERIFY(0 == dmu_bonus_hold(spa->spa_meta_objset, obj, FTAG, &db));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3794 dmu_buf_will_dirty(db, tx);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3795 *(uint64_t *)db->db_data = nvsize;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3796 dmu_buf_rele(db, FTAG);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3797 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3798
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3799 static void
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3800 spa_sync_aux_dev(spa_t *spa, spa_aux_vdev_t *sav, dmu_tx_t *tx,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3801 const char *config, const char *entry)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3802 {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3803 nvlist_t *nvroot;
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3804 nvlist_t **list;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3805 int i;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3806
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3807 if (!sav->sav_sync)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3808 return;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3809
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3810 /*
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3811 * Update the MOS nvlist describing the list of available devices.
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3812 * spa_validate_aux() will have already made sure this nvlist is
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3813 * valid and the vdevs are labeled appropriately.
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3814 */
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3815 if (sav->sav_object == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3816 sav->sav_object = dmu_object_alloc(spa->spa_meta_objset,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3817 DMU_OT_PACKED_NVLIST, 1 << 14, DMU_OT_PACKED_NVLIST_SIZE,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3818 sizeof (uint64_t), tx);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3819 VERIFY(zap_update(spa->spa_meta_objset,
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3820 DMU_POOL_DIRECTORY_OBJECT, entry, sizeof (uint64_t), 1,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3821 &sav->sav_object, tx) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3822 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3823
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3824 VERIFY(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, KM_SLEEP) == 0);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3825 if (sav->sav_count == 0) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3826 VERIFY(nvlist_add_nvlist_array(nvroot, config, NULL, 0) == 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3827 } else {
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3828 list = kmem_alloc(sav->sav_count * sizeof (void *), KM_SLEEP);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3829 for (i = 0; i < sav->sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3830 list[i] = vdev_config_generate(spa, sav->sav_vdevs[i],
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3831 B_FALSE, B_FALSE, B_TRUE);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3832 VERIFY(nvlist_add_nvlist_array(nvroot, config, list,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3833 sav->sav_count) == 0);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3834 for (i = 0; i < sav->sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3835 nvlist_free(list[i]);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3836 kmem_free(list, sav->sav_count * sizeof (void *));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3837 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3838
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3839 spa_sync_nvlist(spa, sav->sav_object, nvroot, tx);
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2856
diff changeset
3840 nvlist_free(nvroot);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3841
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
3842 sav->sav_sync = B_FALSE;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3843 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3844
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3845 static void
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3846 spa_sync_config_object(spa_t *spa, dmu_tx_t *tx)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3847 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3848 nvlist_t *config;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3849
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3850 if (list_is_empty(&spa->spa_dirty_list))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3851 return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3852
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3853 config = spa_config_generate(spa, NULL, dmu_tx_get_txg(tx), B_FALSE);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3854
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3855 if (spa->spa_config_syncing)
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3856 nvlist_free(spa->spa_config_syncing);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
3857 spa->spa_config_syncing = config;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3858
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
3859 spa_sync_nvlist(spa, spa->spa_config_object, config, tx);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3860 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
3861
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3862 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3863 * Set zpool properties.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3864 */
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
3865 static void
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
3866 spa_sync_props(void *arg1, void *arg2, cred_t *cr, dmu_tx_t *tx)
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
3867 {
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
3868 spa_t *spa = arg1;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3869 objset_t *mos = spa->spa_meta_objset;
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
3870 nvlist_t *nvp = arg2;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3871 nvpair_t *elem;
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
3872 uint64_t intval;
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3873 char *strval, *slash;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3874 zpool_prop_t prop;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3875 const char *propname;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3876 zprop_type_t proptype;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3877
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3878 elem = NULL;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3879 while ((elem = nvlist_next_nvpair(nvp, elem))) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3880 switch (prop = zpool_name_to_prop(nvpair_name(elem))) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3881 case ZPOOL_PROP_VERSION:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3882 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3883 * Only set version for non-zpool-creation cases
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3884 * (set/import). spa_create() needs special care
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3885 * for version setting.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3886 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3887 if (tx->tx_txg != TXG_INITIAL) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3888 VERIFY(nvpair_value_uint64(elem,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3889 &intval) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3890 ASSERT(intval <= SPA_VERSION);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3891 ASSERT(intval >= spa_version(spa));
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3892 spa->spa_uberblock.ub_version = intval;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3893 vdev_config_dirty(spa->spa_root_vdev);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3894 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3895 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3896
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3897 case ZPOOL_PROP_ALTROOT:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3898 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3899 * 'altroot' is a non-persistent property. It should
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3900 * have been set temporarily at creation or import time.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3901 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3902 ASSERT(spa->spa_root != NULL);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3903 break;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3904
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3905 case ZPOOL_PROP_CACHEFILE:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3906 /*
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3907 * 'cachefile' is a non-persistent property, but note
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3908 * an async request that the config cache needs to be
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3909 * udpated.
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3910 */
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3911 VERIFY(nvpair_value_string(elem, &strval) == 0);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3912 if (spa->spa_config_dir)
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3913 spa_strfree(spa->spa_config_dir);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3914 if (spa->spa_config_file)
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3915 spa_strfree(spa->spa_config_file);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3916
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3917 if (strval[0] == '\0') {
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3918 spa->spa_config_dir = NULL;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3919 spa->spa_config_file = NULL;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3920 } else if (strcmp(strval, "none") == 0) {
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3921 spa->spa_config_dir = spa_strdup(strval);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3922 spa->spa_config_file = NULL;
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3923 } else {
5621
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3924 /*
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3925 * If the cachefile is in the root directory,
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3926 * we will end up with an empty string for
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3927 * spa_config_dir. This value is only ever
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3928 * used when concatenated with '/', so an empty
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3929 * string still behaves correctly and keeps the
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3930 * rest of the code simple.
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3931 */
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3932 slash = strrchr(strval, '/');
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3933 ASSERT(slash != NULL);
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3934 *slash = '\0';
5621
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3935 if (strcmp(strval, spa_config_dir) == 0 &&
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3936 strcmp(slash + 1, ZPOOL_CACHE_FILE) == 0) {
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3937 spa->spa_config_dir = NULL;
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3938 spa->spa_config_file = NULL;
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3939 } else {
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3940 spa->spa_config_dir =
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3941 spa_strdup(strval);
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3942 spa->spa_config_file =
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3943 spa_strdup(slash + 1);
cd0984d5b1c1 6627006 setting cachefile to default value confuses ZFS
eschrock
parents: 5450
diff changeset
3944 }
5363
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3945 }
36eeffc5336d PSARC 2007/607 ZFS cachefile property
eschrock
parents: 5329
diff changeset
3946 spa_async_request(spa, SPA_ASYNC_CONFIG_UPDATE);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4527
diff changeset
3947 break;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3948 default:
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3949 /*
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3950 * Set pool property values in the poolprops mos object.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3951 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3952 mutex_enter(&spa->spa_props_lock);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3953 if (spa->spa_pool_props_object == 0) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3954 objset_t *mos = spa->spa_meta_objset;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3955
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3956 VERIFY((spa->spa_pool_props_object =
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3957 zap_create(mos, DMU_OT_POOL_PROPS,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3958 DMU_OT_NONE, 0, tx)) > 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3959
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3960 VERIFY(zap_update(mos,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3961 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_PROPS,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3962 8, 1, &spa->spa_pool_props_object, tx)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3963 == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3964 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3965 mutex_exit(&spa->spa_props_lock);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3966
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3967 /* normalize the property name */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3968 propname = zpool_prop_to_name(prop);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3969 proptype = zpool_prop_get_type(prop);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3970
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3971 if (nvpair_type(elem) == DATA_TYPE_STRING) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3972 ASSERT(proptype == PROP_TYPE_STRING);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3973 VERIFY(nvpair_value_string(elem, &strval) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3974 VERIFY(zap_update(mos,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3975 spa->spa_pool_props_object, propname,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3976 1, strlen(strval) + 1, strval, tx) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3977
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3978 } else if (nvpair_type(elem) == DATA_TYPE_UINT64) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3979 VERIFY(nvpair_value_uint64(elem, &intval) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3980
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3981 if (proptype == PROP_TYPE_INDEX) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3982 const char *unused;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3983 VERIFY(zpool_prop_index_to_string(
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3984 prop, intval, &unused) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3985 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3986 VERIFY(zap_update(mos,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3987 spa->spa_pool_props_object, propname,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3988 8, 1, &intval, tx) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3989 } else {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3990 ASSERT(0); /* not allowed */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3991 }
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3992
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3993 switch (prop) {
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3994 case ZPOOL_PROP_DELEGATION:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3995 spa->spa_delegation = intval;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3996 break;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3997 case ZPOOL_PROP_BOOTFS:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
3998 spa->spa_bootfs = intval;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
3999 break;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
4000 case ZPOOL_PROP_FAILUREMODE:
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
4001 spa->spa_failmode = intval;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
4002 break;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
4003 default:
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
4004 break;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5094
diff changeset
4005 }
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
4006 }
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4007
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4008 /* log internal history if this is not a zpool create */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4009 if (spa_version(spa) >= SPA_VERSION_ZPOOL_HISTORY &&
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4010 tx->tx_txg != TXG_INITIAL) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4011 spa_history_internal_log(LOG_POOL_PROPSET,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4012 spa, tx, cr, "%s %lld %s",
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4013 nvpair_name(elem), intval, spa->spa_name);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4014 }
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
4015 }
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
4016 }
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
4017
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4018 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4019 * Sync the specified transaction group. New blocks may be dirtied as
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4020 * part of the process, so we iterate until it converges.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4021 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4022 void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4023 spa_sync(spa_t *spa, uint64_t txg)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4024 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4025 dsl_pool_t *dp = spa->spa_dsl_pool;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4026 objset_t *mos = spa->spa_meta_objset;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4027 bplist_t *bpl = &spa->spa_sync_bplist;
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4028 vdev_t *rvd = spa->spa_root_vdev;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4029 vdev_t *vd;
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4030 vdev_t *svd[SPA_DVAS_PER_BP];
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4031 int svdcount = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4032 dmu_tx_t *tx;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4033 int dirty_vdevs;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4034
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4035 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4036 * Lock out configuration changes.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4037 */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4038 spa_config_enter(spa, RW_READER, FTAG);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4039
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4040 spa->spa_syncing_txg = txg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4041 spa->spa_sync_pass = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4042
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4043 VERIFY(0 == bplist_open(bpl, mos, spa->spa_sync_bplist_obj));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4044
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4045 tx = dmu_tx_create_assigned(dp, txg);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4046
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4047 /*
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
4048 * If we are upgrading to SPA_VERSION_RAIDZ_DEFLATE this txg,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4049 * set spa_deflate if we have no raid-z vdevs.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4050 */
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
4051 if (spa->spa_ubsync.ub_version < SPA_VERSION_RAIDZ_DEFLATE &&
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
4052 spa->spa_uberblock.ub_version >= SPA_VERSION_RAIDZ_DEFLATE) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4053 int i;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4054
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4055 for (i = 0; i < rvd->vdev_children; i++) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4056 vd = rvd->vdev_child[i];
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4057 if (vd->vdev_deflate_ratio != SPA_MINBLOCKSIZE)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4058 break;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4059 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4060 if (i == rvd->vdev_children) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4061 spa->spa_deflate = TRUE;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4062 VERIFY(0 == zap_add(spa->spa_meta_objset,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4063 DMU_POOL_DIRECTORY_OBJECT, DMU_POOL_DEFLATE,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4064 sizeof (uint64_t), 1, &spa->spa_deflate, tx));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4065 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4066 }
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4067
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4068 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4069 * If anything has changed in this txg, push the deferred frees
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4070 * from the previous txg. If not, leave them alone so that we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4071 * don't generate work on an otherwise idle system.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4072 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4073 if (!txg_list_empty(&dp->dp_dirty_datasets, txg) ||
2329
e640bebc73b3 6446569 deferred list is hooked on flintstone vitamins
ek110237
parents: 2199
diff changeset
4074 !txg_list_empty(&dp->dp_dirty_dirs, txg) ||
e640bebc73b3 6446569 deferred list is hooked on flintstone vitamins
ek110237
parents: 2199
diff changeset
4075 !txg_list_empty(&dp->dp_sync_tasks, txg))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4076 spa_sync_deferred_frees(spa, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4077
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4078 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4079 * Iterate to convergence.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4080 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4081 do {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4082 spa->spa_sync_pass++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4083
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4084 spa_sync_config_object(spa, tx);
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4085 spa_sync_aux_dev(spa, &spa->spa_spares, tx,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4086 ZPOOL_CONFIG_SPARES, DMU_POOL_SPARES);
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4087 spa_sync_aux_dev(spa, &spa->spa_l2cache, tx,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4088 ZPOOL_CONFIG_L2CACHE, DMU_POOL_L2CACHE);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4089 spa_errlog_sync(spa, txg);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4090 dsl_pool_sync(dp, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4091
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4092 dirty_vdevs = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4093 while (vd = txg_list_remove(&spa->spa_vdev_txg_list, txg)) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4094 vdev_sync(vd, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4095 dirty_vdevs++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4096 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4097
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4098 bplist_sync(bpl, tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4099 } while (dirty_vdevs);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4100
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4101 bplist_close(bpl);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4102
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4103 dprintf("txg %llu passes %d\n", txg, spa->spa_sync_pass);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4104
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4105 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4106 * Rewrite the vdev configuration (which includes the uberblock)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4107 * to commit the transaction group.
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4108 *
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4109 * If there are no dirty vdevs, we sync the uberblock to a few
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4110 * random top-level vdevs that are known to be visible in the
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4111 * config cache (see spa_vdev_add() for details). If there *are*
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4112 * dirty vdevs -- or if the sync to our random subset fails --
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4113 * then sync the uberblock to all vdevs.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4114 */
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4115 if (list_is_empty(&spa->spa_dirty_list)) {
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4116 int children = rvd->vdev_children;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4117 int c0 = spa_get_random(children);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4118 int c;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4119
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4120 for (c = 0; c < children; c++) {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4121 vd = rvd->vdev_child[(c0 + c) % children];
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4122 if (vd->vdev_ms_array == 0 || vd->vdev_islog)
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4123 continue;
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4124 svd[svdcount++] = vd;
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4125 if (svdcount == SPA_DVAS_PER_BP)
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4126 break;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4127 }
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4128 }
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4129 if (svdcount == 0 || vdev_config_sync(svd, svdcount, txg) != 0)
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4130 VERIFY3U(vdev_config_sync(rvd->vdev_child,
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5621
diff changeset
4131 rvd->vdev_children, txg), ==, 0);
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4132
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4133 dmu_tx_commit(tx);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4134
1635
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4135 /*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4136 * Clear the dirty config list.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4137 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4138 while ((vd = list_head(&spa->spa_dirty_list)) != NULL)
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4139 vdev_config_clean(vd);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4140
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4141 /*
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4142 * Now that the new config has synced transactionally,
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4143 * let it become visible to the config cache.
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4144 */
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4145 if (spa->spa_config_syncing != NULL) {
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4146 spa_config_set(spa, spa->spa_config_syncing);
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4147 spa->spa_config_txg = txg;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4148 spa->spa_config_syncing = NULL;
0ab1193d47cb 6398664 zpool detach: missing argument to error message causes core dump
bonwick
parents: 1601
diff changeset
4149 }
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4150
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4151 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4152 * Make a stable copy of the fully synced uberblock.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4153 * We use this as the root for pool traversals.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4154 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4155 spa->spa_traverse_wanted = 1; /* tells traverse_more() to stop */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4156
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4157 spa_scrub_suspend(spa); /* stop scrubbing and finish I/Os */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4158
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4159 rw_enter(&spa->spa_traverse_lock, RW_WRITER);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4160 spa->spa_traverse_wanted = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4161 spa->spa_ubsync = spa->spa_uberblock;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4162 rw_exit(&spa->spa_traverse_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4163
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4164 spa_scrub_resume(spa); /* resume scrub with new ubsync */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4165
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4166 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4167 * Clean up the ZIL records for the synced txg.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4168 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4169 dsl_pool_zil_clean(dp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4170
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4171 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4172 * Update usable space statistics.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4173 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4174 while (vd = txg_list_remove(&spa->spa_vdev_txg_list, TXG_CLEAN(txg)))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4175 vdev_sync_done(vd, txg);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4176
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4177 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4178 * It had better be the case that we didn't dirty anything
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4179 * since vdev_config_sync().
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4180 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4181 ASSERT(txg_list_empty(&dp->dp_dirty_datasets, txg));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4182 ASSERT(txg_list_empty(&dp->dp_dirty_dirs, txg));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4183 ASSERT(txg_list_empty(&spa->spa_vdev_txg_list, txg));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4184 ASSERT(bpl->bpl_queue == NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4185
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4186 spa_config_exit(spa, FTAG);
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4187
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4188 /*
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4189 * If any async tasks have been requested, kick them off.
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4190 */
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4191 spa_async_dispatch(spa);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4192 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4193
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4194 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4195 * Sync all pools. We don't want to hold the namespace lock across these
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4196 * operations, so we take a reference on the spa_t and drop the lock during the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4197 * sync.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4198 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4199 void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4200 spa_sync_allpools(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4201 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4202 spa_t *spa = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4203 mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4204 while ((spa = spa_next(spa)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4205 if (spa_state(spa) != POOL_STATE_ACTIVE)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4206 continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4207 spa_open_ref(spa, FTAG);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4208 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4209 txg_wait_synced(spa_get_dsl(spa), 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4210 mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4211 spa_close(spa, FTAG);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4212 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4213 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4214 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4215
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4216 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4217 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4218 * Miscellaneous routines
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4219 * ==========================================================================
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4220 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4221
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4222 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4223 * Remove all pools in the system.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4224 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4225 void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4226 spa_evict_all(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4227 {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4228 spa_t *spa;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4229
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4230 /*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4231 * Remove all cached state. All pools should be closed now,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4232 * so every spa in the AVL tree should be unreferenced.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4233 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4234 mutex_enter(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4235 while ((spa = spa_next(NULL)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4236 /*
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4237 * Stop async tasks. The async thread may need to detach
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4238 * a device that's been replaced, which requires grabbing
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4239 * spa_namespace_lock, so we must drop it here.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4240 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4241 spa_open_ref(spa, FTAG);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4242 mutex_exit(&spa_namespace_lock);
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4243 spa_async_suspend(spa);
4808
63629eaeb41a 6498144 ::kmastat could be even easier to read
ek110237
parents: 4787
diff changeset
4244 mutex_enter(&spa_namespace_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4245 VERIFY(spa_scrub(spa, POOL_SCRUB_NONE, B_TRUE) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4246 spa_close(spa, FTAG);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4247
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4248 if (spa->spa_state != POOL_STATE_UNINITIALIZED) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4249 spa_unload(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4250 spa_deactivate(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4251 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4252 spa_remove(spa);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4253 }
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4254 mutex_exit(&spa_namespace_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
4255 }
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4256
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4257 vdev_t *
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4258 spa_lookup_by_guid(spa_t *spa, uint64_t guid)
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4259 {
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4260 return (vdev_lookup_by_guid(spa->spa_root_vdev, guid));
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1354
diff changeset
4261 }
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4262
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4263 void
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4264 spa_upgrade(spa_t *spa, uint64_t version)
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4265 {
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4266 spa_config_enter(spa, RW_WRITER, FTAG);
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4267
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4268 /*
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4269 * This should only be called for a non-faulted pool, and since a
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4270 * future version would result in an unopenable pool, this shouldn't be
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4271 * possible.
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4272 */
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
4273 ASSERT(spa->spa_uberblock.ub_version <= SPA_VERSION);
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4274 ASSERT(version >= spa->spa_uberblock.ub_version);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4275
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4831
diff changeset
4276 spa->spa_uberblock.ub_version = version;
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4277 vdev_config_dirty(spa->spa_root_vdev);
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4278
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4279 spa_config_exit(spa, FTAG);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4280
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4281 txg_wait_synced(spa_get_dsl(spa), 0);
1760
e1ad2821c30d PSARC 2006/206 zpool upgrade
eschrock
parents: 1733
diff changeset
4282 }
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4283
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4284 boolean_t
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4285 spa_has_spare(spa_t *spa, uint64_t guid)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4286 {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4287 int i;
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
4288 uint64_t spareguid;
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4289 spa_aux_vdev_t *sav = &spa->spa_spares;
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4290
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4291 for (i = 0; i < sav->sav_count; i++)
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4292 if (sav->sav_vdevs[i]->vdev_guid == guid)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4293 return (B_TRUE);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4294
5450
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4295 for (i = 0; i < sav->sav_npending; i++) {
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4296 if (nvlist_lookup_uint64(sav->sav_pending[i], ZPOOL_CONFIG_GUID,
b25030891c44 PSARC 2007/618 ZFS L2ARC
brendan
parents: 5363
diff changeset
4297 &spareguid) == 0 && spareguid == guid)
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
4298 return (B_TRUE);
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
4299 }
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3290
diff changeset
4300
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4301 return (B_FALSE);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1986
diff changeset
4302 }
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3697
diff changeset
4303
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4304 /*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4305 * Post a sysevent corresponding to the given event. The 'name' must be one of
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4306 * the event definitions in sys/sysevent/eventdefs.h. The payload will be
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4307 * filled in from the spa and (optionally) the vdev. This doesn't do anything
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4308 * in the userland libzpool, as we don't want consumers to misinterpret ztest
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4309 * or zdb as real changes.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4310 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4311 void
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4312 spa_event_notify(spa_t *spa, vdev_t *vd, const char *name)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4313 {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4314 #ifdef _KERNEL
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4315 sysevent_t *ev;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4316 sysevent_attr_list_t *attr = NULL;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4317 sysevent_value_t value;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4318 sysevent_id_t eid;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4319
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4320 ev = sysevent_alloc(EC_ZFS, (char *)name, SUNW_KERN_PUB "zfs",
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4321 SE_SLEEP);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4322
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4323 value.value_type = SE_DATA_TYPE_STRING;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4324 value.value.sv_string = spa_name(spa);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4325 if (sysevent_add_attr(&attr, ZFS_EV_POOL_NAME, &value, SE_SLEEP) != 0)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4326 goto done;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4327
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4328 value.value_type = SE_DATA_TYPE_UINT64;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4329 value.value.sv_uint64 = spa_guid(spa);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4330 if (sysevent_add_attr(&attr, ZFS_EV_POOL_GUID, &value, SE_SLEEP) != 0)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4331 goto done;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4332
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4333 if (vd) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4334 value.value_type = SE_DATA_TYPE_UINT64;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4335 value.value.sv_uint64 = vd->vdev_guid;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4336 if (sysevent_add_attr(&attr, ZFS_EV_VDEV_GUID, &value,
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4337 SE_SLEEP) != 0)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4338 goto done;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4339
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4340 if (vd->vdev_path) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4341 value.value_type = SE_DATA_TYPE_STRING;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4342 value.value.sv_string = vd->vdev_path;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4343 if (sysevent_add_attr(&attr, ZFS_EV_VDEV_PATH,
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4344 &value, SE_SLEEP) != 0)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4345 goto done;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4346 }
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4347 }
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4348
5756
05eb4c1ff492 6585441 spa_event_notify() doesn't pass its attributes
eschrock
parents: 5688
diff changeset
4349 if (sysevent_attach_attributes(ev, attr) != 0)
05eb4c1ff492 6585441 spa_event_notify() doesn't pass its attributes
eschrock
parents: 5688
diff changeset
4350 goto done;
05eb4c1ff492 6585441 spa_event_notify() doesn't pass its attributes
eschrock
parents: 5688
diff changeset
4351 attr = NULL;
05eb4c1ff492 6585441 spa_event_notify() doesn't pass its attributes
eschrock
parents: 5688
diff changeset
4352
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4353 (void) log_sysevent(ev, SE_SLEEP, &eid);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4354
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4355 done:
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4356 if (attr)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4357 sysevent_free_attr(attr);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4358 sysevent_free(ev);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4359 #endif
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 4309
diff changeset
4360 }