]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/spa_misc.c
ZED: Match added disk by pool/vdev GUID if found (#12217)
[mirror_zfs.git] / module / zfs / spa_misc.c
CommitLineData
34dc7c2f
BB
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
428870ff 22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
93e28d66 23 * Copyright (c) 2011, 2019 by Delphix. All rights reserved.
adfe9d93 24 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
0c66c32d 25 * Copyright (c) 2014 Spectra Logic Corporation, All rights reserved.
3c67d83a 26 * Copyright 2013 Saso Kiselkov. All rights reserved.
0ea05c64 27 * Copyright (c) 2017 Datto Inc.
cc99f275 28 * Copyright (c) 2017, Intel Corporation.
e3570464 29 * Copyright (c) 2019, loli10K <ezomori.nozomu@gmail.com>. All rights reserved.
34dc7c2f
BB
30 */
31
34dc7c2f
BB
32#include <sys/zfs_context.h>
33#include <sys/spa_impl.h>
34#include <sys/zio.h>
35#include <sys/zio_checksum.h>
36#include <sys/zio_compress.h>
37#include <sys/dmu.h>
38#include <sys/dmu_tx.h>
39#include <sys/zap.h>
40#include <sys/zil.h>
41#include <sys/vdev_impl.h>
619f0976 42#include <sys/vdev_initialize.h>
1b939560 43#include <sys/vdev_trim.h>
bc25c932 44#include <sys/vdev_file.h>
ab9f4b0b 45#include <sys/vdev_raidz.h>
34dc7c2f
BB
46#include <sys/metaslab.h>
47#include <sys/uberblock_impl.h>
48#include <sys/txg.h>
49#include <sys/avl.h>
50#include <sys/unique.h>
51#include <sys/dsl_pool.h>
52#include <sys/dsl_dir.h>
53#include <sys/dsl_prop.h>
26685276 54#include <sys/fm/util.h>
428870ff 55#include <sys/dsl_scan.h>
34dc7c2f
BB
56#include <sys/fs/zfs.h>
57#include <sys/metaslab_impl.h>
b128c09f 58#include <sys/arc.h>
428870ff 59#include <sys/ddt.h>
1421c891 60#include <sys/kstat.h>
34dc7c2f 61#include "zfs_prop.h"
ca577779 62#include <sys/btree.h>
3c67d83a 63#include <sys/zfeature.h>
bced7e3a 64#include <sys/qat.h>
10b3c7f5 65#include <sys/zstd/zstd.h>
34dc7c2f
BB
66
67/*
68 * SPA locking
69 *
93e28d66 70 * There are three basic locks for managing spa_t structures:
34dc7c2f
BB
71 *
72 * spa_namespace_lock (global mutex)
73 *
74 * This lock must be acquired to do any of the following:
75 *
76 * - Lookup a spa_t by name
77 * - Add or remove a spa_t from the namespace
78 * - Increase spa_refcount from non-zero
79 * - Check if spa_refcount is zero
80 * - Rename a spa_t
81 * - add/remove/attach/detach devices
82 * - Held for the duration of create/destroy/import/export
83 *
84 * It does not need to handle recursion. A create or destroy may
85 * reference objects (files or zvols) in other pools, but by
86 * definition they must have an existing reference, and will never need
87 * to lookup a spa_t by name.
88 *
c13060e4 89 * spa_refcount (per-spa zfs_refcount_t protected by mutex)
34dc7c2f
BB
90 *
91 * This reference count keep track of any active users of the spa_t. The
92 * spa_t cannot be destroyed or freed while this is non-zero. Internally,
93 * the refcount is never really 'zero' - opening a pool implicitly keeps
b128c09f 94 * some references in the DMU. Internally we check against spa_minref, but
34dc7c2f
BB
95 * present the image of a zero/non-zero value to consumers.
96 *
b128c09f 97 * spa_config_lock[] (per-spa array of rwlocks)
34dc7c2f
BB
98 *
99 * This protects the spa_t from config changes, and must be held in
100 * the following circumstances:
101 *
102 * - RW_READER to perform I/O to the spa
103 * - RW_WRITER to change the vdev config
104 *
34dc7c2f
BB
105 * The locking order is fairly straightforward:
106 *
107 * spa_namespace_lock -> spa_refcount
108 *
109 * The namespace lock must be acquired to increase the refcount from 0
110 * or to check if it is zero.
111 *
b128c09f 112 * spa_refcount -> spa_config_lock[]
34dc7c2f
BB
113 *
114 * There must be at least one valid reference on the spa_t to acquire
115 * the config lock.
116 *
b128c09f 117 * spa_namespace_lock -> spa_config_lock[]
34dc7c2f
BB
118 *
119 * The namespace lock must always be taken before the config lock.
120 *
121 *
b128c09f 122 * The spa_namespace_lock can be acquired directly and is globally visible.
34dc7c2f 123 *
b128c09f
BB
124 * The namespace is manipulated using the following functions, all of which
125 * require the spa_namespace_lock to be held.
34dc7c2f
BB
126 *
127 * spa_lookup() Lookup a spa_t by name.
128 *
129 * spa_add() Create a new spa_t in the namespace.
130 *
131 * spa_remove() Remove a spa_t from the namespace. This also
132 * frees up any memory associated with the spa_t.
133 *
134 * spa_next() Returns the next spa_t in the system, or the
135 * first if NULL is passed.
136 *
137 * spa_evict_all() Shutdown and remove all spa_t structures in
138 * the system.
139 *
140 * spa_guid_exists() Determine whether a pool/device guid exists.
141 *
142 * The spa_refcount is manipulated using the following functions:
143 *
144 * spa_open_ref() Adds a reference to the given spa_t. Must be
145 * called with spa_namespace_lock held if the
146 * refcount is currently zero.
147 *
148 * spa_close() Remove a reference from the spa_t. This will
149 * not free the spa_t or remove it from the
150 * namespace. No locking is required.
151 *
152 * spa_refcount_zero() Returns true if the refcount is currently
153 * zero. Must be called with spa_namespace_lock
154 * held.
155 *
b128c09f
BB
156 * The spa_config_lock[] is an array of rwlocks, ordered as follows:
157 * SCL_CONFIG > SCL_STATE > SCL_ALLOC > SCL_ZIO > SCL_FREE > SCL_VDEV.
158 * spa_config_lock[] is manipulated with spa_config_{enter,exit,held}().
159 *
160 * To read the configuration, it suffices to hold one of these locks as reader.
161 * To modify the configuration, you must hold all locks as writer. To modify
162 * vdev state without altering the vdev tree's topology (e.g. online/offline),
163 * you must hold SCL_STATE and SCL_ZIO as writer.
164 *
165 * We use these distinct config locks to avoid recursive lock entry.
166 * For example, spa_sync() (which holds SCL_CONFIG as reader) induces
167 * block allocations (SCL_ALLOC), which may require reading space maps
168 * from disk (dmu_read() -> zio_read() -> SCL_ZIO).
169 *
170 * The spa config locks cannot be normal rwlocks because we need the
171 * ability to hand off ownership. For example, SCL_ZIO is acquired
172 * by the issuing thread and later released by an interrupt thread.
173 * They do, however, obey the usual write-wanted semantics to prevent
174 * writer (i.e. system administrator) starvation.
175 *
176 * The lock acquisition rules are as follows:
177 *
178 * SCL_CONFIG
179 * Protects changes to the vdev tree topology, such as vdev
180 * add/remove/attach/detach. Protects the dirty config list
181 * (spa_config_dirty_list) and the set of spares and l2arc devices.
182 *
183 * SCL_STATE
184 * Protects changes to pool state and vdev state, such as vdev
185 * online/offline/fault/degrade/clear. Protects the dirty state list
186 * (spa_state_dirty_list) and global pool state (spa_state).
187 *
188 * SCL_ALLOC
189 * Protects changes to metaslab groups and classes.
190 * Held as reader by metaslab_alloc() and metaslab_claim().
191 *
192 * SCL_ZIO
193 * Held by bp-level zios (those which have no io_vd upon entry)
194 * to prevent changes to the vdev tree. The bp-level zio implicitly
195 * protects all of its vdev child zios, which do not hold SCL_ZIO.
196 *
197 * SCL_FREE
198 * Protects changes to metaslab groups and classes.
199 * Held as reader by metaslab_free(). SCL_FREE is distinct from
200 * SCL_ALLOC, and lower than SCL_ZIO, so that we can safely free
201 * blocks in zio_done() while another i/o that holds either
202 * SCL_ALLOC or SCL_ZIO is waiting for this i/o to complete.
203 *
204 * SCL_VDEV
205 * Held as reader to prevent changes to the vdev tree during trivial
428870ff 206 * inquiries such as bp_get_dsize(). SCL_VDEV is distinct from the
b128c09f
BB
207 * other locks, and lower than all of them, to ensure that it's safe
208 * to acquire regardless of caller context.
209 *
210 * In addition, the following rules apply:
211 *
212 * (a) spa_props_lock protects pool properties, spa_config and spa_config_list.
213 * The lock ordering is SCL_CONFIG > spa_props_lock.
214 *
215 * (b) I/O operations on leaf vdevs. For any zio operation that takes
216 * an explicit vdev_t argument -- such as zio_ioctl(), zio_read_phys(),
217 * or zio_write_phys() -- the caller must ensure that the config cannot
218 * cannot change in the interim, and that the vdev cannot be reopened.
219 * SCL_STATE as reader suffices for both.
34dc7c2f
BB
220 *
221 * The vdev configuration is protected by spa_vdev_enter() / spa_vdev_exit().
222 *
223 * spa_vdev_enter() Acquire the namespace lock and the config lock
224 * for writing.
225 *
226 * spa_vdev_exit() Release the config lock, wait for all I/O
227 * to complete, sync the updated configs to the
228 * cache, and release the namespace lock.
229 *
b128c09f
BB
230 * vdev state is protected by spa_vdev_state_enter() / spa_vdev_state_exit().
231 * Like spa_vdev_enter/exit, these are convenience wrappers -- the actual
232 * locking is, always, based on spa_namespace_lock and spa_config_lock[].
34dc7c2f
BB
233 */
234
235static avl_tree_t spa_namespace_avl;
236kmutex_t spa_namespace_lock;
237static kcondvar_t spa_namespace_cv;
34dc7c2f
BB
238int spa_max_replication_override = SPA_DVAS_PER_BP;
239
240static kmutex_t spa_spare_lock;
241static avl_tree_t spa_spare_avl;
242static kmutex_t spa_l2cache_lock;
243static avl_tree_t spa_l2cache_avl;
244
245kmem_cache_t *spa_buffer_pool;
da92d5cb 246spa_mode_t spa_mode_global = SPA_MODE_UNINIT;
34dc7c2f 247
0b39b9f9 248#ifdef ZFS_DEBUG
a1d477c2
MA
249/*
250 * Everything except dprintf, set_error, spa, and indirect_remap is on
251 * by default in debug builds.
252 */
253int zfs_flags = ~(ZFS_DEBUG_DPRINTF | ZFS_DEBUG_SET_ERROR |
964c2d69 254 ZFS_DEBUG_INDIRECT_REMAP);
0b39b9f9
PS
255#else
256int zfs_flags = 0;
257#endif
258
259/*
260 * zfs_recover can be set to nonzero to attempt to recover from
261 * otherwise-fatal errors, typically caused by on-disk corruption. When
262 * set, calls to zfs_panic_recover() will turn into warning messages.
263 * This should only be used as a last resort, as it typically results
264 * in leaked space, or worse.
265 */
266int zfs_recover = B_FALSE;
267
268/*
269 * If destroy encounters an EIO while reading metadata (e.g. indirect
270 * blocks), space referenced by the missing metadata can not be freed.
271 * Normally this causes the background destroy to become "stalled", as
272 * it is unable to make forward progress. While in this stalled state,
273 * all remaining space to free from the error-encountering filesystem is
274 * "temporarily leaked". Set this flag to cause it to ignore the EIO,
275 * permanently leak the space from indirect blocks that can not be read,
276 * and continue to free everything else that it can.
277 *
278 * The default, "stalling" behavior is useful if the storage partially
279 * fails (i.e. some but not all i/os fail), and then later recovers. In
280 * this case, we will be able to continue pool operations while it is
281 * partially failed, and when it recovers, we can continue to free the
282 * space, with no leaks. However, note that this case is actually
283 * fairly rare.
284 *
285 * Typically pools either (a) fail completely (but perhaps temporarily,
286 * e.g. a top-level vdev going offline), or (b) have localized,
287 * permanent errors (e.g. disk returns the wrong data due to bit flip or
288 * firmware bug). In case (a), this setting does not matter because the
289 * pool will be suspended and the sync thread will not be able to make
290 * forward progress regardless. In case (b), because the error is
291 * permanent, the best we can do is leak the minimum amount of space,
292 * which is what setting this flag will do. Therefore, it is reasonable
293 * for this flag to normally be set, but we chose the more conservative
294 * approach of not setting it, so that there is no possibility of
295 * leaking space in the "partial temporary" failure case.
296 */
297int zfs_free_leak_on_eio = B_FALSE;
298
cc92e9d0 299/*
e8b96c60
MA
300 * Expiration time in milliseconds. This value has two meanings. First it is
301 * used to determine when the spa_deadman() logic should fire. By default the
8fb1ede1 302 * spa_deadman() will fire if spa_sync() has not completed in 600 seconds.
e8b96c60
MA
303 * Secondly, the value determines if an I/O is considered "hung". Any I/O that
304 * has not completed in zfs_deadman_synctime_ms is considered "hung" resulting
8fb1ede1 305 * in one of three behaviors controlled by zfs_deadman_failmode.
cc92e9d0 306 */
57940b43 307unsigned long zfs_deadman_synctime_ms = 600000UL;
8fb1ede1
BB
308
309/*
310 * This value controls the maximum amount of time zio_wait() will block for an
311 * outstanding IO. By default this is 300 seconds at which point the "hung"
312 * behavior will be applied as described for zfs_deadman_synctime_ms.
313 */
57940b43 314unsigned long zfs_deadman_ziotime_ms = 300000UL;
cc92e9d0 315
b81a3ddc
TC
316/*
317 * Check time in milliseconds. This defines the frequency at which we check
318 * for hung I/O.
319 */
57940b43 320unsigned long zfs_deadman_checktime_ms = 60000UL;
b81a3ddc 321
cc92e9d0
GW
322/*
323 * By default the deadman is enabled.
324 */
325int zfs_deadman_enabled = 1;
326
8fb1ede1
BB
327/*
328 * Controls the behavior of the deadman when it detects a "hung" I/O.
329 * Valid values are zfs_deadman_failmode=<wait|continue|panic>.
330 *
331 * wait - Wait for the "hung" I/O (default)
332 * continue - Attempt to recover from a "hung" I/O
333 * panic - Panic the system
334 */
335char *zfs_deadman_failmode = "wait";
336
e8b96c60
MA
337/*
338 * The worst case is single-sector max-parity RAID-Z blocks, in which
339 * case the space requirement is exactly (VDEV_RAIDZ_MAXPARITY + 1)
340 * times the size; so just assume that. Add to this the fact that
341 * we can have up to 3 DVAs per bp, and one more factor of 2 because
342 * the block may be dittoed with up to 3 DVAs by ddt_sync(). All together,
343 * the worst case is:
344 * (VDEV_RAIDZ_MAXPARITY + 1) * SPA_DVAS_PER_BP * 2 == 24
345 */
346int spa_asize_inflation = 24;
347
3d45fdd6
MA
348/*
349 * Normally, we don't allow the last 3.2% (1/(2^spa_slop_shift)) of space in
f01eaed4
PS
350 * the pool to be consumed (bounded by spa_max_slop). This ensures that we
351 * don't run the pool completely out of space, due to unaccounted changes (e.g.
352 * to the MOS). It also limits the worst-case time to allocate space. If we
353 * have less than this amount of free space, most ZPL operations (e.g. write,
354 * create) will return ENOSPC. The ZIL metaslabs (spa_embedded_log_class) are
355 * also part of this 3.2% of space which can't be consumed by normal writes;
356 * the slop space "proper" (spa_get_slop_space()) is decreased by the embedded
357 * log space.
3d45fdd6
MA
358 *
359 * Certain operations (e.g. file removal, most administrative actions) can
360 * use half the slop space. They will only return ENOSPC if less than half
361 * the slop space is free. Typically, once the pool has less than the slop
362 * space free, the user will use these operations to free up space in the pool.
363 * These are the operations that call dsl_pool_adjustedsize() with the netfree
364 * argument set to TRUE.
365 *
d2734cce
SD
366 * Operations that are almost guaranteed to free up space in the absence of
367 * a pool checkpoint can use up to three quarters of the slop space
368 * (e.g zfs destroy).
369 *
3d45fdd6
MA
370 * A very restricted set of operations are always permitted, regardless of
371 * the amount of free space. These are the operations that call
d2734cce
SD
372 * dsl_sync_task(ZFS_SPACE_CHECK_NONE). If these operations result in a net
373 * increase in the amount of space used, it is possible to run the pool
374 * completely out of space, causing it to be permanently read-only.
3d45fdd6 375 *
d7958b4c
MA
376 * Note that on very small pools, the slop space will be larger than
377 * 3.2%, in an effort to have it be at least spa_min_slop (128MB),
378 * but we never allow it to be more than half the pool size.
379 *
f01eaed4
PS
380 * Further, on very large pools, the slop space will be smaller than
381 * 3.2%, to avoid reserving much more space than we actually need; bounded
382 * by spa_max_slop (128GB).
383 *
3d45fdd6
MA
384 * See also the comments in zfs_space_check_t.
385 */
386int spa_slop_shift = 5;
f01eaed4
PS
387uint64_t spa_min_slop = 128ULL * 1024 * 1024;
388uint64_t spa_max_slop = 128ULL * 1024 * 1024 * 1024;
492f64e9
PD
389int spa_allocators = 4;
390
3d45fdd6 391
4a0ee12a
PZ
392/*PRINTFLIKE2*/
393void
394spa_load_failed(spa_t *spa, const char *fmt, ...)
395{
396 va_list adx;
397 char buf[256];
398
399 va_start(adx, fmt);
400 (void) vsnprintf(buf, sizeof (buf), fmt, adx);
401 va_end(adx);
402
6cb8e530
PZ
403 zfs_dbgmsg("spa_load(%s, config %s): FAILED: %s", spa->spa_name,
404 spa->spa_trust_config ? "trusted" : "untrusted", buf);
4a0ee12a
PZ
405}
406
407/*PRINTFLIKE2*/
408void
409spa_load_note(spa_t *spa, const char *fmt, ...)
410{
411 va_list adx;
412 char buf[256];
413
414 va_start(adx, fmt);
415 (void) vsnprintf(buf, sizeof (buf), fmt, adx);
416 va_end(adx);
417
6cb8e530
PZ
418 zfs_dbgmsg("spa_load(%s, config %s): %s", spa->spa_name,
419 spa->spa_trust_config ? "trusted" : "untrusted", buf);
4a0ee12a
PZ
420}
421
cc99f275
DB
422/*
423 * By default dedup and user data indirects land in the special class
424 */
425int zfs_ddt_data_is_special = B_TRUE;
426int zfs_user_indirect_is_special = B_TRUE;
427
428/*
429 * The percentage of special class final space reserved for metadata only.
430 * Once we allocate 100 - zfs_special_class_metadata_reserve_pct we only
431 * let metadata into the class.
432 */
433int zfs_special_class_metadata_reserve_pct = 25;
434
34dc7c2f
BB
435/*
436 * ==========================================================================
437 * SPA config locking
438 * ==========================================================================
439 */
440static void
b128c09f
BB
441spa_config_lock_init(spa_t *spa)
442{
1c27024e 443 for (int i = 0; i < SCL_LOCKS; i++) {
b128c09f
BB
444 spa_config_lock_t *scl = &spa->spa_config_lock[i];
445 mutex_init(&scl->scl_lock, NULL, MUTEX_DEFAULT, NULL);
446 cv_init(&scl->scl_cv, NULL, CV_DEFAULT, NULL);
424fd7c3 447 zfs_refcount_create_untracked(&scl->scl_count);
b128c09f
BB
448 scl->scl_writer = NULL;
449 scl->scl_write_wanted = 0;
450 }
34dc7c2f
BB
451}
452
453static void
b128c09f
BB
454spa_config_lock_destroy(spa_t *spa)
455{
1c27024e 456 for (int i = 0; i < SCL_LOCKS; i++) {
b128c09f
BB
457 spa_config_lock_t *scl = &spa->spa_config_lock[i];
458 mutex_destroy(&scl->scl_lock);
459 cv_destroy(&scl->scl_cv);
424fd7c3 460 zfs_refcount_destroy(&scl->scl_count);
b128c09f
BB
461 ASSERT(scl->scl_writer == NULL);
462 ASSERT(scl->scl_write_wanted == 0);
463 }
464}
465
466int
467spa_config_tryenter(spa_t *spa, int locks, void *tag, krw_t rw)
34dc7c2f 468{
1c27024e 469 for (int i = 0; i < SCL_LOCKS; i++) {
b128c09f
BB
470 spa_config_lock_t *scl = &spa->spa_config_lock[i];
471 if (!(locks & (1 << i)))
472 continue;
473 mutex_enter(&scl->scl_lock);
474 if (rw == RW_READER) {
475 if (scl->scl_writer || scl->scl_write_wanted) {
476 mutex_exit(&scl->scl_lock);
adfe9d93
SK
477 spa_config_exit(spa, locks & ((1 << i) - 1),
478 tag);
b128c09f
BB
479 return (0);
480 }
481 } else {
482 ASSERT(scl->scl_writer != curthread);
424fd7c3 483 if (!zfs_refcount_is_zero(&scl->scl_count)) {
b128c09f 484 mutex_exit(&scl->scl_lock);
adfe9d93
SK
485 spa_config_exit(spa, locks & ((1 << i) - 1),
486 tag);
b128c09f
BB
487 return (0);
488 }
489 scl->scl_writer = curthread;
490 }
c13060e4 491 (void) zfs_refcount_add(&scl->scl_count, tag);
b128c09f
BB
492 mutex_exit(&scl->scl_lock);
493 }
494 return (1);
34dc7c2f
BB
495}
496
497void
dc04a8c7 498spa_config_enter(spa_t *spa, int locks, const void *tag, krw_t rw)
34dc7c2f 499{
45d1cae3
BB
500 int wlocks_held = 0;
501
13fe0198
MA
502 ASSERT3U(SCL_LOCKS, <, sizeof (wlocks_held) * NBBY);
503
1c27024e 504 for (int i = 0; i < SCL_LOCKS; i++) {
b128c09f 505 spa_config_lock_t *scl = &spa->spa_config_lock[i];
45d1cae3
BB
506 if (scl->scl_writer == curthread)
507 wlocks_held |= (1 << i);
b128c09f
BB
508 if (!(locks & (1 << i)))
509 continue;
510 mutex_enter(&scl->scl_lock);
511 if (rw == RW_READER) {
512 while (scl->scl_writer || scl->scl_write_wanted) {
513 cv_wait(&scl->scl_cv, &scl->scl_lock);
514 }
515 } else {
516 ASSERT(scl->scl_writer != curthread);
424fd7c3 517 while (!zfs_refcount_is_zero(&scl->scl_count)) {
b128c09f
BB
518 scl->scl_write_wanted++;
519 cv_wait(&scl->scl_cv, &scl->scl_lock);
520 scl->scl_write_wanted--;
521 }
522 scl->scl_writer = curthread;
523 }
c13060e4 524 (void) zfs_refcount_add(&scl->scl_count, tag);
b128c09f 525 mutex_exit(&scl->scl_lock);
34dc7c2f 526 }
a1d477c2 527 ASSERT3U(wlocks_held, <=, locks);
34dc7c2f
BB
528}
529
530void
dc04a8c7 531spa_config_exit(spa_t *spa, int locks, const void *tag)
34dc7c2f 532{
1c27024e 533 for (int i = SCL_LOCKS - 1; i >= 0; i--) {
b128c09f
BB
534 spa_config_lock_t *scl = &spa->spa_config_lock[i];
535 if (!(locks & (1 << i)))
536 continue;
537 mutex_enter(&scl->scl_lock);
424fd7c3
TS
538 ASSERT(!zfs_refcount_is_zero(&scl->scl_count));
539 if (zfs_refcount_remove(&scl->scl_count, tag) == 0) {
b128c09f
BB
540 ASSERT(scl->scl_writer == NULL ||
541 scl->scl_writer == curthread);
542 scl->scl_writer = NULL; /* OK in either case */
543 cv_broadcast(&scl->scl_cv);
544 }
545 mutex_exit(&scl->scl_lock);
34dc7c2f 546 }
34dc7c2f
BB
547}
548
b128c09f
BB
549int
550spa_config_held(spa_t *spa, int locks, krw_t rw)
34dc7c2f 551{
1c27024e 552 int locks_held = 0;
34dc7c2f 553
1c27024e 554 for (int i = 0; i < SCL_LOCKS; i++) {
b128c09f
BB
555 spa_config_lock_t *scl = &spa->spa_config_lock[i];
556 if (!(locks & (1 << i)))
557 continue;
424fd7c3
TS
558 if ((rw == RW_READER &&
559 !zfs_refcount_is_zero(&scl->scl_count)) ||
b128c09f
BB
560 (rw == RW_WRITER && scl->scl_writer == curthread))
561 locks_held |= 1 << i;
562 }
563
564 return (locks_held);
34dc7c2f
BB
565}
566
567/*
568 * ==========================================================================
569 * SPA namespace functions
570 * ==========================================================================
571 */
572
573/*
574 * Lookup the named spa_t in the AVL tree. The spa_namespace_lock must be held.
575 * Returns NULL if no matching spa_t is found.
576 */
577spa_t *
578spa_lookup(const char *name)
579{
b128c09f
BB
580 static spa_t search; /* spa_t is large; don't allocate on stack */
581 spa_t *spa;
34dc7c2f 582 avl_index_t where;
34dc7c2f
BB
583 char *cp;
584
585 ASSERT(MUTEX_HELD(&spa_namespace_lock));
586
13fe0198
MA
587 (void) strlcpy(search.spa_name, name, sizeof (search.spa_name));
588
34dc7c2f
BB
589 /*
590 * If it's a full dataset name, figure out the pool name and
591 * just use that.
592 */
da536844 593 cp = strpbrk(search.spa_name, "/@#");
13fe0198 594 if (cp != NULL)
34dc7c2f 595 *cp = '\0';
34dc7c2f 596
34dc7c2f
BB
597 spa = avl_find(&spa_namespace_avl, &search, &where);
598
34dc7c2f
BB
599 return (spa);
600}
601
cc92e9d0
GW
602/*
603 * Fires when spa_sync has not completed within zfs_deadman_synctime_ms.
604 * If the zfs_deadman_enabled flag is set then it inspects all vdev queues
605 * looking for potentially hung I/Os.
606 */
607void
608spa_deadman(void *arg)
609{
610 spa_t *spa = arg;
611
b81a3ddc
TC
612 /* Disable the deadman if the pool is suspended. */
613 if (spa_suspended(spa))
614 return;
615
cc92e9d0
GW
616 zfs_dbgmsg("slow spa_sync: started %llu seconds ago, calls %llu",
617 (gethrtime() - spa->spa_sync_starttime) / NANOSEC,
8e739b2c 618 (u_longlong_t)++spa->spa_deadman_calls);
cc92e9d0 619 if (zfs_deadman_enabled)
8fb1ede1 620 vdev_deadman(spa->spa_root_vdev, FTAG);
cc92e9d0 621
57ddcda1 622 spa->spa_deadman_tqid = taskq_dispatch_delay(system_delay_taskq,
f764edf0 623 spa_deadman, spa, TQ_SLEEP, ddi_get_lbolt() +
b81a3ddc 624 MSEC_TO_TICK(zfs_deadman_checktime_ms));
cc92e9d0
GW
625}
626
65c7cc49 627static int
93e28d66
SD
628spa_log_sm_sort_by_txg(const void *va, const void *vb)
629{
630 const spa_log_sm_t *a = va;
631 const spa_log_sm_t *b = vb;
632
ca577779 633 return (TREE_CMP(a->sls_txg, b->sls_txg));
93e28d66
SD
634}
635
34dc7c2f
BB
636/*
637 * Create an uninitialized spa_t with the given name. Requires
638 * spa_namespace_lock. The caller must ensure that the spa_t doesn't already
639 * exist by calling spa_lookup() first.
640 */
641spa_t *
428870ff 642spa_add(const char *name, nvlist_t *config, const char *altroot)
34dc7c2f
BB
643{
644 spa_t *spa;
b128c09f 645 spa_config_dirent_t *dp;
34dc7c2f
BB
646
647 ASSERT(MUTEX_HELD(&spa_namespace_lock));
648
79c76d5b 649 spa = kmem_zalloc(sizeof (spa_t), KM_SLEEP);
34dc7c2f 650
34dc7c2f 651 mutex_init(&spa->spa_async_lock, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f 652 mutex_init(&spa->spa_errlist_lock, NULL, MUTEX_DEFAULT, NULL);
428870ff 653 mutex_init(&spa->spa_errlog_lock, NULL, MUTEX_DEFAULT, NULL);
0c66c32d 654 mutex_init(&spa->spa_evicting_os_lock, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f 655 mutex_init(&spa->spa_history_lock, NULL, MUTEX_DEFAULT, NULL);
428870ff 656 mutex_init(&spa->spa_proc_lock, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f 657 mutex_init(&spa->spa_props_lock, NULL, MUTEX_DEFAULT, NULL);
3c67d83a 658 mutex_init(&spa->spa_cksum_tmpls_lock, NULL, MUTEX_DEFAULT, NULL);
428870ff
BB
659 mutex_init(&spa->spa_scrub_lock, NULL, MUTEX_DEFAULT, NULL);
660 mutex_init(&spa->spa_suspend_lock, NULL, MUTEX_DEFAULT, NULL);
661 mutex_init(&spa->spa_vdev_top_lock, NULL, MUTEX_DEFAULT, NULL);
4eb30c68 662 mutex_init(&spa->spa_feat_stats_lock, NULL, MUTEX_DEFAULT, NULL);
93e28d66 663 mutex_init(&spa->spa_flushed_ms_lock, NULL, MUTEX_DEFAULT, NULL);
e60e158e 664 mutex_init(&spa->spa_activities_lock, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f
BB
665
666 cv_init(&spa->spa_async_cv, NULL, CV_DEFAULT, NULL);
0c66c32d 667 cv_init(&spa->spa_evicting_os_cv, NULL, CV_DEFAULT, NULL);
428870ff 668 cv_init(&spa->spa_proc_cv, NULL, CV_DEFAULT, NULL);
34dc7c2f 669 cv_init(&spa->spa_scrub_io_cv, NULL, CV_DEFAULT, NULL);
b128c09f 670 cv_init(&spa->spa_suspend_cv, NULL, CV_DEFAULT, NULL);
e60e158e
JG
671 cv_init(&spa->spa_activities_cv, NULL, CV_DEFAULT, NULL);
672 cv_init(&spa->spa_waiters_cv, NULL, CV_DEFAULT, NULL);
34dc7c2f 673
1c27024e 674 for (int t = 0; t < TXG_SIZE; t++)
428870ff
BB
675 bplist_create(&spa->spa_free_bplist[t]);
676
b128c09f 677 (void) strlcpy(spa->spa_name, name, sizeof (spa->spa_name));
34dc7c2f
BB
678 spa->spa_state = POOL_STATE_UNINITIALIZED;
679 spa->spa_freeze_txg = UINT64_MAX;
680 spa->spa_final_txg = UINT64_MAX;
428870ff
BB
681 spa->spa_load_max_txg = UINT64_MAX;
682 spa->spa_proc = &p0;
683 spa->spa_proc_state = SPA_PROC_NONE;
6cb8e530 684 spa->spa_trust_config = B_TRUE;
25f06d67 685 spa->spa_hostid = zone_get_hostid(NULL);
34dc7c2f 686
e8b96c60 687 spa->spa_deadman_synctime = MSEC2NSEC(zfs_deadman_synctime_ms);
8fb1ede1
BB
688 spa->spa_deadman_ziotime = MSEC2NSEC(zfs_deadman_ziotime_ms);
689 spa_set_deadman_failmode(spa, zfs_deadman_failmode);
cc92e9d0 690
424fd7c3 691 zfs_refcount_create(&spa->spa_refcount);
b128c09f 692 spa_config_lock_init(spa);
1421c891 693 spa_stats_init(spa);
34dc7c2f
BB
694
695 avl_add(&spa_namespace_avl, spa);
696
34dc7c2f
BB
697 /*
698 * Set the alternate root, if there is one.
699 */
0336f3d0 700 if (altroot)
34dc7c2f 701 spa->spa_root = spa_strdup(altroot);
34dc7c2f 702
492f64e9
PD
703 spa->spa_alloc_count = spa_allocators;
704 spa->spa_alloc_locks = kmem_zalloc(spa->spa_alloc_count *
705 sizeof (kmutex_t), KM_SLEEP);
706 spa->spa_alloc_trees = kmem_zalloc(spa->spa_alloc_count *
707 sizeof (avl_tree_t), KM_SLEEP);
708 for (int i = 0; i < spa->spa_alloc_count; i++) {
709 mutex_init(&spa->spa_alloc_locks[i], NULL, MUTEX_DEFAULT, NULL);
710 avl_create(&spa->spa_alloc_trees[i], zio_bookmark_compare,
711 sizeof (zio_t), offsetof(zio_t, io_alloc_node));
712 }
93e28d66
SD
713 avl_create(&spa->spa_metaslabs_by_flushed, metaslab_sort_by_flushed,
714 sizeof (metaslab_t), offsetof(metaslab_t, ms_spa_txg_node));
715 avl_create(&spa->spa_sm_logs_by_txg, spa_log_sm_sort_by_txg,
716 sizeof (spa_log_sm_t), offsetof(spa_log_sm_t, sls_node));
717 list_create(&spa->spa_log_summary, sizeof (log_summary_entry_t),
718 offsetof(log_summary_entry_t, lse_node));
3dfb57a3 719
b128c09f
BB
720 /*
721 * Every pool starts with the default cachefile
722 */
723 list_create(&spa->spa_config_list, sizeof (spa_config_dirent_t),
724 offsetof(spa_config_dirent_t, scd_link));
725
79c76d5b 726 dp = kmem_zalloc(sizeof (spa_config_dirent_t), KM_SLEEP);
428870ff 727 dp->scd_path = altroot ? NULL : spa_strdup(spa_config_path);
b128c09f
BB
728 list_insert_head(&spa->spa_config_list, dp);
729
572e2857 730 VERIFY(nvlist_alloc(&spa->spa_load_info, NV_UNIQUE_NAME,
79c76d5b 731 KM_SLEEP) == 0);
572e2857 732
9ae529ec
CS
733 if (config != NULL) {
734 nvlist_t *features;
735
736 if (nvlist_lookup_nvlist(config, ZPOOL_CONFIG_FEATURES_FOR_READ,
737 &features) == 0) {
738 VERIFY(nvlist_dup(features, &spa->spa_label_features,
739 0) == 0);
740 }
741
428870ff 742 VERIFY(nvlist_dup(config, &spa->spa_config, 0) == 0);
9ae529ec
CS
743 }
744
745 if (spa->spa_label_features == NULL) {
746 VERIFY(nvlist_alloc(&spa->spa_label_features, NV_UNIQUE_NAME,
79c76d5b 747 KM_SLEEP) == 0);
9ae529ec 748 }
428870ff 749
c3520e7f
MA
750 spa->spa_min_ashift = INT_MAX;
751 spa->spa_max_ashift = 0;
b2255edc 752 spa->spa_min_alloc = INT_MAX;
c3520e7f 753
e8a20144
GN
754 /* Reset cached value */
755 spa->spa_dedup_dspace = ~0ULL;
756
b0bc7a84
MG
757 /*
758 * As a pool is being created, treat all features as disabled by
759 * setting SPA_FEATURE_DISABLED for all entries in the feature
760 * refcount cache.
761 */
1c27024e 762 for (int i = 0; i < SPA_FEATURES; i++) {
b0bc7a84
MG
763 spa->spa_feat_refcount_cache[i] = SPA_FEATURE_DISABLED;
764 }
765
3d31aad8
OF
766 list_create(&spa->spa_leaf_list, sizeof (vdev_t),
767 offsetof(vdev_t, vdev_leaf_node));
768
34dc7c2f
BB
769 return (spa);
770}
771
772/*
773 * Removes a spa_t from the namespace, freeing up any memory used. Requires
774 * spa_namespace_lock. This is called only after the spa_t has been closed and
775 * deactivated.
776 */
777void
778spa_remove(spa_t *spa)
779{
b128c09f
BB
780 spa_config_dirent_t *dp;
781
34dc7c2f 782 ASSERT(MUTEX_HELD(&spa_namespace_lock));
93e28d66 783 ASSERT(spa_state(spa) == POOL_STATE_UNINITIALIZED);
424fd7c3 784 ASSERT3U(zfs_refcount_count(&spa->spa_refcount), ==, 0);
e60e158e 785 ASSERT0(spa->spa_waiters);
34dc7c2f 786
428870ff
BB
787 nvlist_free(spa->spa_config_splitting);
788
34dc7c2f
BB
789 avl_remove(&spa_namespace_avl, spa);
790 cv_broadcast(&spa_namespace_cv);
791
0336f3d0 792 if (spa->spa_root)
34dc7c2f 793 spa_strfree(spa->spa_root);
34dc7c2f 794
b128c09f
BB
795 while ((dp = list_head(&spa->spa_config_list)) != NULL) {
796 list_remove(&spa->spa_config_list, dp);
797 if (dp->scd_path != NULL)
798 spa_strfree(dp->scd_path);
799 kmem_free(dp, sizeof (spa_config_dirent_t));
800 }
34dc7c2f 801
492f64e9
PD
802 for (int i = 0; i < spa->spa_alloc_count; i++) {
803 avl_destroy(&spa->spa_alloc_trees[i]);
804 mutex_destroy(&spa->spa_alloc_locks[i]);
805 }
806 kmem_free(spa->spa_alloc_locks, spa->spa_alloc_count *
807 sizeof (kmutex_t));
808 kmem_free(spa->spa_alloc_trees, spa->spa_alloc_count *
809 sizeof (avl_tree_t));
810
93e28d66
SD
811 avl_destroy(&spa->spa_metaslabs_by_flushed);
812 avl_destroy(&spa->spa_sm_logs_by_txg);
813 list_destroy(&spa->spa_log_summary);
b128c09f 814 list_destroy(&spa->spa_config_list);
3d31aad8 815 list_destroy(&spa->spa_leaf_list);
34dc7c2f 816
9ae529ec 817 nvlist_free(spa->spa_label_features);
572e2857 818 nvlist_free(spa->spa_load_info);
417104bd 819 nvlist_free(spa->spa_feat_stats);
34dc7c2f
BB
820 spa_config_set(spa, NULL);
821
424fd7c3 822 zfs_refcount_destroy(&spa->spa_refcount);
34dc7c2f 823
1421c891 824 spa_stats_destroy(spa);
b128c09f 825 spa_config_lock_destroy(spa);
34dc7c2f 826
1c27024e 827 for (int t = 0; t < TXG_SIZE; t++)
428870ff
BB
828 bplist_destroy(&spa->spa_free_bplist[t]);
829
3c67d83a
TH
830 zio_checksum_templates_free(spa);
831
34dc7c2f 832 cv_destroy(&spa->spa_async_cv);
0c66c32d 833 cv_destroy(&spa->spa_evicting_os_cv);
428870ff 834 cv_destroy(&spa->spa_proc_cv);
34dc7c2f 835 cv_destroy(&spa->spa_scrub_io_cv);
b128c09f 836 cv_destroy(&spa->spa_suspend_cv);
e60e158e
JG
837 cv_destroy(&spa->spa_activities_cv);
838 cv_destroy(&spa->spa_waiters_cv);
34dc7c2f 839
93e28d66 840 mutex_destroy(&spa->spa_flushed_ms_lock);
34dc7c2f 841 mutex_destroy(&spa->spa_async_lock);
34dc7c2f 842 mutex_destroy(&spa->spa_errlist_lock);
428870ff 843 mutex_destroy(&spa->spa_errlog_lock);
0c66c32d 844 mutex_destroy(&spa->spa_evicting_os_lock);
34dc7c2f 845 mutex_destroy(&spa->spa_history_lock);
428870ff 846 mutex_destroy(&spa->spa_proc_lock);
34dc7c2f 847 mutex_destroy(&spa->spa_props_lock);
3c67d83a 848 mutex_destroy(&spa->spa_cksum_tmpls_lock);
428870ff 849 mutex_destroy(&spa->spa_scrub_lock);
b128c09f 850 mutex_destroy(&spa->spa_suspend_lock);
428870ff 851 mutex_destroy(&spa->spa_vdev_top_lock);
4eb30c68 852 mutex_destroy(&spa->spa_feat_stats_lock);
e60e158e 853 mutex_destroy(&spa->spa_activities_lock);
34dc7c2f
BB
854
855 kmem_free(spa, sizeof (spa_t));
856}
857
858/*
859 * Given a pool, return the next pool in the namespace, or NULL if there is
860 * none. If 'prev' is NULL, return the first pool.
861 */
862spa_t *
863spa_next(spa_t *prev)
864{
865 ASSERT(MUTEX_HELD(&spa_namespace_lock));
866
867 if (prev)
868 return (AVL_NEXT(&spa_namespace_avl, prev));
869 else
870 return (avl_first(&spa_namespace_avl));
871}
872
873/*
874 * ==========================================================================
875 * SPA refcount functions
876 * ==========================================================================
877 */
878
879/*
880 * Add a reference to the given spa_t. Must have at least one reference, or
881 * have the namespace lock held.
882 */
883void
884spa_open_ref(spa_t *spa, void *tag)
885{
424fd7c3 886 ASSERT(zfs_refcount_count(&spa->spa_refcount) >= spa->spa_minref ||
34dc7c2f 887 MUTEX_HELD(&spa_namespace_lock));
c13060e4 888 (void) zfs_refcount_add(&spa->spa_refcount, tag);
34dc7c2f
BB
889}
890
891/*
892 * Remove a reference to the given spa_t. Must have at least one reference, or
893 * have the namespace lock held.
894 */
895void
896spa_close(spa_t *spa, void *tag)
897{
424fd7c3 898 ASSERT(zfs_refcount_count(&spa->spa_refcount) > spa->spa_minref ||
34dc7c2f 899 MUTEX_HELD(&spa_namespace_lock));
424fd7c3 900 (void) zfs_refcount_remove(&spa->spa_refcount, tag);
34dc7c2f
BB
901}
902
0c66c32d
JG
903/*
904 * Remove a reference to the given spa_t held by a dsl dir that is
905 * being asynchronously released. Async releases occur from a taskq
906 * performing eviction of dsl datasets and dirs. The namespace lock
907 * isn't held and the hold by the object being evicted may contribute to
908 * spa_minref (e.g. dataset or directory released during pool export),
909 * so the asserts in spa_close() do not apply.
910 */
911void
912spa_async_close(spa_t *spa, void *tag)
913{
424fd7c3 914 (void) zfs_refcount_remove(&spa->spa_refcount, tag);
0c66c32d
JG
915}
916
34dc7c2f
BB
917/*
918 * Check to see if the spa refcount is zero. Must be called with
b128c09f 919 * spa_namespace_lock held. We really compare against spa_minref, which is the
34dc7c2f
BB
920 * number of references acquired when opening a pool
921 */
922boolean_t
923spa_refcount_zero(spa_t *spa)
924{
925 ASSERT(MUTEX_HELD(&spa_namespace_lock));
926
424fd7c3 927 return (zfs_refcount_count(&spa->spa_refcount) == spa->spa_minref);
34dc7c2f
BB
928}
929
930/*
931 * ==========================================================================
932 * SPA spare and l2cache tracking
933 * ==========================================================================
934 */
935
936/*
937 * Hot spares and cache devices are tracked using the same code below,
938 * for 'auxiliary' devices.
939 */
940
941typedef struct spa_aux {
942 uint64_t aux_guid;
943 uint64_t aux_pool;
944 avl_node_t aux_avl;
945 int aux_count;
946} spa_aux_t;
947
ee36c709 948static inline int
34dc7c2f
BB
949spa_aux_compare(const void *a, const void *b)
950{
ee36c709
GN
951 const spa_aux_t *sa = (const spa_aux_t *)a;
952 const spa_aux_t *sb = (const spa_aux_t *)b;
34dc7c2f 953
ca577779 954 return (TREE_CMP(sa->aux_guid, sb->aux_guid));
34dc7c2f
BB
955}
956
65c7cc49 957static void
34dc7c2f
BB
958spa_aux_add(vdev_t *vd, avl_tree_t *avl)
959{
960 avl_index_t where;
961 spa_aux_t search;
962 spa_aux_t *aux;
963
964 search.aux_guid = vd->vdev_guid;
965 if ((aux = avl_find(avl, &search, &where)) != NULL) {
966 aux->aux_count++;
967 } else {
79c76d5b 968 aux = kmem_zalloc(sizeof (spa_aux_t), KM_SLEEP);
34dc7c2f
BB
969 aux->aux_guid = vd->vdev_guid;
970 aux->aux_count = 1;
971 avl_insert(avl, aux, where);
972 }
973}
974
65c7cc49 975static void
34dc7c2f
BB
976spa_aux_remove(vdev_t *vd, avl_tree_t *avl)
977{
978 spa_aux_t search;
979 spa_aux_t *aux;
980 avl_index_t where;
981
982 search.aux_guid = vd->vdev_guid;
983 aux = avl_find(avl, &search, &where);
984
985 ASSERT(aux != NULL);
986
987 if (--aux->aux_count == 0) {
988 avl_remove(avl, aux);
989 kmem_free(aux, sizeof (spa_aux_t));
990 } else if (aux->aux_pool == spa_guid(vd->vdev_spa)) {
991 aux->aux_pool = 0ULL;
992 }
993}
994
65c7cc49 995static boolean_t
b128c09f 996spa_aux_exists(uint64_t guid, uint64_t *pool, int *refcnt, avl_tree_t *avl)
34dc7c2f
BB
997{
998 spa_aux_t search, *found;
34dc7c2f
BB
999
1000 search.aux_guid = guid;
b128c09f 1001 found = avl_find(avl, &search, NULL);
34dc7c2f
BB
1002
1003 if (pool) {
1004 if (found)
1005 *pool = found->aux_pool;
1006 else
1007 *pool = 0ULL;
1008 }
1009
b128c09f
BB
1010 if (refcnt) {
1011 if (found)
1012 *refcnt = found->aux_count;
1013 else
1014 *refcnt = 0;
1015 }
1016
34dc7c2f
BB
1017 return (found != NULL);
1018}
1019
65c7cc49 1020static void
34dc7c2f
BB
1021spa_aux_activate(vdev_t *vd, avl_tree_t *avl)
1022{
1023 spa_aux_t search, *found;
1024 avl_index_t where;
1025
1026 search.aux_guid = vd->vdev_guid;
1027 found = avl_find(avl, &search, &where);
1028 ASSERT(found != NULL);
1029 ASSERT(found->aux_pool == 0ULL);
1030
1031 found->aux_pool = spa_guid(vd->vdev_spa);
1032}
1033
1034/*
1035 * Spares are tracked globally due to the following constraints:
1036 *
aa755b35
MA
1037 * - A spare may be part of multiple pools.
1038 * - A spare may be added to a pool even if it's actively in use within
34dc7c2f 1039 * another pool.
aa755b35 1040 * - A spare in use in any pool can only be the source of a replacement if
34dc7c2f
BB
1041 * the target is a spare in the same pool.
1042 *
1043 * We keep track of all spares on the system through the use of a reference
1044 * counted AVL tree. When a vdev is added as a spare, or used as a replacement
1045 * spare, then we bump the reference count in the AVL tree. In addition, we set
1046 * the 'vdev_isspare' member to indicate that the device is a spare (active or
1047 * inactive). When a spare is made active (used to replace a device in the
1048 * pool), we also keep track of which pool its been made a part of.
1049 *
1050 * The 'spa_spare_lock' protects the AVL tree. These functions are normally
1051 * called under the spa_namespace lock as part of vdev reconfiguration. The
1052 * separate spare lock exists for the status query path, which does not need to
1053 * be completely consistent with respect to other vdev configuration changes.
1054 */
1055
1056static int
1057spa_spare_compare(const void *a, const void *b)
1058{
1059 return (spa_aux_compare(a, b));
1060}
1061
1062void
1063spa_spare_add(vdev_t *vd)
1064{
1065 mutex_enter(&spa_spare_lock);
1066 ASSERT(!vd->vdev_isspare);
1067 spa_aux_add(vd, &spa_spare_avl);
1068 vd->vdev_isspare = B_TRUE;
1069 mutex_exit(&spa_spare_lock);
1070}
1071
1072void
1073spa_spare_remove(vdev_t *vd)
1074{
1075 mutex_enter(&spa_spare_lock);
1076 ASSERT(vd->vdev_isspare);
1077 spa_aux_remove(vd, &spa_spare_avl);
1078 vd->vdev_isspare = B_FALSE;
1079 mutex_exit(&spa_spare_lock);
1080}
1081
1082boolean_t
b128c09f 1083spa_spare_exists(uint64_t guid, uint64_t *pool, int *refcnt)
34dc7c2f
BB
1084{
1085 boolean_t found;
1086
1087 mutex_enter(&spa_spare_lock);
b128c09f 1088 found = spa_aux_exists(guid, pool, refcnt, &spa_spare_avl);
34dc7c2f
BB
1089 mutex_exit(&spa_spare_lock);
1090
1091 return (found);
1092}
1093
1094void
1095spa_spare_activate(vdev_t *vd)
1096{
1097 mutex_enter(&spa_spare_lock);
1098 ASSERT(vd->vdev_isspare);
1099 spa_aux_activate(vd, &spa_spare_avl);
1100 mutex_exit(&spa_spare_lock);
1101}
1102
1103/*
1104 * Level 2 ARC devices are tracked globally for the same reasons as spares.
1105 * Cache devices currently only support one pool per cache device, and so
1106 * for these devices the aux reference count is currently unused beyond 1.
1107 */
1108
1109static int
1110spa_l2cache_compare(const void *a, const void *b)
1111{
1112 return (spa_aux_compare(a, b));
1113}
1114
1115void
1116spa_l2cache_add(vdev_t *vd)
1117{
1118 mutex_enter(&spa_l2cache_lock);
1119 ASSERT(!vd->vdev_isl2cache);
1120 spa_aux_add(vd, &spa_l2cache_avl);
1121 vd->vdev_isl2cache = B_TRUE;
1122 mutex_exit(&spa_l2cache_lock);
1123}
1124
1125void
1126spa_l2cache_remove(vdev_t *vd)
1127{
1128 mutex_enter(&spa_l2cache_lock);
1129 ASSERT(vd->vdev_isl2cache);
1130 spa_aux_remove(vd, &spa_l2cache_avl);
1131 vd->vdev_isl2cache = B_FALSE;
1132 mutex_exit(&spa_l2cache_lock);
1133}
1134
1135boolean_t
1136spa_l2cache_exists(uint64_t guid, uint64_t *pool)
1137{
1138 boolean_t found;
1139
1140 mutex_enter(&spa_l2cache_lock);
b128c09f 1141 found = spa_aux_exists(guid, pool, NULL, &spa_l2cache_avl);
34dc7c2f
BB
1142 mutex_exit(&spa_l2cache_lock);
1143
1144 return (found);
1145}
1146
1147void
1148spa_l2cache_activate(vdev_t *vd)
1149{
1150 mutex_enter(&spa_l2cache_lock);
1151 ASSERT(vd->vdev_isl2cache);
1152 spa_aux_activate(vd, &spa_l2cache_avl);
1153 mutex_exit(&spa_l2cache_lock);
1154}
1155
34dc7c2f
BB
1156/*
1157 * ==========================================================================
1158 * SPA vdev locking
1159 * ==========================================================================
1160 */
1161
1162/*
1163 * Lock the given spa_t for the purpose of adding or removing a vdev.
1164 * Grabs the global spa_namespace_lock plus the spa config lock for writing.
1165 * It returns the next transaction group for the spa_t.
1166 */
1167uint64_t
1168spa_vdev_enter(spa_t *spa)
1169{
428870ff 1170 mutex_enter(&spa->spa_vdev_top_lock);
34dc7c2f 1171 mutex_enter(&spa_namespace_lock);
1b939560
BB
1172
1173 vdev_autotrim_stop_all(spa);
1174
428870ff
BB
1175 return (spa_vdev_config_enter(spa));
1176}
1177
9a49d3f3
BB
1178/*
1179 * The same as spa_vdev_enter() above but additionally takes the guid of
1180 * the vdev being detached. When there is a rebuild in process it will be
1181 * suspended while the vdev tree is modified then resumed by spa_vdev_exit().
1182 * The rebuild is canceled if only a single child remains after the detach.
1183 */
1184uint64_t
1185spa_vdev_detach_enter(spa_t *spa, uint64_t guid)
1186{
1187 mutex_enter(&spa->spa_vdev_top_lock);
1188 mutex_enter(&spa_namespace_lock);
1189
1190 vdev_autotrim_stop_all(spa);
1191
1192 if (guid != 0) {
1193 vdev_t *vd = spa_lookup_by_guid(spa, guid, B_FALSE);
1194 if (vd) {
1195 vdev_rebuild_stop_wait(vd->vdev_top);
1196 }
1197 }
1198
1199 return (spa_vdev_config_enter(spa));
1200}
1201
428870ff
BB
1202/*
1203 * Internal implementation for spa_vdev_enter(). Used when a vdev
1204 * operation requires multiple syncs (i.e. removing a device) while
1205 * keeping the spa_namespace_lock held.
1206 */
1207uint64_t
1208spa_vdev_config_enter(spa_t *spa)
1209{
1210 ASSERT(MUTEX_HELD(&spa_namespace_lock));
34dc7c2f 1211
b128c09f 1212 spa_config_enter(spa, SCL_ALL, spa, RW_WRITER);
34dc7c2f
BB
1213
1214 return (spa_last_synced_txg(spa) + 1);
1215}
1216
1217/*
428870ff
BB
1218 * Used in combination with spa_vdev_config_enter() to allow the syncing
1219 * of multiple transactions without releasing the spa_namespace_lock.
34dc7c2f 1220 */
428870ff
BB
1221void
1222spa_vdev_config_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error, char *tag)
34dc7c2f 1223{
1c27024e
DB
1224 ASSERT(MUTEX_HELD(&spa_namespace_lock));
1225
34dc7c2f
BB
1226 int config_changed = B_FALSE;
1227
1228 ASSERT(txg > spa_last_synced_txg(spa));
1229
b128c09f
BB
1230 spa->spa_pending_vdev = NULL;
1231
34dc7c2f
BB
1232 /*
1233 * Reassess the DTLs.
1234 */
9a49d3f3 1235 vdev_dtl_reassess(spa->spa_root_vdev, 0, 0, B_FALSE, B_FALSE);
34dc7c2f 1236
b128c09f 1237 if (error == 0 && !list_is_empty(&spa->spa_config_dirty_list)) {
34dc7c2f 1238 config_changed = B_TRUE;
428870ff 1239 spa->spa_config_generation++;
34dc7c2f
BB
1240 }
1241
428870ff
BB
1242 /*
1243 * Verify the metaslab classes.
1244 */
1245 ASSERT(metaslab_class_validate(spa_normal_class(spa)) == 0);
1246 ASSERT(metaslab_class_validate(spa_log_class(spa)) == 0);
aa755b35 1247 ASSERT(metaslab_class_validate(spa_embedded_log_class(spa)) == 0);
cc99f275
DB
1248 ASSERT(metaslab_class_validate(spa_special_class(spa)) == 0);
1249 ASSERT(metaslab_class_validate(spa_dedup_class(spa)) == 0);
428870ff 1250
b128c09f 1251 spa_config_exit(spa, SCL_ALL, spa);
34dc7c2f 1252
428870ff
BB
1253 /*
1254 * Panic the system if the specified tag requires it. This
1255 * is useful for ensuring that configurations are updated
1256 * transactionally.
1257 */
1258 if (zio_injection_enabled)
1259 zio_handle_panic_injection(spa, tag, 0);
1260
34dc7c2f
BB
1261 /*
1262 * Note: this txg_wait_synced() is important because it ensures
1263 * that there won't be more than one config change per txg.
1264 * This allows us to use the txg as the generation number.
1265 */
1266 if (error == 0)
1267 txg_wait_synced(spa->spa_dsl_pool, txg);
1268
1269 if (vd != NULL) {
93cf2076 1270 ASSERT(!vd->vdev_detached || vd->vdev_dtl_sm == NULL);
619f0976
GW
1271 if (vd->vdev_ops->vdev_op_leaf) {
1272 mutex_enter(&vd->vdev_initialize_lock);
c10d37dd
GW
1273 vdev_initialize_stop(vd, VDEV_INITIALIZE_CANCELED,
1274 NULL);
619f0976 1275 mutex_exit(&vd->vdev_initialize_lock);
1b939560
BB
1276
1277 mutex_enter(&vd->vdev_trim_lock);
1278 vdev_trim_stop(vd, VDEV_TRIM_CANCELED, NULL);
1279 mutex_exit(&vd->vdev_trim_lock);
619f0976
GW
1280 }
1281
1b939560
BB
1282 /*
1283 * The vdev may be both a leaf and top-level device.
1284 */
1285 vdev_autotrim_stop_wait(vd);
1286
75a089ed 1287 spa_config_enter(spa, SCL_STATE_ALL, spa, RW_WRITER);
34dc7c2f 1288 vdev_free(vd);
75a089ed 1289 spa_config_exit(spa, SCL_STATE_ALL, spa);
34dc7c2f
BB
1290 }
1291
1292 /*
1293 * If the config changed, update the config cache.
1294 */
1295 if (config_changed)
a1d477c2 1296 spa_write_cachefile(spa, B_FALSE, B_TRUE);
428870ff 1297}
34dc7c2f 1298
428870ff
BB
1299/*
1300 * Unlock the spa_t after adding or removing a vdev. Besides undoing the
1301 * locking of spa_vdev_enter(), we also want make sure the transactions have
1302 * synced to disk, and then update the global configuration cache with the new
1303 * information.
1304 */
1305int
1306spa_vdev_exit(spa_t *spa, vdev_t *vd, uint64_t txg, int error)
1307{
1b939560 1308 vdev_autotrim_restart(spa);
9a49d3f3 1309 vdev_rebuild_restart(spa);
1b939560 1310
428870ff 1311 spa_vdev_config_exit(spa, vd, txg, error, FTAG);
34dc7c2f 1312 mutex_exit(&spa_namespace_lock);
428870ff 1313 mutex_exit(&spa->spa_vdev_top_lock);
34dc7c2f
BB
1314
1315 return (error);
1316}
1317
b128c09f
BB
1318/*
1319 * Lock the given spa_t for the purpose of changing vdev state.
1320 */
1321void
428870ff 1322spa_vdev_state_enter(spa_t *spa, int oplocks)
b128c09f 1323{
428870ff
BB
1324 int locks = SCL_STATE_ALL | oplocks;
1325
1326 /*
1327 * Root pools may need to read of the underlying devfs filesystem
1328 * when opening up a vdev. Unfortunately if we're holding the
1329 * SCL_ZIO lock it will result in a deadlock when we try to issue
1330 * the read from the root filesystem. Instead we "prefetch"
1331 * the associated vnodes that we need prior to opening the
1332 * underlying devices and cache them so that we can prevent
1333 * any I/O when we are doing the actual open.
1334 */
1335 if (spa_is_root(spa)) {
1336 int low = locks & ~(SCL_ZIO - 1);
1337 int high = locks & ~low;
1338
1339 spa_config_enter(spa, high, spa, RW_WRITER);
1340 vdev_hold(spa->spa_root_vdev);
1341 spa_config_enter(spa, low, spa, RW_WRITER);
1342 } else {
1343 spa_config_enter(spa, locks, spa, RW_WRITER);
1344 }
1345 spa->spa_vdev_locks = locks;
b128c09f
BB
1346}
1347
1348int
1349spa_vdev_state_exit(spa_t *spa, vdev_t *vd, int error)
1350{
428870ff 1351 boolean_t config_changed = B_FALSE;
4a283c7f
TH
1352 vdev_t *vdev_top;
1353
1354 if (vd == NULL || vd == spa->spa_root_vdev) {
1355 vdev_top = spa->spa_root_vdev;
1356 } else {
1357 vdev_top = vd->vdev_top;
1358 }
428870ff
BB
1359
1360 if (vd != NULL || error == 0)
9a49d3f3 1361 vdev_dtl_reassess(vdev_top, 0, 0, B_FALSE, B_FALSE);
428870ff
BB
1362
1363 if (vd != NULL) {
4a283c7f
TH
1364 if (vd != spa->spa_root_vdev)
1365 vdev_state_dirty(vdev_top);
1366
428870ff
BB
1367 config_changed = B_TRUE;
1368 spa->spa_config_generation++;
1369 }
b128c09f 1370
428870ff
BB
1371 if (spa_is_root(spa))
1372 vdev_rele(spa->spa_root_vdev);
1373
1374 ASSERT3U(spa->spa_vdev_locks, >=, SCL_STATE_ALL);
1375 spa_config_exit(spa, spa->spa_vdev_locks, spa);
b128c09f 1376
fb5f0bc8
BB
1377 /*
1378 * If anything changed, wait for it to sync. This ensures that,
76d04993 1379 * from the system administrator's perspective, zpool(8) commands
fb5f0bc8
BB
1380 * are synchronous. This is important for things like zpool offline:
1381 * when the command completes, you expect no further I/O from ZFS.
1382 */
1383 if (vd != NULL)
1384 txg_wait_synced(spa->spa_dsl_pool, 0);
1385
428870ff
BB
1386 /*
1387 * If the config changed, update the config cache.
1388 */
1389 if (config_changed) {
1390 mutex_enter(&spa_namespace_lock);
a1d477c2 1391 spa_write_cachefile(spa, B_FALSE, B_TRUE);
428870ff
BB
1392 mutex_exit(&spa_namespace_lock);
1393 }
1394
b128c09f
BB
1395 return (error);
1396}
1397
34dc7c2f
BB
1398/*
1399 * ==========================================================================
1400 * Miscellaneous functions
1401 * ==========================================================================
1402 */
1403
9ae529ec 1404void
b0bc7a84 1405spa_activate_mos_feature(spa_t *spa, const char *feature, dmu_tx_t *tx)
9ae529ec 1406{
fa86b5db
MA
1407 if (!nvlist_exists(spa->spa_label_features, feature)) {
1408 fnvlist_add_boolean(spa->spa_label_features, feature);
b0bc7a84
MG
1409 /*
1410 * When we are creating the pool (tx_txg==TXG_INITIAL), we can't
1411 * dirty the vdev config because lock SCL_CONFIG is not held.
1412 * Thankfully, in this case we don't need to dirty the config
1413 * because it will be written out anyway when we finish
1414 * creating the pool.
1415 */
1416 if (tx->tx_txg != TXG_INITIAL)
1417 vdev_config_dirty(spa->spa_root_vdev);
fa86b5db 1418 }
9ae529ec
CS
1419}
1420
1421void
1422spa_deactivate_mos_feature(spa_t *spa, const char *feature)
1423{
fa86b5db
MA
1424 if (nvlist_remove_all(spa->spa_label_features, feature) == 0)
1425 vdev_config_dirty(spa->spa_root_vdev);
9ae529ec
CS
1426}
1427
34dc7c2f 1428/*
572e2857
BB
1429 * Return the spa_t associated with given pool_guid, if it exists. If
1430 * device_guid is non-zero, determine whether the pool exists *and* contains
1431 * a device with the specified device_guid.
34dc7c2f 1432 */
572e2857
BB
1433spa_t *
1434spa_by_guid(uint64_t pool_guid, uint64_t device_guid)
34dc7c2f
BB
1435{
1436 spa_t *spa;
1437 avl_tree_t *t = &spa_namespace_avl;
1438
1439 ASSERT(MUTEX_HELD(&spa_namespace_lock));
1440
1441 for (spa = avl_first(t); spa != NULL; spa = AVL_NEXT(t, spa)) {
1442 if (spa->spa_state == POOL_STATE_UNINITIALIZED)
1443 continue;
1444 if (spa->spa_root_vdev == NULL)
1445 continue;
1446 if (spa_guid(spa) == pool_guid) {
1447 if (device_guid == 0)
1448 break;
1449
1450 if (vdev_lookup_by_guid(spa->spa_root_vdev,
1451 device_guid) != NULL)
1452 break;
1453
1454 /*
1455 * Check any devices we may be in the process of adding.
1456 */
1457 if (spa->spa_pending_vdev) {
1458 if (vdev_lookup_by_guid(spa->spa_pending_vdev,
1459 device_guid) != NULL)
1460 break;
1461 }
1462 }
1463 }
1464
572e2857
BB
1465 return (spa);
1466}
1467
1468/*
1469 * Determine whether a pool with the given pool_guid exists.
1470 */
1471boolean_t
1472spa_guid_exists(uint64_t pool_guid, uint64_t device_guid)
1473{
1474 return (spa_by_guid(pool_guid, device_guid) != NULL);
34dc7c2f
BB
1475}
1476
1477char *
1478spa_strdup(const char *s)
1479{
1480 size_t len;
1481 char *new;
1482
1483 len = strlen(s);
79c76d5b 1484 new = kmem_alloc(len + 1, KM_SLEEP);
34dc7c2f
BB
1485 bcopy(s, new, len);
1486 new[len] = '\0';
1487
1488 return (new);
1489}
1490
1491void
1492spa_strfree(char *s)
1493{
1494 kmem_free(s, strlen(s) + 1);
1495}
1496
428870ff
BB
1497uint64_t
1498spa_generate_guid(spa_t *spa)
34dc7c2f 1499{
29274c9f 1500 uint64_t guid;
34dc7c2f 1501
428870ff 1502 if (spa != NULL) {
29274c9f
AM
1503 do {
1504 (void) random_get_pseudo_bytes((void *)&guid,
1505 sizeof (guid));
1506 } while (guid == 0 || spa_guid_exists(spa_guid(spa), guid));
428870ff 1507 } else {
29274c9f
AM
1508 do {
1509 (void) random_get_pseudo_bytes((void *)&guid,
1510 sizeof (guid));
1511 } while (guid == 0 || spa_guid_exists(guid, 0));
34dc7c2f
BB
1512 }
1513
428870ff
BB
1514 return (guid);
1515}
1516
1517void
b0bc7a84 1518snprintf_blkptr(char *buf, size_t buflen, const blkptr_t *bp)
428870ff 1519{
9ae529ec 1520 char type[256];
428870ff
BB
1521 char *checksum = NULL;
1522 char *compress = NULL;
34dc7c2f 1523
428870ff 1524 if (bp != NULL) {
9ae529ec
CS
1525 if (BP_GET_TYPE(bp) & DMU_OT_NEWTYPE) {
1526 dmu_object_byteswap_t bswap =
1527 DMU_OT_BYTESWAP(BP_GET_TYPE(bp));
1528 (void) snprintf(type, sizeof (type), "bswap %s %s",
1529 DMU_OT_IS_METADATA(BP_GET_TYPE(bp)) ?
1530 "metadata" : "data",
1531 dmu_ot_byteswap[bswap].ob_name);
1532 } else {
1533 (void) strlcpy(type, dmu_ot[BP_GET_TYPE(bp)].ot_name,
1534 sizeof (type));
1535 }
9b67f605
MA
1536 if (!BP_IS_EMBEDDED(bp)) {
1537 checksum =
1538 zio_checksum_table[BP_GET_CHECKSUM(bp)].ci_name;
1539 }
428870ff 1540 compress = zio_compress_table[BP_GET_COMPRESS(bp)].ci_name;
34dc7c2f
BB
1541 }
1542
b0bc7a84 1543 SNPRINTF_BLKPTR(snprintf, ' ', buf, buflen, bp, type, checksum,
5c27ec10 1544 compress);
34dc7c2f
BB
1545}
1546
1547void
1548spa_freeze(spa_t *spa)
1549{
1550 uint64_t freeze_txg = 0;
1551
b128c09f 1552 spa_config_enter(spa, SCL_ALL, FTAG, RW_WRITER);
34dc7c2f
BB
1553 if (spa->spa_freeze_txg == UINT64_MAX) {
1554 freeze_txg = spa_last_synced_txg(spa) + TXG_SIZE;
1555 spa->spa_freeze_txg = freeze_txg;
1556 }
b128c09f 1557 spa_config_exit(spa, SCL_ALL, FTAG);
34dc7c2f
BB
1558 if (freeze_txg != 0)
1559 txg_wait_synced(spa_get_dsl(spa), freeze_txg);
1560}
1561
0b39b9f9
PS
1562void
1563zfs_panic_recover(const char *fmt, ...)
1564{
1565 va_list adx;
1566
1567 va_start(adx, fmt);
1568 vcmn_err(zfs_recover ? CE_WARN : CE_PANIC, fmt, adx);
1569 va_end(adx);
1570}
1571
428870ff
BB
1572/*
1573 * This is a stripped-down version of strtoull, suitable only for converting
d3cc8b15 1574 * lowercase hexadecimal numbers that don't overflow.
428870ff
BB
1575 */
1576uint64_t
e19572e4 1577zfs_strtonum(const char *str, char **nptr)
428870ff
BB
1578{
1579 uint64_t val = 0;
1580 char c;
1581 int digit;
1582
1583 while ((c = *str) != '\0') {
1584 if (c >= '0' && c <= '9')
1585 digit = c - '0';
1586 else if (c >= 'a' && c <= 'f')
1587 digit = 10 + c - 'a';
1588 else
1589 break;
1590
1591 val *= 16;
1592 val += digit;
1593
1594 str++;
1595 }
1596
1597 if (nptr)
1598 *nptr = (char *)str;
1599
1600 return (val);
1601}
1602
cc99f275
DB
1603void
1604spa_activate_allocation_classes(spa_t *spa, dmu_tx_t *tx)
1605{
1606 /*
1607 * We bump the feature refcount for each special vdev added to the pool
1608 */
1609 ASSERT(spa_feature_is_enabled(spa, SPA_FEATURE_ALLOCATION_CLASSES));
1610 spa_feature_incr(spa, SPA_FEATURE_ALLOCATION_CLASSES, tx);
1611}
1612
34dc7c2f
BB
1613/*
1614 * ==========================================================================
1615 * Accessor functions
1616 * ==========================================================================
1617 */
1618
b128c09f
BB
1619boolean_t
1620spa_shutting_down(spa_t *spa)
34dc7c2f 1621{
b128c09f 1622 return (spa->spa_async_suspended);
34dc7c2f
BB
1623}
1624
1625dsl_pool_t *
1626spa_get_dsl(spa_t *spa)
1627{
1628 return (spa->spa_dsl_pool);
1629}
1630
9ae529ec
CS
1631boolean_t
1632spa_is_initializing(spa_t *spa)
1633{
1634 return (spa->spa_is_initializing);
1635}
1636
a1d477c2
MA
1637boolean_t
1638spa_indirect_vdevs_loaded(spa_t *spa)
1639{
1640 return (spa->spa_indirect_vdevs_loaded);
1641}
1642
34dc7c2f
BB
1643blkptr_t *
1644spa_get_rootblkptr(spa_t *spa)
1645{
1646 return (&spa->spa_ubsync.ub_rootbp);
1647}
1648
1649void
1650spa_set_rootblkptr(spa_t *spa, const blkptr_t *bp)
1651{
1652 spa->spa_uberblock.ub_rootbp = *bp;
1653}
1654
1655void
1656spa_altroot(spa_t *spa, char *buf, size_t buflen)
1657{
1658 if (spa->spa_root == NULL)
1659 buf[0] = '\0';
1660 else
1661 (void) strncpy(buf, spa->spa_root, buflen);
1662}
1663
1664int
1665spa_sync_pass(spa_t *spa)
1666{
1667 return (spa->spa_sync_pass);
1668}
1669
1670char *
1671spa_name(spa_t *spa)
1672{
34dc7c2f
BB
1673 return (spa->spa_name);
1674}
1675
1676uint64_t
1677spa_guid(spa_t *spa)
1678{
3bc7e0fb
GW
1679 dsl_pool_t *dp = spa_get_dsl(spa);
1680 uint64_t guid;
1681
34dc7c2f
BB
1682 /*
1683 * If we fail to parse the config during spa_load(), we can go through
1684 * the error path (which posts an ereport) and end up here with no root
3541dc6d 1685 * vdev. We stash the original pool guid in 'spa_config_guid' to handle
34dc7c2f
BB
1686 * this case.
1687 */
3bc7e0fb
GW
1688 if (spa->spa_root_vdev == NULL)
1689 return (spa->spa_config_guid);
1690
1691 guid = spa->spa_last_synced_guid != 0 ?
1692 spa->spa_last_synced_guid : spa->spa_root_vdev->vdev_guid;
1693
1694 /*
1695 * Return the most recently synced out guid unless we're
1696 * in syncing context.
1697 */
1698 if (dp && dsl_pool_sync_context(dp))
34dc7c2f
BB
1699 return (spa->spa_root_vdev->vdev_guid);
1700 else
3bc7e0fb 1701 return (guid);
3541dc6d
GA
1702}
1703
1704uint64_t
1705spa_load_guid(spa_t *spa)
1706{
1707 /*
1708 * This is a GUID that exists solely as a reference for the
1709 * purposes of the arc. It is generated at load time, and
1710 * is never written to persistent storage.
1711 */
1712 return (spa->spa_load_guid);
34dc7c2f
BB
1713}
1714
1715uint64_t
1716spa_last_synced_txg(spa_t *spa)
1717{
1718 return (spa->spa_ubsync.ub_txg);
1719}
1720
1721uint64_t
1722spa_first_txg(spa_t *spa)
1723{
1724 return (spa->spa_first_txg);
1725}
1726
428870ff
BB
1727uint64_t
1728spa_syncing_txg(spa_t *spa)
1729{
1730 return (spa->spa_syncing_txg);
1731}
1732
3b7f360c
GW
1733/*
1734 * Return the last txg where data can be dirtied. The final txgs
1735 * will be used to just clear out any deferred frees that remain.
1736 */
1737uint64_t
1738spa_final_dirty_txg(spa_t *spa)
1739{
1740 return (spa->spa_final_txg - TXG_DEFER_SIZE);
1741}
1742
b128c09f 1743pool_state_t
34dc7c2f
BB
1744spa_state(spa_t *spa)
1745{
1746 return (spa->spa_state);
1747}
1748
428870ff
BB
1749spa_load_state_t
1750spa_load_state(spa_t *spa)
34dc7c2f 1751{
428870ff 1752 return (spa->spa_load_state);
34dc7c2f
BB
1753}
1754
34dc7c2f 1755uint64_t
428870ff 1756spa_freeze_txg(spa_t *spa)
34dc7c2f 1757{
428870ff 1758 return (spa->spa_freeze_txg);
34dc7c2f
BB
1759}
1760
047187c1 1761/*
1762 * Return the inflated asize for a logical write in bytes. This is used by the
1763 * DMU to calculate the space a logical write will require on disk.
1764 * If lsize is smaller than the largest physical block size allocatable on this
1765 * pool we use its value instead, since the write will end up using the whole
1766 * block anyway.
1767 */
34dc7c2f 1768uint64_t
3ec3bc21 1769spa_get_worst_case_asize(spa_t *spa, uint64_t lsize)
34dc7c2f 1770{
047187c1 1771 if (lsize == 0)
1772 return (0); /* No inflation needed */
1773 return (MAX(lsize, 1 << spa->spa_max_ashift) * spa_asize_inflation);
34dc7c2f
BB
1774}
1775
3d45fdd6 1776/*
aa755b35
MA
1777 * Return the amount of slop space in bytes. It is typically 1/32 of the pool
1778 * (3.2%), minus the embedded log space. On very small pools, it may be
f01eaed4
PS
1779 * slightly larger than this. On very large pools, it will be capped to
1780 * the value of spa_max_slop. The embedded log space is not included in
aa755b35
MA
1781 * spa_dspace. By subtracting it, the usable space (per "zfs list") is a
1782 * constant 97% of the total space, regardless of metaslab size (assuming the
1783 * default spa_slop_shift=5 and a non-tiny pool).
1784 *
1785 * See the comment above spa_slop_shift for more details.
3d45fdd6
MA
1786 */
1787uint64_t
4ea3f864
GM
1788spa_get_slop_space(spa_t *spa)
1789{
3d45fdd6 1790 uint64_t space = spa_get_dspace(spa);
f01eaed4 1791 uint64_t slop = MIN(space >> spa_slop_shift, spa_max_slop);
aa755b35
MA
1792
1793 /*
1794 * Subtract the embedded log space, but no more than half the (3.2%)
1795 * unusable space. Note, the "no more than half" is only relevant if
1796 * zfs_embedded_slog_min_ms >> spa_slop_shift < 2, which is not true by
1797 * default.
1798 */
1799 uint64_t embedded_log =
1800 metaslab_class_get_dspace(spa_embedded_log_class(spa));
1801 slop -= MIN(embedded_log, slop >> 1);
1802
1803 /*
1804 * Slop space should be at least spa_min_slop, but no more than half
1805 * the entire pool.
1806 */
1807 slop = MAX(slop, MIN(space >> 1, spa_min_slop));
1808 return (slop);
3d45fdd6
MA
1809}
1810
34dc7c2f
BB
1811uint64_t
1812spa_get_dspace(spa_t *spa)
1813{
428870ff 1814 return (spa->spa_dspace);
34dc7c2f
BB
1815}
1816
d2734cce
SD
1817uint64_t
1818spa_get_checkpoint_space(spa_t *spa)
1819{
1820 return (spa->spa_checkpoint_info.sci_dspace);
1821}
1822
428870ff
BB
1823void
1824spa_update_dspace(spa_t *spa)
34dc7c2f 1825{
428870ff
BB
1826 spa->spa_dspace = metaslab_class_get_dspace(spa_normal_class(spa)) +
1827 ddt_get_dedup_dspace(spa);
a1d477c2
MA
1828 if (spa->spa_vdev_removal != NULL) {
1829 /*
71e4ce0e
MA
1830 * We can't allocate from the removing device, so subtract
1831 * its size if it was included in dspace (i.e. if this is a
1832 * normal-class vdev, not special/dedup). This prevents the
1833 * DMU/DSL from filling up the (now smaller) pool while we
1834 * are in the middle of removing the device.
a1d477c2
MA
1835 *
1836 * Note that the DMU/DSL doesn't actually know or care
1837 * how much space is allocated (it does its own tracking
1838 * of how much space has been logically used). So it
1839 * doesn't matter that the data we are moving may be
1840 * allocated twice (on the old device and the new
1841 * device).
1842 */
9e052db4
MA
1843 spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
1844 vdev_t *vd =
1845 vdev_lookup_top(spa, spa->spa_vdev_removal->svr_vdev_id);
71e4ce0e
MA
1846 if (vd->vdev_mg->mg_class == spa_normal_class(spa)) {
1847 spa->spa_dspace -= spa_deflate(spa) ?
1848 vd->vdev_stat.vs_dspace : vd->vdev_stat.vs_space;
1849 }
9e052db4 1850 spa_config_exit(spa, SCL_VDEV, FTAG);
a1d477c2 1851 }
34dc7c2f
BB
1852}
1853
1854/*
1855 * Return the failure mode that has been set to this pool. The default
1856 * behavior will be to block all I/Os when a complete failure occurs.
1857 */
8fb1ede1 1858uint64_t
34dc7c2f
BB
1859spa_get_failmode(spa_t *spa)
1860{
1861 return (spa->spa_failmode);
1862}
1863
b128c09f
BB
1864boolean_t
1865spa_suspended(spa_t *spa)
1866{
cec3a0a1 1867 return (spa->spa_suspended != ZIO_SUSPEND_NONE);
b128c09f
BB
1868}
1869
34dc7c2f
BB
1870uint64_t
1871spa_version(spa_t *spa)
1872{
1873 return (spa->spa_ubsync.ub_version);
1874}
1875
428870ff
BB
1876boolean_t
1877spa_deflate(spa_t *spa)
1878{
1879 return (spa->spa_deflate);
1880}
1881
1882metaslab_class_t *
1883spa_normal_class(spa_t *spa)
1884{
1885 return (spa->spa_normal_class);
1886}
1887
1888metaslab_class_t *
1889spa_log_class(spa_t *spa)
1890{
1891 return (spa->spa_log_class);
1892}
1893
aa755b35
MA
1894metaslab_class_t *
1895spa_embedded_log_class(spa_t *spa)
1896{
1897 return (spa->spa_embedded_log_class);
1898}
1899
cc99f275
DB
1900metaslab_class_t *
1901spa_special_class(spa_t *spa)
1902{
1903 return (spa->spa_special_class);
1904}
1905
1906metaslab_class_t *
1907spa_dedup_class(spa_t *spa)
1908{
1909 return (spa->spa_dedup_class);
1910}
1911
1912/*
1913 * Locate an appropriate allocation class
1914 */
1915metaslab_class_t *
1916spa_preferred_class(spa_t *spa, uint64_t size, dmu_object_type_t objtype,
1917 uint_t level, uint_t special_smallblk)
1918{
aa755b35
MA
1919 /*
1920 * ZIL allocations determine their class in zio_alloc_zil().
1921 */
1922 ASSERT(objtype != DMU_OT_INTENT_LOG);
cc99f275
DB
1923
1924 boolean_t has_special_class = spa->spa_special_class->mc_groups != 0;
1925
1926 if (DMU_OT_IS_DDT(objtype)) {
1927 if (spa->spa_dedup_class->mc_groups != 0)
1928 return (spa_dedup_class(spa));
1929 else if (has_special_class && zfs_ddt_data_is_special)
1930 return (spa_special_class(spa));
1931 else
1932 return (spa_normal_class(spa));
1933 }
1934
1935 /* Indirect blocks for user data can land in special if allowed */
1936 if (level > 0 && (DMU_OT_IS_FILE(objtype) || objtype == DMU_OT_ZVOL)) {
1937 if (has_special_class && zfs_user_indirect_is_special)
1938 return (spa_special_class(spa));
1939 else
1940 return (spa_normal_class(spa));
1941 }
1942
1943 if (DMU_OT_IS_METADATA(objtype) || level > 0) {
1944 if (has_special_class)
1945 return (spa_special_class(spa));
1946 else
1947 return (spa_normal_class(spa));
1948 }
1949
1950 /*
1951 * Allow small file blocks in special class in some cases (like
1952 * for the dRAID vdev feature). But always leave a reserve of
1953 * zfs_special_class_metadata_reserve_pct exclusively for metadata.
1954 */
1955 if (DMU_OT_IS_FILE(objtype) &&
44170969 1956 has_special_class && size <= special_smallblk) {
cc99f275
DB
1957 metaslab_class_t *special = spa_special_class(spa);
1958 uint64_t alloc = metaslab_class_get_alloc(special);
1959 uint64_t space = metaslab_class_get_space(special);
1960 uint64_t limit =
1961 (space * (100 - zfs_special_class_metadata_reserve_pct))
1962 / 100;
1963
1964 if (alloc < limit)
1965 return (special);
1966 }
1967
1968 return (spa_normal_class(spa));
1969}
1970
0c66c32d
JG
1971void
1972spa_evicting_os_register(spa_t *spa, objset_t *os)
1973{
1974 mutex_enter(&spa->spa_evicting_os_lock);
1975 list_insert_head(&spa->spa_evicting_os_list, os);
1976 mutex_exit(&spa->spa_evicting_os_lock);
1977}
1978
1979void
1980spa_evicting_os_deregister(spa_t *spa, objset_t *os)
1981{
1982 mutex_enter(&spa->spa_evicting_os_lock);
1983 list_remove(&spa->spa_evicting_os_list, os);
1984 cv_broadcast(&spa->spa_evicting_os_cv);
1985 mutex_exit(&spa->spa_evicting_os_lock);
1986}
1987
1988void
1989spa_evicting_os_wait(spa_t *spa)
1990{
1991 mutex_enter(&spa->spa_evicting_os_lock);
1992 while (!list_is_empty(&spa->spa_evicting_os_list))
1993 cv_wait(&spa->spa_evicting_os_cv, &spa->spa_evicting_os_lock);
1994 mutex_exit(&spa->spa_evicting_os_lock);
1995
1996 dmu_buf_user_evict_wait();
1997}
1998
34dc7c2f
BB
1999int
2000spa_max_replication(spa_t *spa)
2001{
2002 /*
2003 * As of SPA_VERSION == SPA_VERSION_DITTO_BLOCKS, we are able to
2004 * handle BPs with more than one DVA allocated. Set our max
2005 * replication level accordingly.
2006 */
2007 if (spa_version(spa) < SPA_VERSION_DITTO_BLOCKS)
2008 return (1);
2009 return (MIN(SPA_DVAS_PER_BP, spa_max_replication_override));
2010}
2011
428870ff
BB
2012int
2013spa_prev_software_version(spa_t *spa)
2014{
2015 return (spa->spa_prev_software_version);
2016}
2017
cc92e9d0
GW
2018uint64_t
2019spa_deadman_synctime(spa_t *spa)
2020{
2021 return (spa->spa_deadman_synctime);
2022}
2023
1b939560
BB
2024spa_autotrim_t
2025spa_get_autotrim(spa_t *spa)
2026{
2027 return (spa->spa_autotrim);
2028}
2029
8fb1ede1
BB
2030uint64_t
2031spa_deadman_ziotime(spa_t *spa)
2032{
2033 return (spa->spa_deadman_ziotime);
2034}
2035
2036uint64_t
2037spa_get_deadman_failmode(spa_t *spa)
2038{
2039 return (spa->spa_deadman_failmode);
2040}
2041
2042void
2043spa_set_deadman_failmode(spa_t *spa, const char *failmode)
2044{
2045 if (strcmp(failmode, "wait") == 0)
2046 spa->spa_deadman_failmode = ZIO_FAILURE_MODE_WAIT;
2047 else if (strcmp(failmode, "continue") == 0)
2048 spa->spa_deadman_failmode = ZIO_FAILURE_MODE_CONTINUE;
2049 else if (strcmp(failmode, "panic") == 0)
2050 spa->spa_deadman_failmode = ZIO_FAILURE_MODE_PANIC;
2051 else
2052 spa->spa_deadman_failmode = ZIO_FAILURE_MODE_WAIT;
2053}
2054
57940b43
RM
2055void
2056spa_set_deadman_ziotime(hrtime_t ns)
2057{
2058 spa_t *spa = NULL;
2059
2060 if (spa_mode_global != SPA_MODE_UNINIT) {
2061 mutex_enter(&spa_namespace_lock);
2062 while ((spa = spa_next(spa)) != NULL)
2063 spa->spa_deadman_ziotime = ns;
2064 mutex_exit(&spa_namespace_lock);
2065 }
2066}
2067
2068void
2069spa_set_deadman_synctime(hrtime_t ns)
2070{
2071 spa_t *spa = NULL;
2072
2073 if (spa_mode_global != SPA_MODE_UNINIT) {
2074 mutex_enter(&spa_namespace_lock);
2075 while ((spa = spa_next(spa)) != NULL)
2076 spa->spa_deadman_synctime = ns;
2077 mutex_exit(&spa_namespace_lock);
2078 }
2079}
2080
34dc7c2f 2081uint64_t
428870ff 2082dva_get_dsize_sync(spa_t *spa, const dva_t *dva)
34dc7c2f 2083{
428870ff
BB
2084 uint64_t asize = DVA_GET_ASIZE(dva);
2085 uint64_t dsize = asize;
34dc7c2f 2086
428870ff 2087 ASSERT(spa_config_held(spa, SCL_ALL, RW_READER) != 0);
34dc7c2f 2088
428870ff
BB
2089 if (asize != 0 && spa->spa_deflate) {
2090 vdev_t *vd = vdev_lookup_top(spa, DVA_GET_VDEV(dva));
2c33b912
BB
2091 if (vd != NULL)
2092 dsize = (asize >> SPA_MINBLOCKSHIFT) *
2093 vd->vdev_deflate_ratio;
34dc7c2f 2094 }
428870ff
BB
2095
2096 return (dsize);
2097}
2098
2099uint64_t
2100bp_get_dsize_sync(spa_t *spa, const blkptr_t *bp)
2101{
2102 uint64_t dsize = 0;
2103
1c27024e 2104 for (int d = 0; d < BP_GET_NDVAS(bp); d++)
428870ff
BB
2105 dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]);
2106
2107 return (dsize);
2108}
2109
2110uint64_t
2111bp_get_dsize(spa_t *spa, const blkptr_t *bp)
2112{
2113 uint64_t dsize = 0;
2114
2115 spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2116
1c27024e 2117 for (int d = 0; d < BP_GET_NDVAS(bp); d++)
428870ff
BB
2118 dsize += dva_get_dsize_sync(spa, &bp->blk_dva[d]);
2119
b128c09f 2120 spa_config_exit(spa, SCL_VDEV, FTAG);
428870ff
BB
2121
2122 return (dsize);
34dc7c2f
BB
2123}
2124
dae3e9ea
DB
2125uint64_t
2126spa_dirty_data(spa_t *spa)
2127{
2128 return (spa->spa_dsl_pool->dp_dirty_total);
2129}
2130
ca95f70d
OF
2131/*
2132 * ==========================================================================
2133 * SPA Import Progress Routines
2134 * ==========================================================================
2135 */
2136
2137typedef struct spa_import_progress {
2138 uint64_t pool_guid; /* unique id for updates */
2139 char *pool_name;
2140 spa_load_state_t spa_load_state;
2141 uint64_t mmp_sec_remaining; /* MMP activity check */
2142 uint64_t spa_load_max_txg; /* rewind txg */
2143 procfs_list_node_t smh_node;
2144} spa_import_progress_t;
2145
2146spa_history_list_t *spa_import_progress_list = NULL;
2147
2148static int
2149spa_import_progress_show_header(struct seq_file *f)
2150{
2151 seq_printf(f, "%-20s %-14s %-14s %-12s %s\n", "pool_guid",
2152 "load_state", "multihost_secs", "max_txg",
2153 "pool_name");
2154 return (0);
2155}
2156
2157static int
2158spa_import_progress_show(struct seq_file *f, void *data)
2159{
2160 spa_import_progress_t *sip = (spa_import_progress_t *)data;
2161
2162 seq_printf(f, "%-20llu %-14llu %-14llu %-12llu %s\n",
2163 (u_longlong_t)sip->pool_guid, (u_longlong_t)sip->spa_load_state,
2164 (u_longlong_t)sip->mmp_sec_remaining,
2165 (u_longlong_t)sip->spa_load_max_txg,
2166 (sip->pool_name ? sip->pool_name : "-"));
2167
2168 return (0);
2169}
2170
2171/* Remove oldest elements from list until there are no more than 'size' left */
2172static void
2173spa_import_progress_truncate(spa_history_list_t *shl, unsigned int size)
2174{
2175 spa_import_progress_t *sip;
2176 while (shl->size > size) {
2177 sip = list_remove_head(&shl->procfs_list.pl_list);
2178 if (sip->pool_name)
2179 spa_strfree(sip->pool_name);
2180 kmem_free(sip, sizeof (spa_import_progress_t));
2181 shl->size--;
2182 }
2183
2184 IMPLY(size == 0, list_is_empty(&shl->procfs_list.pl_list));
2185}
2186
2187static void
2188spa_import_progress_init(void)
2189{
2190 spa_import_progress_list = kmem_zalloc(sizeof (spa_history_list_t),
2191 KM_SLEEP);
2192
2193 spa_import_progress_list->size = 0;
2194
2195 spa_import_progress_list->procfs_list.pl_private =
2196 spa_import_progress_list;
2197
2198 procfs_list_install("zfs",
7b8363d7 2199 NULL,
ca95f70d
OF
2200 "import_progress",
2201 0644,
2202 &spa_import_progress_list->procfs_list,
2203 spa_import_progress_show,
2204 spa_import_progress_show_header,
2205 NULL,
2206 offsetof(spa_import_progress_t, smh_node));
2207}
2208
2209static void
2210spa_import_progress_destroy(void)
2211{
2212 spa_history_list_t *shl = spa_import_progress_list;
2213 procfs_list_uninstall(&shl->procfs_list);
2214 spa_import_progress_truncate(shl, 0);
ca95f70d 2215 procfs_list_destroy(&shl->procfs_list);
75c09c50 2216 kmem_free(shl, sizeof (spa_history_list_t));
ca95f70d
OF
2217}
2218
2219int
2220spa_import_progress_set_state(uint64_t pool_guid,
2221 spa_load_state_t load_state)
2222{
2223 spa_history_list_t *shl = spa_import_progress_list;
2224 spa_import_progress_t *sip;
2225 int error = ENOENT;
2226
2227 if (shl->size == 0)
2228 return (0);
2229
2230 mutex_enter(&shl->procfs_list.pl_lock);
2231 for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
2232 sip = list_prev(&shl->procfs_list.pl_list, sip)) {
2233 if (sip->pool_guid == pool_guid) {
2234 sip->spa_load_state = load_state;
2235 error = 0;
2236 break;
2237 }
2238 }
2239 mutex_exit(&shl->procfs_list.pl_lock);
2240
2241 return (error);
2242}
2243
2244int
2245spa_import_progress_set_max_txg(uint64_t pool_guid, uint64_t load_max_txg)
2246{
2247 spa_history_list_t *shl = spa_import_progress_list;
2248 spa_import_progress_t *sip;
2249 int error = ENOENT;
2250
2251 if (shl->size == 0)
2252 return (0);
2253
2254 mutex_enter(&shl->procfs_list.pl_lock);
2255 for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
2256 sip = list_prev(&shl->procfs_list.pl_list, sip)) {
2257 if (sip->pool_guid == pool_guid) {
2258 sip->spa_load_max_txg = load_max_txg;
2259 error = 0;
2260 break;
2261 }
2262 }
2263 mutex_exit(&shl->procfs_list.pl_lock);
2264
2265 return (error);
2266}
2267
2268int
2269spa_import_progress_set_mmp_check(uint64_t pool_guid,
2270 uint64_t mmp_sec_remaining)
2271{
2272 spa_history_list_t *shl = spa_import_progress_list;
2273 spa_import_progress_t *sip;
2274 int error = ENOENT;
2275
2276 if (shl->size == 0)
2277 return (0);
2278
2279 mutex_enter(&shl->procfs_list.pl_lock);
2280 for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
2281 sip = list_prev(&shl->procfs_list.pl_list, sip)) {
2282 if (sip->pool_guid == pool_guid) {
2283 sip->mmp_sec_remaining = mmp_sec_remaining;
2284 error = 0;
2285 break;
2286 }
2287 }
2288 mutex_exit(&shl->procfs_list.pl_lock);
2289
2290 return (error);
2291}
2292
2293/*
2294 * A new import is in progress, add an entry.
2295 */
2296void
2297spa_import_progress_add(spa_t *spa)
2298{
2299 spa_history_list_t *shl = spa_import_progress_list;
2300 spa_import_progress_t *sip;
2301 char *poolname = NULL;
2302
2303 sip = kmem_zalloc(sizeof (spa_import_progress_t), KM_SLEEP);
2304 sip->pool_guid = spa_guid(spa);
2305
2306 (void) nvlist_lookup_string(spa->spa_config, ZPOOL_CONFIG_POOL_NAME,
2307 &poolname);
2308 if (poolname == NULL)
2309 poolname = spa_name(spa);
2310 sip->pool_name = spa_strdup(poolname);
2311 sip->spa_load_state = spa_load_state(spa);
2312
2313 mutex_enter(&shl->procfs_list.pl_lock);
2314 procfs_list_add(&shl->procfs_list, sip);
2315 shl->size++;
2316 mutex_exit(&shl->procfs_list.pl_lock);
2317}
2318
2319void
2320spa_import_progress_remove(uint64_t pool_guid)
2321{
2322 spa_history_list_t *shl = spa_import_progress_list;
2323 spa_import_progress_t *sip;
2324
2325 mutex_enter(&shl->procfs_list.pl_lock);
2326 for (sip = list_tail(&shl->procfs_list.pl_list); sip != NULL;
2327 sip = list_prev(&shl->procfs_list.pl_list, sip)) {
2328 if (sip->pool_guid == pool_guid) {
2329 if (sip->pool_name)
2330 spa_strfree(sip->pool_name);
2331 list_remove(&shl->procfs_list.pl_list, sip);
2332 shl->size--;
2333 kmem_free(sip, sizeof (spa_import_progress_t));
2334 break;
2335 }
2336 }
2337 mutex_exit(&shl->procfs_list.pl_lock);
2338}
2339
34dc7c2f
BB
2340/*
2341 * ==========================================================================
2342 * Initialization and Termination
2343 * ==========================================================================
2344 */
2345
2346static int
2347spa_name_compare(const void *a1, const void *a2)
2348{
2349 const spa_t *s1 = a1;
2350 const spa_t *s2 = a2;
2351 int s;
2352
2353 s = strcmp(s1->spa_name, s2->spa_name);
ee36c709 2354
ca577779 2355 return (TREE_ISIGN(s));
34dc7c2f
BB
2356}
2357
34dc7c2f 2358void
0bc8fd78 2359spa_boot_init(void)
34dc7c2f
BB
2360{
2361 spa_config_load();
2362}
2363
2364void
da92d5cb 2365spa_init(spa_mode_t mode)
34dc7c2f
BB
2366{
2367 mutex_init(&spa_namespace_lock, NULL, MUTEX_DEFAULT, NULL);
2368 mutex_init(&spa_spare_lock, NULL, MUTEX_DEFAULT, NULL);
2369 mutex_init(&spa_l2cache_lock, NULL, MUTEX_DEFAULT, NULL);
2370 cv_init(&spa_namespace_cv, NULL, CV_DEFAULT, NULL);
2371
2372 avl_create(&spa_namespace_avl, spa_name_compare, sizeof (spa_t),
2373 offsetof(spa_t, spa_avl));
2374
2375 avl_create(&spa_spare_avl, spa_spare_compare, sizeof (spa_aux_t),
2376 offsetof(spa_aux_t, aux_avl));
2377
2378 avl_create(&spa_l2cache_avl, spa_l2cache_compare, sizeof (spa_aux_t),
2379 offsetof(spa_aux_t, aux_avl));
2380
fb5f0bc8 2381 spa_mode_global = mode;
34dc7c2f 2382
498877ba 2383#ifndef _KERNEL
da92d5cb 2384 if (spa_mode_global != SPA_MODE_READ && dprintf_find_string("watch")) {
498877ba
MA
2385 struct sigaction sa;
2386
2387 sa.sa_flags = SA_SIGINFO;
2388 sigemptyset(&sa.sa_mask);
2389 sa.sa_sigaction = arc_buf_sigsegv;
2390
2391 if (sigaction(SIGSEGV, &sa, NULL) == -1) {
2392 perror("could not enable watchpoints: "
2393 "sigaction(SIGSEGV, ...) = ");
2394 } else {
2395 arc_watch = B_TRUE;
2396 }
2397 }
2398#endif
2399
26685276 2400 fm_init();
424fd7c3 2401 zfs_refcount_init();
34dc7c2f 2402 unique_init();
ca577779
PD
2403 zfs_btree_init();
2404 metaslab_stat_init();
ecf3d9b8 2405 ddt_init();
34dc7c2f
BB
2406 zio_init();
2407 dmu_init();
2408 zil_init();
2409 vdev_cache_stat_init();
551905dd 2410 vdev_mirror_stat_init();
ab9f4b0b 2411 vdev_raidz_math_init();
da8f51e1 2412 vdev_file_init();
34dc7c2f
BB
2413 zfs_prop_init();
2414 zpool_prop_init();
9ae529ec 2415 zpool_feature_init();
34dc7c2f 2416 spa_config_load();
b128c09f 2417 l2arc_start();
d4a72f23 2418 scan_init();
6a9d6359 2419 qat_init();
ca95f70d 2420 spa_import_progress_init();
34dc7c2f
BB
2421}
2422
2423void
2424spa_fini(void)
2425{
b128c09f
BB
2426 l2arc_stop();
2427
34dc7c2f
BB
2428 spa_evict_all();
2429
da8f51e1 2430 vdev_file_fini();
34dc7c2f 2431 vdev_cache_stat_fini();
551905dd 2432 vdev_mirror_stat_fini();
ab9f4b0b 2433 vdev_raidz_math_fini();
34dc7c2f
BB
2434 zil_fini();
2435 dmu_fini();
2436 zio_fini();
ecf3d9b8 2437 ddt_fini();
ca577779
PD
2438 metaslab_stat_fini();
2439 zfs_btree_fini();
34dc7c2f 2440 unique_fini();
424fd7c3 2441 zfs_refcount_fini();
26685276 2442 fm_fini();
d4a72f23 2443 scan_fini();
6a9d6359 2444 qat_fini();
ca95f70d 2445 spa_import_progress_destroy();
34dc7c2f
BB
2446
2447 avl_destroy(&spa_namespace_avl);
2448 avl_destroy(&spa_spare_avl);
2449 avl_destroy(&spa_l2cache_avl);
2450
2451 cv_destroy(&spa_namespace_cv);
2452 mutex_destroy(&spa_namespace_lock);
2453 mutex_destroy(&spa_spare_lock);
2454 mutex_destroy(&spa_l2cache_lock);
2455}
2456
2457/*
aa755b35 2458 * Return whether this pool has a dedicated slog device. No locking needed.
34dc7c2f 2459 * It's not a problem if the wrong answer is returned as it's only for
aa755b35 2460 * performance and not correctness.
34dc7c2f
BB
2461 */
2462boolean_t
2463spa_has_slogs(spa_t *spa)
2464{
f8020c93 2465 return (spa->spa_log_class->mc_groups != 0);
34dc7c2f 2466}
b128c09f 2467
428870ff
BB
2468spa_log_state_t
2469spa_get_log_state(spa_t *spa)
2470{
2471 return (spa->spa_log_state);
2472}
2473
2474void
2475spa_set_log_state(spa_t *spa, spa_log_state_t state)
2476{
2477 spa->spa_log_state = state;
2478}
2479
b128c09f
BB
2480boolean_t
2481spa_is_root(spa_t *spa)
2482{
2483 return (spa->spa_is_root);
2484}
fb5f0bc8
BB
2485
2486boolean_t
2487spa_writeable(spa_t *spa)
2488{
da92d5cb 2489 return (!!(spa->spa_mode & SPA_MODE_WRITE) && spa->spa_trust_config);
fb5f0bc8
BB
2490}
2491
acbad6ff
AR
2492/*
2493 * Returns true if there is a pending sync task in any of the current
2494 * syncing txg, the current quiescing txg, or the current open txg.
2495 */
2496boolean_t
2497spa_has_pending_synctask(spa_t *spa)
2498{
d2734cce
SD
2499 return (!txg_all_lists_empty(&spa->spa_dsl_pool->dp_sync_tasks) ||
2500 !txg_all_lists_empty(&spa->spa_dsl_pool->dp_early_sync_tasks));
acbad6ff
AR
2501}
2502
da92d5cb 2503spa_mode_t
fb5f0bc8
BB
2504spa_mode(spa_t *spa)
2505{
2506 return (spa->spa_mode);
2507}
428870ff
BB
2508
2509uint64_t
2510spa_bootfs(spa_t *spa)
2511{
2512 return (spa->spa_bootfs);
2513}
2514
2515uint64_t
2516spa_delegation(spa_t *spa)
2517{
2518 return (spa->spa_delegation);
2519}
2520
2521objset_t *
2522spa_meta_objset(spa_t *spa)
2523{
2524 return (spa->spa_meta_objset);
2525}
2526
2527enum zio_checksum
2528spa_dedup_checksum(spa_t *spa)
2529{
2530 return (spa->spa_dedup_checksum);
2531}
2532
2533/*
2534 * Reset pool scan stat per scan pass (or reboot).
2535 */
2536void
2537spa_scan_stat_init(spa_t *spa)
2538{
2539 /* data not stored on disk */
2540 spa->spa_scan_pass_start = gethrestime_sec();
0ea05c64
AP
2541 if (dsl_scan_is_paused_scrub(spa->spa_dsl_pool->dp_scan))
2542 spa->spa_scan_pass_scrub_pause = spa->spa_scan_pass_start;
2543 else
2544 spa->spa_scan_pass_scrub_pause = 0;
2545 spa->spa_scan_pass_scrub_spent_paused = 0;
428870ff 2546 spa->spa_scan_pass_exam = 0;
d4a72f23 2547 spa->spa_scan_pass_issued = 0;
428870ff
BB
2548 vdev_scan_stat_init(spa->spa_root_vdev);
2549}
2550
2551/*
2552 * Get scan stats for zpool status reports
2553 */
2554int
2555spa_scan_get_stats(spa_t *spa, pool_scan_stat_t *ps)
2556{
2557 dsl_scan_t *scn = spa->spa_dsl_pool ? spa->spa_dsl_pool->dp_scan : NULL;
2558
2559 if (scn == NULL || scn->scn_phys.scn_func == POOL_SCAN_NONE)
2e528b49 2560 return (SET_ERROR(ENOENT));
428870ff
BB
2561 bzero(ps, sizeof (pool_scan_stat_t));
2562
2563 /* data stored on disk */
2564 ps->pss_func = scn->scn_phys.scn_func;
d4a72f23 2565 ps->pss_state = scn->scn_phys.scn_state;
428870ff
BB
2566 ps->pss_start_time = scn->scn_phys.scn_start_time;
2567 ps->pss_end_time = scn->scn_phys.scn_end_time;
2568 ps->pss_to_examine = scn->scn_phys.scn_to_examine;
d4677269 2569 ps->pss_examined = scn->scn_phys.scn_examined;
428870ff
BB
2570 ps->pss_to_process = scn->scn_phys.scn_to_process;
2571 ps->pss_processed = scn->scn_phys.scn_processed;
2572 ps->pss_errors = scn->scn_phys.scn_errors;
428870ff
BB
2573
2574 /* data not stored on disk */
428870ff 2575 ps->pss_pass_exam = spa->spa_scan_pass_exam;
d4677269 2576 ps->pss_pass_start = spa->spa_scan_pass_start;
0ea05c64
AP
2577 ps->pss_pass_scrub_pause = spa->spa_scan_pass_scrub_pause;
2578 ps->pss_pass_scrub_spent_paused = spa->spa_scan_pass_scrub_spent_paused;
d4677269
TC
2579 ps->pss_pass_issued = spa->spa_scan_pass_issued;
2580 ps->pss_issued =
2581 scn->scn_issued_before_pass + spa->spa_scan_pass_issued;
428870ff
BB
2582
2583 return (0);
2584}
c28b2279 2585
f1512ee6
MA
2586int
2587spa_maxblocksize(spa_t *spa)
2588{
2589 if (spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_BLOCKS))
2590 return (SPA_MAXBLOCKSIZE);
2591 else
2592 return (SPA_OLD_MAXBLOCKSIZE);
2593}
2594
a1d477c2
MA
2595
2596/*
2597 * Returns the txg that the last device removal completed. No indirect mappings
2598 * have been added since this txg.
2599 */
2600uint64_t
2601spa_get_last_removal_txg(spa_t *spa)
2602{
2603 uint64_t vdevid;
2604 uint64_t ret = -1ULL;
2605
2606 spa_config_enter(spa, SCL_VDEV, FTAG, RW_READER);
2607 /*
2608 * sr_prev_indirect_vdev is only modified while holding all the
2609 * config locks, so it is sufficient to hold SCL_VDEV as reader when
2610 * examining it.
2611 */
2612 vdevid = spa->spa_removing_phys.sr_prev_indirect_vdev;
2613
2614 while (vdevid != -1ULL) {
2615 vdev_t *vd = vdev_lookup_top(spa, vdevid);
2616 vdev_indirect_births_t *vib = vd->vdev_indirect_births;
2617
2618 ASSERT3P(vd->vdev_ops, ==, &vdev_indirect_ops);
2619
2620 /*
2621 * If the removal did not remap any data, we don't care.
2622 */
2623 if (vdev_indirect_births_count(vib) != 0) {
2624 ret = vdev_indirect_births_last_entry_txg(vib);
2625 break;
2626 }
2627
2628 vdevid = vd->vdev_indirect_config.vic_prev_indirect_vdev;
2629 }
2630 spa_config_exit(spa, SCL_VDEV, FTAG);
2631
2632 IMPLY(ret != -1ULL,
2633 spa_feature_is_active(spa, SPA_FEATURE_DEVICE_REMOVAL));
2634
2635 return (ret);
2636}
2637
50c957f7
NB
2638int
2639spa_maxdnodesize(spa_t *spa)
2640{
2641 if (spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_DNODE))
2642 return (DNODE_MAX_SIZE);
2643 else
2644 return (DNODE_MIN_SIZE);
2645}
2646
379ca9cf
OF
2647boolean_t
2648spa_multihost(spa_t *spa)
2649{
2650 return (spa->spa_multihost ? B_TRUE : B_FALSE);
2651}
2652
25f06d67
BB
2653uint32_t
2654spa_get_hostid(spa_t *spa)
379ca9cf 2655{
25f06d67 2656 return (spa->spa_hostid);
379ca9cf
OF
2657}
2658
6cb8e530
PZ
2659boolean_t
2660spa_trust_config(spa_t *spa)
2661{
2662 return (spa->spa_trust_config);
2663}
2664
2665uint64_t
2666spa_missing_tvds_allowed(spa_t *spa)
2667{
2668 return (spa->spa_missing_tvds_allowed);
2669}
2670
93e28d66
SD
2671space_map_t *
2672spa_syncing_log_sm(spa_t *spa)
2673{
2674 return (spa->spa_syncing_log_sm);
2675}
2676
6cb8e530
PZ
2677void
2678spa_set_missing_tvds(spa_t *spa, uint64_t missing)
2679{
2680 spa->spa_missing_tvds = missing;
2681}
2682
f0ed6c74
TH
2683/*
2684 * Return the pool state string ("ONLINE", "DEGRADED", "SUSPENDED", etc).
2685 */
2686const char *
2687spa_state_to_name(spa_t *spa)
2688{
78fac8d9
RE
2689 ASSERT3P(spa, !=, NULL);
2690
2691 /*
2692 * it is possible for the spa to exist, without root vdev
2693 * as the spa transitions during import/export
2694 */
2695 vdev_t *rvd = spa->spa_root_vdev;
2696 if (rvd == NULL) {
2697 return ("TRANSITIONING");
2698 }
2699 vdev_state_t state = rvd->vdev_state;
2700 vdev_aux_t aux = rvd->vdev_stat.vs_aux;
f0ed6c74
TH
2701
2702 if (spa_suspended(spa) &&
2703 (spa_get_failmode(spa) != ZIO_FAILURE_MODE_CONTINUE))
2704 return ("SUSPENDED");
2705
2706 switch (state) {
2707 case VDEV_STATE_CLOSED:
2708 case VDEV_STATE_OFFLINE:
2709 return ("OFFLINE");
2710 case VDEV_STATE_REMOVED:
2711 return ("REMOVED");
2712 case VDEV_STATE_CANT_OPEN:
2713 if (aux == VDEV_AUX_CORRUPT_DATA || aux == VDEV_AUX_BAD_LOG)
2714 return ("FAULTED");
2715 else if (aux == VDEV_AUX_SPLIT_POOL)
2716 return ("SPLIT");
2717 else
2718 return ("UNAVAIL");
2719 case VDEV_STATE_FAULTED:
2720 return ("FAULTED");
2721 case VDEV_STATE_DEGRADED:
2722 return ("DEGRADED");
2723 case VDEV_STATE_HEALTHY:
2724 return ("ONLINE");
2725 default:
2726 break;
2727 }
2728
2729 return ("UNKNOWN");
2730}
2731
d2734cce
SD
2732boolean_t
2733spa_top_vdevs_spacemap_addressable(spa_t *spa)
2734{
2735 vdev_t *rvd = spa->spa_root_vdev;
2736 for (uint64_t c = 0; c < rvd->vdev_children; c++) {
2737 if (!vdev_is_spacemap_addressable(rvd->vdev_child[c]))
2738 return (B_FALSE);
2739 }
2740 return (B_TRUE);
2741}
2742
2743boolean_t
2744spa_has_checkpoint(spa_t *spa)
2745{
2746 return (spa->spa_checkpoint_txg != 0);
2747}
2748
2749boolean_t
2750spa_importing_readonly_checkpoint(spa_t *spa)
2751{
2752 return ((spa->spa_import_flags & ZFS_IMPORT_CHECKPOINT) &&
da92d5cb 2753 spa->spa_mode == SPA_MODE_READ);
d2734cce
SD
2754}
2755
2756uint64_t
2757spa_min_claim_txg(spa_t *spa)
2758{
2759 uint64_t checkpoint_txg = spa->spa_uberblock.ub_checkpoint_txg;
2760
2761 if (checkpoint_txg != 0)
2762 return (checkpoint_txg + 1);
2763
2764 return (spa->spa_first_txg);
2765}
2766
2767/*
2768 * If there is a checkpoint, async destroys may consume more space from
2769 * the pool instead of freeing it. In an attempt to save the pool from
2770 * getting suspended when it is about to run out of space, we stop
2771 * processing async destroys.
2772 */
2773boolean_t
2774spa_suspend_async_destroy(spa_t *spa)
2775{
2776 dsl_pool_t *dp = spa_get_dsl(spa);
2777
2778 uint64_t unreserved = dsl_pool_unreserved_space(dp,
2779 ZFS_SPACE_CHECK_EXTRA_RESERVED);
2780 uint64_t used = dsl_dir_phys(dp->dp_root_dir)->dd_used_bytes;
2781 uint64_t avail = (unreserved > used) ? (unreserved - used) : 0;
2782
2783 if (spa_has_checkpoint(spa) && avail == 0)
2784 return (B_TRUE);
2785
2786 return (B_FALSE);
2787}
2788
93ce2b4c 2789#if defined(_KERNEL)
8fb1ede1 2790
e64e84ec
MM
2791int
2792param_set_deadman_failmode_common(const char *val)
8fb1ede1
BB
2793{
2794 spa_t *spa = NULL;
2795 char *p;
2796
2797 if (val == NULL)
e64e84ec 2798 return (SET_ERROR(EINVAL));
8fb1ede1
BB
2799
2800 if ((p = strchr(val, '\n')) != NULL)
2801 *p = '\0';
2802
2803 if (strcmp(val, "wait") != 0 && strcmp(val, "continue") != 0 &&
2804 strcmp(val, "panic"))
e64e84ec 2805 return (SET_ERROR(EINVAL));
8fb1ede1 2806
da92d5cb 2807 if (spa_mode_global != SPA_MODE_UNINIT) {
d1043e2f
TC
2808 mutex_enter(&spa_namespace_lock);
2809 while ((spa = spa_next(spa)) != NULL)
2810 spa_set_deadman_failmode(spa, val);
2811 mutex_exit(&spa_namespace_lock);
2812 }
8fb1ede1 2813
e64e84ec 2814 return (0);
8fb1ede1 2815}
03fdcb9a
MM
2816#endif
2817
c28b2279
BB
2818/* Namespace manipulation */
2819EXPORT_SYMBOL(spa_lookup);
2820EXPORT_SYMBOL(spa_add);
2821EXPORT_SYMBOL(spa_remove);
2822EXPORT_SYMBOL(spa_next);
2823
2824/* Refcount functions */
2825EXPORT_SYMBOL(spa_open_ref);
2826EXPORT_SYMBOL(spa_close);
2827EXPORT_SYMBOL(spa_refcount_zero);
2828
2829/* Pool configuration lock */
2830EXPORT_SYMBOL(spa_config_tryenter);
2831EXPORT_SYMBOL(spa_config_enter);
2832EXPORT_SYMBOL(spa_config_exit);
2833EXPORT_SYMBOL(spa_config_held);
2834
2835/* Pool vdev add/remove lock */
2836EXPORT_SYMBOL(spa_vdev_enter);
2837EXPORT_SYMBOL(spa_vdev_exit);
2838
2839/* Pool vdev state change lock */
2840EXPORT_SYMBOL(spa_vdev_state_enter);
2841EXPORT_SYMBOL(spa_vdev_state_exit);
2842
2843/* Accessor functions */
2844EXPORT_SYMBOL(spa_shutting_down);
2845EXPORT_SYMBOL(spa_get_dsl);
2846EXPORT_SYMBOL(spa_get_rootblkptr);
2847EXPORT_SYMBOL(spa_set_rootblkptr);
2848EXPORT_SYMBOL(spa_altroot);
2849EXPORT_SYMBOL(spa_sync_pass);
2850EXPORT_SYMBOL(spa_name);
2851EXPORT_SYMBOL(spa_guid);
2852EXPORT_SYMBOL(spa_last_synced_txg);
2853EXPORT_SYMBOL(spa_first_txg);
2854EXPORT_SYMBOL(spa_syncing_txg);
2855EXPORT_SYMBOL(spa_version);
2856EXPORT_SYMBOL(spa_state);
2857EXPORT_SYMBOL(spa_load_state);
2858EXPORT_SYMBOL(spa_freeze_txg);
c28b2279
BB
2859EXPORT_SYMBOL(spa_get_dspace);
2860EXPORT_SYMBOL(spa_update_dspace);
2861EXPORT_SYMBOL(spa_deflate);
2862EXPORT_SYMBOL(spa_normal_class);
2863EXPORT_SYMBOL(spa_log_class);
cc99f275
DB
2864EXPORT_SYMBOL(spa_special_class);
2865EXPORT_SYMBOL(spa_preferred_class);
c28b2279
BB
2866EXPORT_SYMBOL(spa_max_replication);
2867EXPORT_SYMBOL(spa_prev_software_version);
2868EXPORT_SYMBOL(spa_get_failmode);
2869EXPORT_SYMBOL(spa_suspended);
2870EXPORT_SYMBOL(spa_bootfs);
2871EXPORT_SYMBOL(spa_delegation);
2872EXPORT_SYMBOL(spa_meta_objset);
f1512ee6 2873EXPORT_SYMBOL(spa_maxblocksize);
50c957f7 2874EXPORT_SYMBOL(spa_maxdnodesize);
c28b2279
BB
2875
2876/* Miscellaneous support routines */
c28b2279
BB
2877EXPORT_SYMBOL(spa_guid_exists);
2878EXPORT_SYMBOL(spa_strdup);
2879EXPORT_SYMBOL(spa_strfree);
c28b2279 2880EXPORT_SYMBOL(spa_generate_guid);
b0bc7a84 2881EXPORT_SYMBOL(snprintf_blkptr);
c28b2279
BB
2882EXPORT_SYMBOL(spa_freeze);
2883EXPORT_SYMBOL(spa_upgrade);
2884EXPORT_SYMBOL(spa_evict_all);
2885EXPORT_SYMBOL(spa_lookup_by_guid);
2886EXPORT_SYMBOL(spa_has_spare);
2887EXPORT_SYMBOL(dva_get_dsize_sync);
2888EXPORT_SYMBOL(bp_get_dsize_sync);
2889EXPORT_SYMBOL(bp_get_dsize);
2890EXPORT_SYMBOL(spa_has_slogs);
2891EXPORT_SYMBOL(spa_is_root);
2892EXPORT_SYMBOL(spa_writeable);
2893EXPORT_SYMBOL(spa_mode);
c28b2279 2894EXPORT_SYMBOL(spa_namespace_lock);
6cb8e530
PZ
2895EXPORT_SYMBOL(spa_trust_config);
2896EXPORT_SYMBOL(spa_missing_tvds_allowed);
2897EXPORT_SYMBOL(spa_set_missing_tvds);
f0ed6c74 2898EXPORT_SYMBOL(spa_state_to_name);
d2734cce
SD
2899EXPORT_SYMBOL(spa_importing_readonly_checkpoint);
2900EXPORT_SYMBOL(spa_min_claim_txg);
2901EXPORT_SYMBOL(spa_suspend_async_destroy);
2902EXPORT_SYMBOL(spa_has_checkpoint);
2903EXPORT_SYMBOL(spa_top_vdevs_spacemap_addressable);
cc92e9d0 2904
03fdcb9a
MM
2905ZFS_MODULE_PARAM(zfs, zfs_, flags, UINT, ZMOD_RW,
2906 "Set additional debugging flags");
0b39b9f9 2907
03fdcb9a
MM
2908ZFS_MODULE_PARAM(zfs, zfs_, recover, INT, ZMOD_RW,
2909 "Set to attempt to recover from fatal errors");
0b39b9f9 2910
03fdcb9a 2911ZFS_MODULE_PARAM(zfs, zfs_, free_leak_on_eio, INT, ZMOD_RW,
0b39b9f9
PS
2912 "Set to ignore IO errors during free and permanently leak the space");
2913
35aa9dc6 2914ZFS_MODULE_PARAM(zfs_deadman, zfs_deadman_, checktime_ms, ULONG, ZMOD_RW,
03fdcb9a
MM
2915 "Dead I/O check interval in milliseconds");
2916
35aa9dc6 2917ZFS_MODULE_PARAM(zfs_deadman, zfs_deadman_, enabled, INT, ZMOD_RW,
03fdcb9a
MM
2918 "Enable deadman timer");
2919
2920ZFS_MODULE_PARAM(zfs_spa, spa_, asize_inflation, INT, ZMOD_RW,
2921 "SPA size estimate multiplication factor");
2922
2923ZFS_MODULE_PARAM(zfs, zfs_, ddt_data_is_special, INT, ZMOD_RW,
2924 "Place DDT data into the special class");
2925
2926ZFS_MODULE_PARAM(zfs, zfs_, user_indirect_is_special, INT, ZMOD_RW,
2927 "Place user data indirect blocks into the special class");
2928
03fdcb9a 2929/* BEGIN CSTYLED */
e64e84ec
MM
2930ZFS_MODULE_PARAM_CALL(zfs_deadman, zfs_deadman_, failmode,
2931 param_set_deadman_failmode, param_get_charp, ZMOD_RW,
2932 "Failmode for deadman timer");
2933
2a3aa5a1
MM
2934ZFS_MODULE_PARAM_CALL(zfs_deadman, zfs_deadman_, synctime_ms,
2935 param_set_deadman_synctime, param_get_ulong, ZMOD_RW,
2936 "Pool sync expiration time in milliseconds");
2937
2938ZFS_MODULE_PARAM_CALL(zfs_deadman, zfs_deadman_, ziotime_ms,
2939 param_set_deadman_ziotime, param_get_ulong, ZMOD_RW,
2940 "IO expiration time in milliseconds");
2941
03fdcb9a 2942ZFS_MODULE_PARAM(zfs, zfs_, special_class_metadata_reserve_pct, INT, ZMOD_RW,
1f02ecc5
D
2943 "Small file blocks in special vdevs depends on this much "
2944 "free space available");
02730c33 2945/* END CSTYLED */
2a3aa5a1 2946
7e3df9db 2947ZFS_MODULE_PARAM_CALL(zfs_spa, spa_, slop_shift, param_set_slop_shift,
2a3aa5a1 2948 param_get_int, ZMOD_RW, "Reserved free space in pool");