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.
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.
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]
23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2011, 2018 by Delphix. All rights reserved.
25 * Copyright 2017 Nexenta Systems, Inc.
26 * Copyright (c) 2014 Integros [integros.com]
27 * Copyright 2016 Toomas Soome <tsoome@me.com>
28 * Copyright 2017 Joyent, Inc.
29 * Copyright (c) 2017, Intel Corporation.
32 #include <sys/zfs_context.h>
33 #include <sys/fm/fs/zfs.h>
35 #include <sys/spa_impl.h>
36 #include <sys/bpobj.h>
38 #include <sys/dmu_tx.h>
39 #include <sys/dsl_dir.h>
40 #include <sys/vdev_impl.h>
41 #include <sys/uberblock_impl.h>
42 #include <sys/metaslab.h>
43 #include <sys/metaslab_impl.h>
44 #include <sys/space_map.h>
45 #include <sys/space_reftree.h>
48 #include <sys/fs/zfs.h>
51 #include <sys/dsl_scan.h>
54 #include <sys/zfs_ratelimit.h>
56 /* target number of metaslabs per top-level vdev */
57 int vdev_max_ms_count
= 200;
59 /* minimum number of metaslabs per top-level vdev */
60 int vdev_min_ms_count
= 16;
62 /* practical upper limit of total metaslabs per top-level vdev */
63 int vdev_ms_count_limit
= 1ULL << 17;
65 /* lower limit for metaslab size (512M) */
66 int vdev_default_ms_shift
= 29;
68 /* upper limit for metaslab size (256G) */
69 int vdev_max_ms_shift
= 38;
71 int vdev_validate_skip
= B_FALSE
;
74 * Since the DTL space map of a vdev is not expected to have a lot of
75 * entries, we default its block size to 4K.
77 int vdev_dtl_sm_blksz
= (1 << 12);
80 * Rate limit delay events to this many IO delays per second.
82 unsigned int zfs_delays_per_second
= 20;
85 * Rate limit checksum events after this many checksum errors per second.
87 unsigned int zfs_checksums_per_second
= 20;
90 * Ignore errors during scrub/resilver. Allows to work around resilver
91 * upon import when there are pool errors.
93 int zfs_scan_ignore_errors
= 0;
96 * vdev-wide space maps that have lots of entries written to them at
97 * the end of each transaction can benefit from a higher I/O bandwidth
98 * (e.g. vdev_obsolete_sm), thus we default their block size to 128K.
100 int vdev_standard_sm_blksz
= (1 << 17);
104 vdev_dbgmsg(vdev_t
*vd
, const char *fmt
, ...)
110 (void) vsnprintf(buf
, sizeof (buf
), fmt
, adx
);
113 if (vd
->vdev_path
!= NULL
) {
114 zfs_dbgmsg("%s vdev '%s': %s", vd
->vdev_ops
->vdev_op_type
,
117 zfs_dbgmsg("%s-%llu vdev (guid %llu): %s",
118 vd
->vdev_ops
->vdev_op_type
,
119 (u_longlong_t
)vd
->vdev_id
,
120 (u_longlong_t
)vd
->vdev_guid
, buf
);
125 vdev_dbgmsg_print_tree(vdev_t
*vd
, int indent
)
129 if (vd
->vdev_ishole
|| vd
->vdev_ops
== &vdev_missing_ops
) {
130 zfs_dbgmsg("%*svdev %u: %s", indent
, "", vd
->vdev_id
,
131 vd
->vdev_ops
->vdev_op_type
);
135 switch (vd
->vdev_state
) {
136 case VDEV_STATE_UNKNOWN
:
137 (void) snprintf(state
, sizeof (state
), "unknown");
139 case VDEV_STATE_CLOSED
:
140 (void) snprintf(state
, sizeof (state
), "closed");
142 case VDEV_STATE_OFFLINE
:
143 (void) snprintf(state
, sizeof (state
), "offline");
145 case VDEV_STATE_REMOVED
:
146 (void) snprintf(state
, sizeof (state
), "removed");
148 case VDEV_STATE_CANT_OPEN
:
149 (void) snprintf(state
, sizeof (state
), "can't open");
151 case VDEV_STATE_FAULTED
:
152 (void) snprintf(state
, sizeof (state
), "faulted");
154 case VDEV_STATE_DEGRADED
:
155 (void) snprintf(state
, sizeof (state
), "degraded");
157 case VDEV_STATE_HEALTHY
:
158 (void) snprintf(state
, sizeof (state
), "healthy");
161 (void) snprintf(state
, sizeof (state
), "<state %u>",
162 (uint_t
)vd
->vdev_state
);
165 zfs_dbgmsg("%*svdev %u: %s%s, guid: %llu, path: %s, %s", indent
,
166 "", (int)vd
->vdev_id
, vd
->vdev_ops
->vdev_op_type
,
167 vd
->vdev_islog
? " (log)" : "",
168 (u_longlong_t
)vd
->vdev_guid
,
169 vd
->vdev_path
? vd
->vdev_path
: "N/A", state
);
171 for (uint64_t i
= 0; i
< vd
->vdev_children
; i
++)
172 vdev_dbgmsg_print_tree(vd
->vdev_child
[i
], indent
+ 2);
176 * Virtual device management.
179 static vdev_ops_t
*vdev_ops_table
[] = {
194 * Given a vdev type, return the appropriate ops vector.
197 vdev_getops(const char *type
)
199 vdev_ops_t
*ops
, **opspp
;
201 for (opspp
= vdev_ops_table
; (ops
= *opspp
) != NULL
; opspp
++)
202 if (strcmp(ops
->vdev_op_type
, type
) == 0)
209 * Derive the enumerated alloction bias from string input.
210 * String origin is either the per-vdev zap or zpool(1M).
212 static vdev_alloc_bias_t
213 vdev_derive_alloc_bias(const char *bias
)
215 vdev_alloc_bias_t alloc_bias
= VDEV_BIAS_NONE
;
217 if (strcmp(bias
, VDEV_ALLOC_BIAS_LOG
) == 0)
218 alloc_bias
= VDEV_BIAS_LOG
;
219 else if (strcmp(bias
, VDEV_ALLOC_BIAS_SPECIAL
) == 0)
220 alloc_bias
= VDEV_BIAS_SPECIAL
;
221 else if (strcmp(bias
, VDEV_ALLOC_BIAS_DEDUP
) == 0)
222 alloc_bias
= VDEV_BIAS_DEDUP
;
228 * Default asize function: return the MAX of psize with the asize of
229 * all children. This is what's used by anything other than RAID-Z.
232 vdev_default_asize(vdev_t
*vd
, uint64_t psize
)
234 uint64_t asize
= P2ROUNDUP(psize
, 1ULL << vd
->vdev_top
->vdev_ashift
);
237 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
238 csize
= vdev_psize_to_asize(vd
->vdev_child
[c
], psize
);
239 asize
= MAX(asize
, csize
);
246 * Get the minimum allocatable size. We define the allocatable size as
247 * the vdev's asize rounded to the nearest metaslab. This allows us to
248 * replace or attach devices which don't have the same physical size but
249 * can still satisfy the same number of allocations.
252 vdev_get_min_asize(vdev_t
*vd
)
254 vdev_t
*pvd
= vd
->vdev_parent
;
257 * If our parent is NULL (inactive spare or cache) or is the root,
258 * just return our own asize.
261 return (vd
->vdev_asize
);
264 * The top-level vdev just returns the allocatable size rounded
265 * to the nearest metaslab.
267 if (vd
== vd
->vdev_top
)
268 return (P2ALIGN(vd
->vdev_asize
, 1ULL << vd
->vdev_ms_shift
));
271 * The allocatable space for a raidz vdev is N * sizeof(smallest child),
272 * so each child must provide at least 1/Nth of its asize.
274 if (pvd
->vdev_ops
== &vdev_raidz_ops
)
275 return ((pvd
->vdev_min_asize
+ pvd
->vdev_children
- 1) /
278 return (pvd
->vdev_min_asize
);
282 vdev_set_min_asize(vdev_t
*vd
)
284 vd
->vdev_min_asize
= vdev_get_min_asize(vd
);
286 for (int c
= 0; c
< vd
->vdev_children
; c
++)
287 vdev_set_min_asize(vd
->vdev_child
[c
]);
291 vdev_lookup_top(spa_t
*spa
, uint64_t vdev
)
293 vdev_t
*rvd
= spa
->spa_root_vdev
;
295 ASSERT(spa_config_held(spa
, SCL_ALL
, RW_READER
) != 0);
297 if (vdev
< rvd
->vdev_children
) {
298 ASSERT(rvd
->vdev_child
[vdev
] != NULL
);
299 return (rvd
->vdev_child
[vdev
]);
306 vdev_lookup_by_guid(vdev_t
*vd
, uint64_t guid
)
310 if (vd
->vdev_guid
== guid
)
313 for (int c
= 0; c
< vd
->vdev_children
; c
++)
314 if ((mvd
= vdev_lookup_by_guid(vd
->vdev_child
[c
], guid
)) !=
322 vdev_count_leaves_impl(vdev_t
*vd
)
326 if (vd
->vdev_ops
->vdev_op_leaf
)
329 for (int c
= 0; c
< vd
->vdev_children
; c
++)
330 n
+= vdev_count_leaves_impl(vd
->vdev_child
[c
]);
336 vdev_count_leaves(spa_t
*spa
)
340 spa_config_enter(spa
, SCL_VDEV
, FTAG
, RW_READER
);
341 rc
= vdev_count_leaves_impl(spa
->spa_root_vdev
);
342 spa_config_exit(spa
, SCL_VDEV
, FTAG
);
348 vdev_add_child(vdev_t
*pvd
, vdev_t
*cvd
)
350 size_t oldsize
, newsize
;
351 uint64_t id
= cvd
->vdev_id
;
354 ASSERT(spa_config_held(cvd
->vdev_spa
, SCL_ALL
, RW_WRITER
) == SCL_ALL
);
355 ASSERT(cvd
->vdev_parent
== NULL
);
357 cvd
->vdev_parent
= pvd
;
362 ASSERT(id
>= pvd
->vdev_children
|| pvd
->vdev_child
[id
] == NULL
);
364 oldsize
= pvd
->vdev_children
* sizeof (vdev_t
*);
365 pvd
->vdev_children
= MAX(pvd
->vdev_children
, id
+ 1);
366 newsize
= pvd
->vdev_children
* sizeof (vdev_t
*);
368 newchild
= kmem_alloc(newsize
, KM_SLEEP
);
369 if (pvd
->vdev_child
!= NULL
) {
370 bcopy(pvd
->vdev_child
, newchild
, oldsize
);
371 kmem_free(pvd
->vdev_child
, oldsize
);
374 pvd
->vdev_child
= newchild
;
375 pvd
->vdev_child
[id
] = cvd
;
377 cvd
->vdev_top
= (pvd
->vdev_top
? pvd
->vdev_top
: cvd
);
378 ASSERT(cvd
->vdev_top
->vdev_parent
->vdev_parent
== NULL
);
381 * Walk up all ancestors to update guid sum.
383 for (; pvd
!= NULL
; pvd
= pvd
->vdev_parent
)
384 pvd
->vdev_guid_sum
+= cvd
->vdev_guid_sum
;
388 vdev_remove_child(vdev_t
*pvd
, vdev_t
*cvd
)
391 uint_t id
= cvd
->vdev_id
;
393 ASSERT(cvd
->vdev_parent
== pvd
);
398 ASSERT(id
< pvd
->vdev_children
);
399 ASSERT(pvd
->vdev_child
[id
] == cvd
);
401 pvd
->vdev_child
[id
] = NULL
;
402 cvd
->vdev_parent
= NULL
;
404 for (c
= 0; c
< pvd
->vdev_children
; c
++)
405 if (pvd
->vdev_child
[c
])
408 if (c
== pvd
->vdev_children
) {
409 kmem_free(pvd
->vdev_child
, c
* sizeof (vdev_t
*));
410 pvd
->vdev_child
= NULL
;
411 pvd
->vdev_children
= 0;
415 * Walk up all ancestors to update guid sum.
417 for (; pvd
!= NULL
; pvd
= pvd
->vdev_parent
)
418 pvd
->vdev_guid_sum
-= cvd
->vdev_guid_sum
;
422 * Remove any holes in the child array.
425 vdev_compact_children(vdev_t
*pvd
)
427 vdev_t
**newchild
, *cvd
;
428 int oldc
= pvd
->vdev_children
;
431 ASSERT(spa_config_held(pvd
->vdev_spa
, SCL_ALL
, RW_WRITER
) == SCL_ALL
);
436 for (int c
= newc
= 0; c
< oldc
; c
++)
437 if (pvd
->vdev_child
[c
])
441 newchild
= kmem_zalloc(newc
* sizeof (vdev_t
*), KM_SLEEP
);
443 for (int c
= newc
= 0; c
< oldc
; c
++) {
444 if ((cvd
= pvd
->vdev_child
[c
]) != NULL
) {
445 newchild
[newc
] = cvd
;
446 cvd
->vdev_id
= newc
++;
453 kmem_free(pvd
->vdev_child
, oldc
* sizeof (vdev_t
*));
454 pvd
->vdev_child
= newchild
;
455 pvd
->vdev_children
= newc
;
459 * Allocate and minimally initialize a vdev_t.
462 vdev_alloc_common(spa_t
*spa
, uint_t id
, uint64_t guid
, vdev_ops_t
*ops
)
465 vdev_indirect_config_t
*vic
;
467 vd
= kmem_zalloc(sizeof (vdev_t
), KM_SLEEP
);
468 vic
= &vd
->vdev_indirect_config
;
470 if (spa
->spa_root_vdev
== NULL
) {
471 ASSERT(ops
== &vdev_root_ops
);
472 spa
->spa_root_vdev
= vd
;
473 spa
->spa_load_guid
= spa_generate_guid(NULL
);
476 if (guid
== 0 && ops
!= &vdev_hole_ops
) {
477 if (spa
->spa_root_vdev
== vd
) {
479 * The root vdev's guid will also be the pool guid,
480 * which must be unique among all pools.
482 guid
= spa_generate_guid(NULL
);
485 * Any other vdev's guid must be unique within the pool.
487 guid
= spa_generate_guid(spa
);
489 ASSERT(!spa_guid_exists(spa_guid(spa
), guid
));
494 vd
->vdev_guid
= guid
;
495 vd
->vdev_guid_sum
= guid
;
497 vd
->vdev_state
= VDEV_STATE_CLOSED
;
498 vd
->vdev_ishole
= (ops
== &vdev_hole_ops
);
499 vic
->vic_prev_indirect_vdev
= UINT64_MAX
;
501 rw_init(&vd
->vdev_indirect_rwlock
, NULL
, RW_DEFAULT
, NULL
);
502 mutex_init(&vd
->vdev_obsolete_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
503 vd
->vdev_obsolete_segments
= range_tree_create(NULL
, NULL
);
506 * Initialize rate limit structs for events. We rate limit ZIO delay
507 * and checksum events so that we don't overwhelm ZED with thousands
508 * of events when a disk is acting up.
510 zfs_ratelimit_init(&vd
->vdev_delay_rl
, &zfs_delays_per_second
, 1);
511 zfs_ratelimit_init(&vd
->vdev_checksum_rl
, &zfs_checksums_per_second
, 1);
513 list_link_init(&vd
->vdev_config_dirty_node
);
514 list_link_init(&vd
->vdev_state_dirty_node
);
515 mutex_init(&vd
->vdev_dtl_lock
, NULL
, MUTEX_NOLOCKDEP
, NULL
);
516 mutex_init(&vd
->vdev_stat_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
517 mutex_init(&vd
->vdev_probe_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
518 mutex_init(&vd
->vdev_queue_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
519 mutex_init(&vd
->vdev_scan_io_queue_lock
, NULL
, MUTEX_DEFAULT
, NULL
);
521 for (int t
= 0; t
< DTL_TYPES
; t
++) {
522 vd
->vdev_dtl
[t
] = range_tree_create(NULL
, NULL
);
524 txg_list_create(&vd
->vdev_ms_list
, spa
,
525 offsetof(struct metaslab
, ms_txg_node
));
526 txg_list_create(&vd
->vdev_dtl_list
, spa
,
527 offsetof(struct vdev
, vdev_dtl_node
));
528 vd
->vdev_stat
.vs_timestamp
= gethrtime();
536 * Allocate a new vdev. The 'alloctype' is used to control whether we are
537 * creating a new vdev or loading an existing one - the behavior is slightly
538 * different for each case.
541 vdev_alloc(spa_t
*spa
, vdev_t
**vdp
, nvlist_t
*nv
, vdev_t
*parent
, uint_t id
,
546 uint64_t guid
= 0, islog
, nparity
;
548 vdev_indirect_config_t
*vic
;
551 vdev_alloc_bias_t alloc_bias
= VDEV_BIAS_NONE
;
552 boolean_t top_level
= (parent
&& !parent
->vdev_parent
);
554 ASSERT(spa_config_held(spa
, SCL_ALL
, RW_WRITER
) == SCL_ALL
);
556 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_TYPE
, &type
) != 0)
557 return (SET_ERROR(EINVAL
));
559 if ((ops
= vdev_getops(type
)) == NULL
)
560 return (SET_ERROR(EINVAL
));
563 * If this is a load, get the vdev guid from the nvlist.
564 * Otherwise, vdev_alloc_common() will generate one for us.
566 if (alloctype
== VDEV_ALLOC_LOAD
) {
569 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_ID
, &label_id
) ||
571 return (SET_ERROR(EINVAL
));
573 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &guid
) != 0)
574 return (SET_ERROR(EINVAL
));
575 } else if (alloctype
== VDEV_ALLOC_SPARE
) {
576 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &guid
) != 0)
577 return (SET_ERROR(EINVAL
));
578 } else if (alloctype
== VDEV_ALLOC_L2CACHE
) {
579 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &guid
) != 0)
580 return (SET_ERROR(EINVAL
));
581 } else if (alloctype
== VDEV_ALLOC_ROOTPOOL
) {
582 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_GUID
, &guid
) != 0)
583 return (SET_ERROR(EINVAL
));
587 * The first allocated vdev must be of type 'root'.
589 if (ops
!= &vdev_root_ops
&& spa
->spa_root_vdev
== NULL
)
590 return (SET_ERROR(EINVAL
));
593 * Determine whether we're a log vdev.
596 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_IS_LOG
, &islog
);
597 if (islog
&& spa_version(spa
) < SPA_VERSION_SLOGS
)
598 return (SET_ERROR(ENOTSUP
));
600 if (ops
== &vdev_hole_ops
&& spa_version(spa
) < SPA_VERSION_HOLES
)
601 return (SET_ERROR(ENOTSUP
));
604 * Set the nparity property for RAID-Z vdevs.
607 if (ops
== &vdev_raidz_ops
) {
608 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_NPARITY
,
610 if (nparity
== 0 || nparity
> VDEV_RAIDZ_MAXPARITY
)
611 return (SET_ERROR(EINVAL
));
613 * Previous versions could only support 1 or 2 parity
617 spa_version(spa
) < SPA_VERSION_RAIDZ2
)
618 return (SET_ERROR(ENOTSUP
));
620 spa_version(spa
) < SPA_VERSION_RAIDZ3
)
621 return (SET_ERROR(ENOTSUP
));
624 * We require the parity to be specified for SPAs that
625 * support multiple parity levels.
627 if (spa_version(spa
) >= SPA_VERSION_RAIDZ2
)
628 return (SET_ERROR(EINVAL
));
630 * Otherwise, we default to 1 parity device for RAID-Z.
637 ASSERT(nparity
!= -1ULL);
640 * If creating a top-level vdev, check for allocation classes input
642 if (top_level
&& alloctype
== VDEV_ALLOC_ADD
) {
645 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_ALLOCATION_BIAS
,
647 alloc_bias
= vdev_derive_alloc_bias(bias
);
649 /* spa_vdev_add() expects feature to be enabled */
650 if (spa
->spa_load_state
!= SPA_LOAD_CREATE
&&
651 !spa_feature_is_enabled(spa
,
652 SPA_FEATURE_ALLOCATION_CLASSES
)) {
653 return (SET_ERROR(ENOTSUP
));
658 vd
= vdev_alloc_common(spa
, id
, guid
, ops
);
659 vic
= &vd
->vdev_indirect_config
;
661 vd
->vdev_islog
= islog
;
662 vd
->vdev_nparity
= nparity
;
663 if (top_level
&& alloc_bias
!= VDEV_BIAS_NONE
)
664 vd
->vdev_alloc_bias
= alloc_bias
;
666 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_PATH
, &vd
->vdev_path
) == 0)
667 vd
->vdev_path
= spa_strdup(vd
->vdev_path
);
670 * ZPOOL_CONFIG_AUX_STATE = "external" means we previously forced a
671 * fault on a vdev and want it to persist across imports (like with
674 rc
= nvlist_lookup_string(nv
, ZPOOL_CONFIG_AUX_STATE
, &tmp
);
675 if (rc
== 0 && tmp
!= NULL
&& strcmp(tmp
, "external") == 0) {
676 vd
->vdev_stat
.vs_aux
= VDEV_AUX_EXTERNAL
;
677 vd
->vdev_faulted
= 1;
678 vd
->vdev_label_aux
= VDEV_AUX_EXTERNAL
;
681 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_DEVID
, &vd
->vdev_devid
) == 0)
682 vd
->vdev_devid
= spa_strdup(vd
->vdev_devid
);
683 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_PHYS_PATH
,
684 &vd
->vdev_physpath
) == 0)
685 vd
->vdev_physpath
= spa_strdup(vd
->vdev_physpath
);
687 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_VDEV_ENC_SYSFS_PATH
,
688 &vd
->vdev_enc_sysfs_path
) == 0)
689 vd
->vdev_enc_sysfs_path
= spa_strdup(vd
->vdev_enc_sysfs_path
);
691 if (nvlist_lookup_string(nv
, ZPOOL_CONFIG_FRU
, &vd
->vdev_fru
) == 0)
692 vd
->vdev_fru
= spa_strdup(vd
->vdev_fru
);
695 * Set the whole_disk property. If it's not specified, leave the value
698 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_WHOLE_DISK
,
699 &vd
->vdev_wholedisk
) != 0)
700 vd
->vdev_wholedisk
= -1ULL;
702 ASSERT0(vic
->vic_mapping_object
);
703 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_INDIRECT_OBJECT
,
704 &vic
->vic_mapping_object
);
705 ASSERT0(vic
->vic_births_object
);
706 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_INDIRECT_BIRTHS
,
707 &vic
->vic_births_object
);
708 ASSERT3U(vic
->vic_prev_indirect_vdev
, ==, UINT64_MAX
);
709 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_PREV_INDIRECT_VDEV
,
710 &vic
->vic_prev_indirect_vdev
);
713 * Look for the 'not present' flag. This will only be set if the device
714 * was not present at the time of import.
716 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_NOT_PRESENT
,
717 &vd
->vdev_not_present
);
720 * Get the alignment requirement.
722 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_ASHIFT
, &vd
->vdev_ashift
);
725 * Retrieve the vdev creation time.
727 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_CREATE_TXG
,
731 * If we're a top-level vdev, try to load the allocation parameters.
734 (alloctype
== VDEV_ALLOC_LOAD
|| alloctype
== VDEV_ALLOC_SPLIT
)) {
735 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_METASLAB_ARRAY
,
737 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_METASLAB_SHIFT
,
739 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_ASIZE
,
741 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_REMOVING
,
743 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_VDEV_TOP_ZAP
,
746 ASSERT0(vd
->vdev_top_zap
);
749 if (top_level
&& alloctype
!= VDEV_ALLOC_ATTACH
) {
750 ASSERT(alloctype
== VDEV_ALLOC_LOAD
||
751 alloctype
== VDEV_ALLOC_ADD
||
752 alloctype
== VDEV_ALLOC_SPLIT
||
753 alloctype
== VDEV_ALLOC_ROOTPOOL
);
754 /* Note: metaslab_group_create() is now deferred */
757 if (vd
->vdev_ops
->vdev_op_leaf
&&
758 (alloctype
== VDEV_ALLOC_LOAD
|| alloctype
== VDEV_ALLOC_SPLIT
)) {
759 (void) nvlist_lookup_uint64(nv
,
760 ZPOOL_CONFIG_VDEV_LEAF_ZAP
, &vd
->vdev_leaf_zap
);
762 ASSERT0(vd
->vdev_leaf_zap
);
766 * If we're a leaf vdev, try to load the DTL object and other state.
769 if (vd
->vdev_ops
->vdev_op_leaf
&&
770 (alloctype
== VDEV_ALLOC_LOAD
|| alloctype
== VDEV_ALLOC_L2CACHE
||
771 alloctype
== VDEV_ALLOC_ROOTPOOL
)) {
772 if (alloctype
== VDEV_ALLOC_LOAD
) {
773 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_DTL
,
774 &vd
->vdev_dtl_object
);
775 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_UNSPARE
,
779 if (alloctype
== VDEV_ALLOC_ROOTPOOL
) {
782 if (nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_IS_SPARE
,
783 &spare
) == 0 && spare
)
787 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_OFFLINE
,
790 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_RESILVER_TXG
,
791 &vd
->vdev_resilver_txg
);
793 if (nvlist_exists(nv
, ZPOOL_CONFIG_RESILVER_DEFER
))
794 vdev_set_deferred_resilver(spa
, vd
);
797 * In general, when importing a pool we want to ignore the
798 * persistent fault state, as the diagnosis made on another
799 * system may not be valid in the current context. The only
800 * exception is if we forced a vdev to a persistently faulted
801 * state with 'zpool offline -f'. The persistent fault will
802 * remain across imports until cleared.
804 * Local vdevs will remain in the faulted state.
806 if (spa_load_state(spa
) == SPA_LOAD_OPEN
||
807 spa_load_state(spa
) == SPA_LOAD_IMPORT
) {
808 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_FAULTED
,
810 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_DEGRADED
,
812 (void) nvlist_lookup_uint64(nv
, ZPOOL_CONFIG_REMOVED
,
815 if (vd
->vdev_faulted
|| vd
->vdev_degraded
) {
819 VDEV_AUX_ERR_EXCEEDED
;
820 if (nvlist_lookup_string(nv
,
821 ZPOOL_CONFIG_AUX_STATE
, &aux
) == 0 &&
822 strcmp(aux
, "external") == 0)
823 vd
->vdev_label_aux
= VDEV_AUX_EXTERNAL
;
825 vd
->vdev_faulted
= 0ULL;
831 * Add ourselves to the parent's list of children.
833 vdev_add_child(parent
, vd
);
841 vdev_free(vdev_t
*vd
)
843 spa_t
*spa
= vd
->vdev_spa
;
846 * Scan queues are normally destroyed at the end of a scan. If the
847 * queue exists here, that implies the vdev is being removed while
848 * the scan is still running.
850 if (vd
->vdev_scan_io_queue
!= NULL
) {
851 mutex_enter(&vd
->vdev_scan_io_queue_lock
);
852 dsl_scan_io_queue_destroy(vd
->vdev_scan_io_queue
);
853 vd
->vdev_scan_io_queue
= NULL
;
854 mutex_exit(&vd
->vdev_scan_io_queue_lock
);
858 * vdev_free() implies closing the vdev first. This is simpler than
859 * trying to ensure complicated semantics for all callers.
863 ASSERT(!list_link_active(&vd
->vdev_config_dirty_node
));
864 ASSERT(!list_link_active(&vd
->vdev_state_dirty_node
));
869 for (int c
= 0; c
< vd
->vdev_children
; c
++)
870 vdev_free(vd
->vdev_child
[c
]);
872 ASSERT(vd
->vdev_child
== NULL
);
873 ASSERT(vd
->vdev_guid_sum
== vd
->vdev_guid
);
876 * Discard allocation state.
878 if (vd
->vdev_mg
!= NULL
) {
879 vdev_metaslab_fini(vd
);
880 metaslab_group_destroy(vd
->vdev_mg
);
883 ASSERT0(vd
->vdev_stat
.vs_space
);
884 ASSERT0(vd
->vdev_stat
.vs_dspace
);
885 ASSERT0(vd
->vdev_stat
.vs_alloc
);
888 * Remove this vdev from its parent's child list.
890 vdev_remove_child(vd
->vdev_parent
, vd
);
892 ASSERT(vd
->vdev_parent
== NULL
);
895 * Clean up vdev structure.
901 spa_strfree(vd
->vdev_path
);
903 spa_strfree(vd
->vdev_devid
);
904 if (vd
->vdev_physpath
)
905 spa_strfree(vd
->vdev_physpath
);
907 if (vd
->vdev_enc_sysfs_path
)
908 spa_strfree(vd
->vdev_enc_sysfs_path
);
911 spa_strfree(vd
->vdev_fru
);
913 if (vd
->vdev_isspare
)
914 spa_spare_remove(vd
);
915 if (vd
->vdev_isl2cache
)
916 spa_l2cache_remove(vd
);
918 txg_list_destroy(&vd
->vdev_ms_list
);
919 txg_list_destroy(&vd
->vdev_dtl_list
);
921 mutex_enter(&vd
->vdev_dtl_lock
);
922 space_map_close(vd
->vdev_dtl_sm
);
923 for (int t
= 0; t
< DTL_TYPES
; t
++) {
924 range_tree_vacate(vd
->vdev_dtl
[t
], NULL
, NULL
);
925 range_tree_destroy(vd
->vdev_dtl
[t
]);
927 mutex_exit(&vd
->vdev_dtl_lock
);
929 EQUIV(vd
->vdev_indirect_births
!= NULL
,
930 vd
->vdev_indirect_mapping
!= NULL
);
931 if (vd
->vdev_indirect_births
!= NULL
) {
932 vdev_indirect_mapping_close(vd
->vdev_indirect_mapping
);
933 vdev_indirect_births_close(vd
->vdev_indirect_births
);
936 if (vd
->vdev_obsolete_sm
!= NULL
) {
937 ASSERT(vd
->vdev_removing
||
938 vd
->vdev_ops
== &vdev_indirect_ops
);
939 space_map_close(vd
->vdev_obsolete_sm
);
940 vd
->vdev_obsolete_sm
= NULL
;
942 range_tree_destroy(vd
->vdev_obsolete_segments
);
943 rw_destroy(&vd
->vdev_indirect_rwlock
);
944 mutex_destroy(&vd
->vdev_obsolete_lock
);
946 mutex_destroy(&vd
->vdev_queue_lock
);
947 mutex_destroy(&vd
->vdev_dtl_lock
);
948 mutex_destroy(&vd
->vdev_stat_lock
);
949 mutex_destroy(&vd
->vdev_probe_lock
);
950 mutex_destroy(&vd
->vdev_scan_io_queue_lock
);
952 zfs_ratelimit_fini(&vd
->vdev_delay_rl
);
953 zfs_ratelimit_fini(&vd
->vdev_checksum_rl
);
955 if (vd
== spa
->spa_root_vdev
)
956 spa
->spa_root_vdev
= NULL
;
958 kmem_free(vd
, sizeof (vdev_t
));
962 * Transfer top-level vdev state from svd to tvd.
965 vdev_top_transfer(vdev_t
*svd
, vdev_t
*tvd
)
967 spa_t
*spa
= svd
->vdev_spa
;
972 ASSERT(tvd
== tvd
->vdev_top
);
974 tvd
->vdev_pending_fastwrite
= svd
->vdev_pending_fastwrite
;
975 tvd
->vdev_ms_array
= svd
->vdev_ms_array
;
976 tvd
->vdev_ms_shift
= svd
->vdev_ms_shift
;
977 tvd
->vdev_ms_count
= svd
->vdev_ms_count
;
978 tvd
->vdev_top_zap
= svd
->vdev_top_zap
;
980 svd
->vdev_ms_array
= 0;
981 svd
->vdev_ms_shift
= 0;
982 svd
->vdev_ms_count
= 0;
983 svd
->vdev_top_zap
= 0;
986 ASSERT3P(tvd
->vdev_mg
, ==, svd
->vdev_mg
);
987 tvd
->vdev_mg
= svd
->vdev_mg
;
988 tvd
->vdev_ms
= svd
->vdev_ms
;
993 if (tvd
->vdev_mg
!= NULL
)
994 tvd
->vdev_mg
->mg_vd
= tvd
;
996 tvd
->vdev_checkpoint_sm
= svd
->vdev_checkpoint_sm
;
997 svd
->vdev_checkpoint_sm
= NULL
;
999 tvd
->vdev_alloc_bias
= svd
->vdev_alloc_bias
;
1000 svd
->vdev_alloc_bias
= VDEV_BIAS_NONE
;
1002 tvd
->vdev_stat
.vs_alloc
= svd
->vdev_stat
.vs_alloc
;
1003 tvd
->vdev_stat
.vs_space
= svd
->vdev_stat
.vs_space
;
1004 tvd
->vdev_stat
.vs_dspace
= svd
->vdev_stat
.vs_dspace
;
1006 svd
->vdev_stat
.vs_alloc
= 0;
1007 svd
->vdev_stat
.vs_space
= 0;
1008 svd
->vdev_stat
.vs_dspace
= 0;
1011 * State which may be set on a top-level vdev that's in the
1012 * process of being removed.
1014 ASSERT0(tvd
->vdev_indirect_config
.vic_births_object
);
1015 ASSERT0(tvd
->vdev_indirect_config
.vic_mapping_object
);
1016 ASSERT3U(tvd
->vdev_indirect_config
.vic_prev_indirect_vdev
, ==, -1ULL);
1017 ASSERT3P(tvd
->vdev_indirect_mapping
, ==, NULL
);
1018 ASSERT3P(tvd
->vdev_indirect_births
, ==, NULL
);
1019 ASSERT3P(tvd
->vdev_obsolete_sm
, ==, NULL
);
1020 ASSERT0(tvd
->vdev_removing
);
1021 tvd
->vdev_removing
= svd
->vdev_removing
;
1022 tvd
->vdev_indirect_config
= svd
->vdev_indirect_config
;
1023 tvd
->vdev_indirect_mapping
= svd
->vdev_indirect_mapping
;
1024 tvd
->vdev_indirect_births
= svd
->vdev_indirect_births
;
1025 range_tree_swap(&svd
->vdev_obsolete_segments
,
1026 &tvd
->vdev_obsolete_segments
);
1027 tvd
->vdev_obsolete_sm
= svd
->vdev_obsolete_sm
;
1028 svd
->vdev_indirect_config
.vic_mapping_object
= 0;
1029 svd
->vdev_indirect_config
.vic_births_object
= 0;
1030 svd
->vdev_indirect_config
.vic_prev_indirect_vdev
= -1ULL;
1031 svd
->vdev_indirect_mapping
= NULL
;
1032 svd
->vdev_indirect_births
= NULL
;
1033 svd
->vdev_obsolete_sm
= NULL
;
1034 svd
->vdev_removing
= 0;
1036 for (t
= 0; t
< TXG_SIZE
; t
++) {
1037 while ((msp
= txg_list_remove(&svd
->vdev_ms_list
, t
)) != NULL
)
1038 (void) txg_list_add(&tvd
->vdev_ms_list
, msp
, t
);
1039 while ((vd
= txg_list_remove(&svd
->vdev_dtl_list
, t
)) != NULL
)
1040 (void) txg_list_add(&tvd
->vdev_dtl_list
, vd
, t
);
1041 if (txg_list_remove_this(&spa
->spa_vdev_txg_list
, svd
, t
))
1042 (void) txg_list_add(&spa
->spa_vdev_txg_list
, tvd
, t
);
1045 if (list_link_active(&svd
->vdev_config_dirty_node
)) {
1046 vdev_config_clean(svd
);
1047 vdev_config_dirty(tvd
);
1050 if (list_link_active(&svd
->vdev_state_dirty_node
)) {
1051 vdev_state_clean(svd
);
1052 vdev_state_dirty(tvd
);
1055 tvd
->vdev_deflate_ratio
= svd
->vdev_deflate_ratio
;
1056 svd
->vdev_deflate_ratio
= 0;
1058 tvd
->vdev_islog
= svd
->vdev_islog
;
1059 svd
->vdev_islog
= 0;
1061 dsl_scan_io_queue_vdev_xfer(svd
, tvd
);
1065 vdev_top_update(vdev_t
*tvd
, vdev_t
*vd
)
1072 for (int c
= 0; c
< vd
->vdev_children
; c
++)
1073 vdev_top_update(tvd
, vd
->vdev_child
[c
]);
1077 * Add a mirror/replacing vdev above an existing vdev.
1080 vdev_add_parent(vdev_t
*cvd
, vdev_ops_t
*ops
)
1082 spa_t
*spa
= cvd
->vdev_spa
;
1083 vdev_t
*pvd
= cvd
->vdev_parent
;
1086 ASSERT(spa_config_held(spa
, SCL_ALL
, RW_WRITER
) == SCL_ALL
);
1088 mvd
= vdev_alloc_common(spa
, cvd
->vdev_id
, 0, ops
);
1090 mvd
->vdev_asize
= cvd
->vdev_asize
;
1091 mvd
->vdev_min_asize
= cvd
->vdev_min_asize
;
1092 mvd
->vdev_max_asize
= cvd
->vdev_max_asize
;
1093 mvd
->vdev_psize
= cvd
->vdev_psize
;
1094 mvd
->vdev_ashift
= cvd
->vdev_ashift
;
1095 mvd
->vdev_state
= cvd
->vdev_state
;
1096 mvd
->vdev_crtxg
= cvd
->vdev_crtxg
;
1098 vdev_remove_child(pvd
, cvd
);
1099 vdev_add_child(pvd
, mvd
);
1100 cvd
->vdev_id
= mvd
->vdev_children
;
1101 vdev_add_child(mvd
, cvd
);
1102 vdev_top_update(cvd
->vdev_top
, cvd
->vdev_top
);
1104 if (mvd
== mvd
->vdev_top
)
1105 vdev_top_transfer(cvd
, mvd
);
1111 * Remove a 1-way mirror/replacing vdev from the tree.
1114 vdev_remove_parent(vdev_t
*cvd
)
1116 vdev_t
*mvd
= cvd
->vdev_parent
;
1117 vdev_t
*pvd
= mvd
->vdev_parent
;
1119 ASSERT(spa_config_held(cvd
->vdev_spa
, SCL_ALL
, RW_WRITER
) == SCL_ALL
);
1121 ASSERT(mvd
->vdev_children
== 1);
1122 ASSERT(mvd
->vdev_ops
== &vdev_mirror_ops
||
1123 mvd
->vdev_ops
== &vdev_replacing_ops
||
1124 mvd
->vdev_ops
== &vdev_spare_ops
);
1125 cvd
->vdev_ashift
= mvd
->vdev_ashift
;
1127 vdev_remove_child(mvd
, cvd
);
1128 vdev_remove_child(pvd
, mvd
);
1131 * If cvd will replace mvd as a top-level vdev, preserve mvd's guid.
1132 * Otherwise, we could have detached an offline device, and when we
1133 * go to import the pool we'll think we have two top-level vdevs,
1134 * instead of a different version of the same top-level vdev.
1136 if (mvd
->vdev_top
== mvd
) {
1137 uint64_t guid_delta
= mvd
->vdev_guid
- cvd
->vdev_guid
;
1138 cvd
->vdev_orig_guid
= cvd
->vdev_guid
;
1139 cvd
->vdev_guid
+= guid_delta
;
1140 cvd
->vdev_guid_sum
+= guid_delta
;
1143 * If pool not set for autoexpand, we need to also preserve
1144 * mvd's asize to prevent automatic expansion of cvd.
1145 * Otherwise if we are adjusting the mirror by attaching and
1146 * detaching children of non-uniform sizes, the mirror could
1147 * autoexpand, unexpectedly requiring larger devices to
1148 * re-establish the mirror.
1150 if (!cvd
->vdev_spa
->spa_autoexpand
)
1151 cvd
->vdev_asize
= mvd
->vdev_asize
;
1153 cvd
->vdev_id
= mvd
->vdev_id
;
1154 vdev_add_child(pvd
, cvd
);
1155 vdev_top_update(cvd
->vdev_top
, cvd
->vdev_top
);
1157 if (cvd
== cvd
->vdev_top
)
1158 vdev_top_transfer(mvd
, cvd
);
1160 ASSERT(mvd
->vdev_children
== 0);
1165 vdev_metaslab_group_create(vdev_t
*vd
)
1167 spa_t
*spa
= vd
->vdev_spa
;
1170 * metaslab_group_create was delayed until allocation bias was available
1172 if (vd
->vdev_mg
== NULL
) {
1173 metaslab_class_t
*mc
;
1175 if (vd
->vdev_islog
&& vd
->vdev_alloc_bias
== VDEV_BIAS_NONE
)
1176 vd
->vdev_alloc_bias
= VDEV_BIAS_LOG
;
1178 ASSERT3U(vd
->vdev_islog
, ==,
1179 (vd
->vdev_alloc_bias
== VDEV_BIAS_LOG
));
1181 switch (vd
->vdev_alloc_bias
) {
1183 mc
= spa_log_class(spa
);
1185 case VDEV_BIAS_SPECIAL
:
1186 mc
= spa_special_class(spa
);
1188 case VDEV_BIAS_DEDUP
:
1189 mc
= spa_dedup_class(spa
);
1192 mc
= spa_normal_class(spa
);
1195 vd
->vdev_mg
= metaslab_group_create(mc
, vd
,
1196 spa
->spa_alloc_count
);
1199 * The spa ashift values currently only reflect the
1200 * general vdev classes. Class destination is late
1201 * binding so ashift checking had to wait until now
1203 if (vd
->vdev_top
== vd
&& vd
->vdev_ashift
!= 0 &&
1204 mc
== spa_normal_class(spa
) && vd
->vdev_aux
== NULL
) {
1205 if (vd
->vdev_ashift
> spa
->spa_max_ashift
)
1206 spa
->spa_max_ashift
= vd
->vdev_ashift
;
1207 if (vd
->vdev_ashift
< spa
->spa_min_ashift
)
1208 spa
->spa_min_ashift
= vd
->vdev_ashift
;
1214 vdev_metaslab_init(vdev_t
*vd
, uint64_t txg
)
1216 spa_t
*spa
= vd
->vdev_spa
;
1217 objset_t
*mos
= spa
->spa_meta_objset
;
1219 uint64_t oldc
= vd
->vdev_ms_count
;
1220 uint64_t newc
= vd
->vdev_asize
>> vd
->vdev_ms_shift
;
1223 boolean_t expanding
= (oldc
!= 0);
1225 ASSERT(txg
== 0 || spa_config_held(spa
, SCL_ALLOC
, RW_WRITER
));
1228 * This vdev is not being allocated from yet or is a hole.
1230 if (vd
->vdev_ms_shift
== 0)
1233 ASSERT(!vd
->vdev_ishole
);
1235 ASSERT(oldc
<= newc
);
1237 mspp
= vmem_zalloc(newc
* sizeof (*mspp
), KM_SLEEP
);
1240 bcopy(vd
->vdev_ms
, mspp
, oldc
* sizeof (*mspp
));
1241 vmem_free(vd
->vdev_ms
, oldc
* sizeof (*mspp
));
1245 vd
->vdev_ms_count
= newc
;
1246 for (m
= oldc
; m
< newc
; m
++) {
1247 uint64_t object
= 0;
1250 * vdev_ms_array may be 0 if we are creating the "fake"
1251 * metaslabs for an indirect vdev for zdb's leak detection.
1252 * See zdb_leak_init().
1254 if (txg
== 0 && vd
->vdev_ms_array
!= 0) {
1255 error
= dmu_read(mos
, vd
->vdev_ms_array
,
1256 m
* sizeof (uint64_t), sizeof (uint64_t), &object
,
1259 vdev_dbgmsg(vd
, "unable to read the metaslab "
1260 "array [error=%d]", error
);
1267 * To accomodate zdb_leak_init() fake indirect
1268 * metaslabs, we allocate a metaslab group for
1269 * indirect vdevs which normally don't have one.
1271 if (vd
->vdev_mg
== NULL
) {
1272 ASSERT0(vdev_is_concrete(vd
));
1273 vdev_metaslab_group_create(vd
);
1276 error
= metaslab_init(vd
->vdev_mg
, m
, object
, txg
,
1279 vdev_dbgmsg(vd
, "metaslab_init failed [error=%d]",
1286 spa_config_enter(spa
, SCL_ALLOC
, FTAG
, RW_WRITER
);
1289 * If the vdev is being removed we don't activate
1290 * the metaslabs since we want to ensure that no new
1291 * allocations are performed on this device.
1293 if (!expanding
&& !vd
->vdev_removing
) {
1294 metaslab_group_activate(vd
->vdev_mg
);
1298 spa_config_exit(spa
, SCL_ALLOC
, FTAG
);
1304 vdev_metaslab_fini(vdev_t
*vd
)
1306 if (vd
->vdev_checkpoint_sm
!= NULL
) {
1307 ASSERT(spa_feature_is_active(vd
->vdev_spa
,
1308 SPA_FEATURE_POOL_CHECKPOINT
));
1309 space_map_close(vd
->vdev_checkpoint_sm
);
1311 * Even though we close the space map, we need to set its
1312 * pointer to NULL. The reason is that vdev_metaslab_fini()
1313 * may be called multiple times for certain operations
1314 * (i.e. when destroying a pool) so we need to ensure that
1315 * this clause never executes twice. This logic is similar
1316 * to the one used for the vdev_ms clause below.
1318 vd
->vdev_checkpoint_sm
= NULL
;
1321 if (vd
->vdev_ms
!= NULL
) {
1322 uint64_t count
= vd
->vdev_ms_count
;
1324 metaslab_group_passivate(vd
->vdev_mg
);
1325 for (uint64_t m
= 0; m
< count
; m
++) {
1326 metaslab_t
*msp
= vd
->vdev_ms
[m
];
1331 vmem_free(vd
->vdev_ms
, count
* sizeof (metaslab_t
*));
1334 vd
->vdev_ms_count
= 0;
1336 ASSERT0(vd
->vdev_ms_count
);
1337 ASSERT3U(vd
->vdev_pending_fastwrite
, ==, 0);
1340 typedef struct vdev_probe_stats
{
1341 boolean_t vps_readable
;
1342 boolean_t vps_writeable
;
1344 } vdev_probe_stats_t
;
1347 vdev_probe_done(zio_t
*zio
)
1349 spa_t
*spa
= zio
->io_spa
;
1350 vdev_t
*vd
= zio
->io_vd
;
1351 vdev_probe_stats_t
*vps
= zio
->io_private
;
1353 ASSERT(vd
->vdev_probe_zio
!= NULL
);
1355 if (zio
->io_type
== ZIO_TYPE_READ
) {
1356 if (zio
->io_error
== 0)
1357 vps
->vps_readable
= 1;
1358 if (zio
->io_error
== 0 && spa_writeable(spa
)) {
1359 zio_nowait(zio_write_phys(vd
->vdev_probe_zio
, vd
,
1360 zio
->io_offset
, zio
->io_size
, zio
->io_abd
,
1361 ZIO_CHECKSUM_OFF
, vdev_probe_done
, vps
,
1362 ZIO_PRIORITY_SYNC_WRITE
, vps
->vps_flags
, B_TRUE
));
1364 abd_free(zio
->io_abd
);
1366 } else if (zio
->io_type
== ZIO_TYPE_WRITE
) {
1367 if (zio
->io_error
== 0)
1368 vps
->vps_writeable
= 1;
1369 abd_free(zio
->io_abd
);
1370 } else if (zio
->io_type
== ZIO_TYPE_NULL
) {
1374 vd
->vdev_cant_read
|= !vps
->vps_readable
;
1375 vd
->vdev_cant_write
|= !vps
->vps_writeable
;
1377 if (vdev_readable(vd
) &&
1378 (vdev_writeable(vd
) || !spa_writeable(spa
))) {
1381 ASSERT(zio
->io_error
!= 0);
1382 vdev_dbgmsg(vd
, "failed probe");
1383 zfs_ereport_post(FM_EREPORT_ZFS_PROBE_FAILURE
,
1384 spa
, vd
, NULL
, NULL
, 0, 0);
1385 zio
->io_error
= SET_ERROR(ENXIO
);
1388 mutex_enter(&vd
->vdev_probe_lock
);
1389 ASSERT(vd
->vdev_probe_zio
== zio
);
1390 vd
->vdev_probe_zio
= NULL
;
1391 mutex_exit(&vd
->vdev_probe_lock
);
1394 while ((pio
= zio_walk_parents(zio
, &zl
)) != NULL
)
1395 if (!vdev_accessible(vd
, pio
))
1396 pio
->io_error
= SET_ERROR(ENXIO
);
1398 kmem_free(vps
, sizeof (*vps
));
1403 * Determine whether this device is accessible.
1405 * Read and write to several known locations: the pad regions of each
1406 * vdev label but the first, which we leave alone in case it contains
1410 vdev_probe(vdev_t
*vd
, zio_t
*zio
)
1412 spa_t
*spa
= vd
->vdev_spa
;
1413 vdev_probe_stats_t
*vps
= NULL
;
1416 ASSERT(vd
->vdev_ops
->vdev_op_leaf
);
1419 * Don't probe the probe.
1421 if (zio
&& (zio
->io_flags
& ZIO_FLAG_PROBE
))
1425 * To prevent 'probe storms' when a device fails, we create
1426 * just one probe i/o at a time. All zios that want to probe
1427 * this vdev will become parents of the probe io.
1429 mutex_enter(&vd
->vdev_probe_lock
);
1431 if ((pio
= vd
->vdev_probe_zio
) == NULL
) {
1432 vps
= kmem_zalloc(sizeof (*vps
), KM_SLEEP
);
1434 vps
->vps_flags
= ZIO_FLAG_CANFAIL
| ZIO_FLAG_PROBE
|
1435 ZIO_FLAG_DONT_CACHE
| ZIO_FLAG_DONT_AGGREGATE
|
1438 if (spa_config_held(spa
, SCL_ZIO
, RW_WRITER
)) {
1440 * vdev_cant_read and vdev_cant_write can only
1441 * transition from TRUE to FALSE when we have the
1442 * SCL_ZIO lock as writer; otherwise they can only
1443 * transition from FALSE to TRUE. This ensures that
1444 * any zio looking at these values can assume that
1445 * failures persist for the life of the I/O. That's
1446 * important because when a device has intermittent
1447 * connectivity problems, we want to ensure that
1448 * they're ascribed to the device (ENXIO) and not
1451 * Since we hold SCL_ZIO as writer here, clear both
1452 * values so the probe can reevaluate from first
1455 vps
->vps_flags
|= ZIO_FLAG_CONFIG_WRITER
;
1456 vd
->vdev_cant_read
= B_FALSE
;
1457 vd
->vdev_cant_write
= B_FALSE
;
1460 vd
->vdev_probe_zio
= pio
= zio_null(NULL
, spa
, vd
,
1461 vdev_probe_done
, vps
,
1462 vps
->vps_flags
| ZIO_FLAG_DONT_PROPAGATE
);
1465 * We can't change the vdev state in this context, so we
1466 * kick off an async task to do it on our behalf.
1469 vd
->vdev_probe_wanted
= B_TRUE
;
1470 spa_async_request(spa
, SPA_ASYNC_PROBE
);
1475 zio_add_child(zio
, pio
);
1477 mutex_exit(&vd
->vdev_probe_lock
);
1480 ASSERT(zio
!= NULL
);
1484 for (int l
= 1; l
< VDEV_LABELS
; l
++) {
1485 zio_nowait(zio_read_phys(pio
, vd
,
1486 vdev_label_offset(vd
->vdev_psize
, l
,
1487 offsetof(vdev_label_t
, vl_pad2
)), VDEV_PAD_SIZE
,
1488 abd_alloc_for_io(VDEV_PAD_SIZE
, B_TRUE
),
1489 ZIO_CHECKSUM_OFF
, vdev_probe_done
, vps
,
1490 ZIO_PRIORITY_SYNC_READ
, vps
->vps_flags
, B_TRUE
));
1501 vdev_open_child(void *arg
)
1505 vd
->vdev_open_thread
= curthread
;
1506 vd
->vdev_open_error
= vdev_open(vd
);
1507 vd
->vdev_open_thread
= NULL
;
1511 vdev_uses_zvols(vdev_t
*vd
)
1514 if (zvol_is_zvol(vd
->vdev_path
))
1518 for (int c
= 0; c
< vd
->vdev_children
; c
++)
1519 if (vdev_uses_zvols(vd
->vdev_child
[c
]))
1526 vdev_open_children(vdev_t
*vd
)
1529 int children
= vd
->vdev_children
;
1532 * in order to handle pools on top of zvols, do the opens
1533 * in a single thread so that the same thread holds the
1534 * spa_namespace_lock
1536 if (vdev_uses_zvols(vd
)) {
1538 for (int c
= 0; c
< children
; c
++)
1539 vd
->vdev_child
[c
]->vdev_open_error
=
1540 vdev_open(vd
->vdev_child
[c
]);
1542 tq
= taskq_create("vdev_open", children
, minclsyspri
,
1543 children
, children
, TASKQ_PREPOPULATE
);
1547 for (int c
= 0; c
< children
; c
++)
1548 VERIFY(taskq_dispatch(tq
, vdev_open_child
,
1549 vd
->vdev_child
[c
], TQ_SLEEP
) != TASKQID_INVALID
);
1554 vd
->vdev_nonrot
= B_TRUE
;
1556 for (int c
= 0; c
< children
; c
++)
1557 vd
->vdev_nonrot
&= vd
->vdev_child
[c
]->vdev_nonrot
;
1561 * Compute the raidz-deflation ratio. Note, we hard-code
1562 * in 128k (1 << 17) because it is the "typical" blocksize.
1563 * Even though SPA_MAXBLOCKSIZE changed, this algorithm can not change,
1564 * otherwise it would inconsistently account for existing bp's.
1567 vdev_set_deflate_ratio(vdev_t
*vd
)
1569 if (vd
== vd
->vdev_top
&& !vd
->vdev_ishole
&& vd
->vdev_ashift
!= 0) {
1570 vd
->vdev_deflate_ratio
= (1 << 17) /
1571 (vdev_psize_to_asize(vd
, 1 << 17) >> SPA_MINBLOCKSHIFT
);
1576 * Prepare a virtual device for access.
1579 vdev_open(vdev_t
*vd
)
1581 spa_t
*spa
= vd
->vdev_spa
;
1584 uint64_t max_osize
= 0;
1585 uint64_t asize
, max_asize
, psize
;
1586 uint64_t ashift
= 0;
1588 ASSERT(vd
->vdev_open_thread
== curthread
||
1589 spa_config_held(spa
, SCL_STATE_ALL
, RW_WRITER
) == SCL_STATE_ALL
);
1590 ASSERT(vd
->vdev_state
== VDEV_STATE_CLOSED
||
1591 vd
->vdev_state
== VDEV_STATE_CANT_OPEN
||
1592 vd
->vdev_state
== VDEV_STATE_OFFLINE
);
1594 vd
->vdev_stat
.vs_aux
= VDEV_AUX_NONE
;
1595 vd
->vdev_cant_read
= B_FALSE
;
1596 vd
->vdev_cant_write
= B_FALSE
;
1597 vd
->vdev_min_asize
= vdev_get_min_asize(vd
);
1600 * If this vdev is not removed, check its fault status. If it's
1601 * faulted, bail out of the open.
1603 if (!vd
->vdev_removed
&& vd
->vdev_faulted
) {
1604 ASSERT(vd
->vdev_children
== 0);
1605 ASSERT(vd
->vdev_label_aux
== VDEV_AUX_ERR_EXCEEDED
||
1606 vd
->vdev_label_aux
== VDEV_AUX_EXTERNAL
);
1607 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_FAULTED
,
1608 vd
->vdev_label_aux
);
1609 return (SET_ERROR(ENXIO
));
1610 } else if (vd
->vdev_offline
) {
1611 ASSERT(vd
->vdev_children
== 0);
1612 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_OFFLINE
, VDEV_AUX_NONE
);
1613 return (SET_ERROR(ENXIO
));
1616 error
= vd
->vdev_ops
->vdev_op_open(vd
, &osize
, &max_osize
, &ashift
);
1619 * Reset the vdev_reopening flag so that we actually close
1620 * the vdev on error.
1622 vd
->vdev_reopening
= B_FALSE
;
1623 if (zio_injection_enabled
&& error
== 0)
1624 error
= zio_handle_device_injection(vd
, NULL
, ENXIO
);
1627 if (vd
->vdev_removed
&&
1628 vd
->vdev_stat
.vs_aux
!= VDEV_AUX_OPEN_FAILED
)
1629 vd
->vdev_removed
= B_FALSE
;
1631 if (vd
->vdev_stat
.vs_aux
== VDEV_AUX_CHILDREN_OFFLINE
) {
1632 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_OFFLINE
,
1633 vd
->vdev_stat
.vs_aux
);
1635 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
1636 vd
->vdev_stat
.vs_aux
);
1641 vd
->vdev_removed
= B_FALSE
;
1644 * Recheck the faulted flag now that we have confirmed that
1645 * the vdev is accessible. If we're faulted, bail.
1647 if (vd
->vdev_faulted
) {
1648 ASSERT(vd
->vdev_children
== 0);
1649 ASSERT(vd
->vdev_label_aux
== VDEV_AUX_ERR_EXCEEDED
||
1650 vd
->vdev_label_aux
== VDEV_AUX_EXTERNAL
);
1651 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_FAULTED
,
1652 vd
->vdev_label_aux
);
1653 return (SET_ERROR(ENXIO
));
1656 if (vd
->vdev_degraded
) {
1657 ASSERT(vd
->vdev_children
== 0);
1658 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_DEGRADED
,
1659 VDEV_AUX_ERR_EXCEEDED
);
1661 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_HEALTHY
, 0);
1665 * For hole or missing vdevs we just return success.
1667 if (vd
->vdev_ishole
|| vd
->vdev_ops
== &vdev_missing_ops
)
1670 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
1671 if (vd
->vdev_child
[c
]->vdev_state
!= VDEV_STATE_HEALTHY
) {
1672 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_DEGRADED
,
1678 osize
= P2ALIGN(osize
, (uint64_t)sizeof (vdev_label_t
));
1679 max_osize
= P2ALIGN(max_osize
, (uint64_t)sizeof (vdev_label_t
));
1681 if (vd
->vdev_children
== 0) {
1682 if (osize
< SPA_MINDEVSIZE
) {
1683 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
1684 VDEV_AUX_TOO_SMALL
);
1685 return (SET_ERROR(EOVERFLOW
));
1688 asize
= osize
- (VDEV_LABEL_START_SIZE
+ VDEV_LABEL_END_SIZE
);
1689 max_asize
= max_osize
- (VDEV_LABEL_START_SIZE
+
1690 VDEV_LABEL_END_SIZE
);
1692 if (vd
->vdev_parent
!= NULL
&& osize
< SPA_MINDEVSIZE
-
1693 (VDEV_LABEL_START_SIZE
+ VDEV_LABEL_END_SIZE
)) {
1694 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
1695 VDEV_AUX_TOO_SMALL
);
1696 return (SET_ERROR(EOVERFLOW
));
1700 max_asize
= max_osize
;
1704 * If the vdev was expanded, record this so that we can re-create the
1705 * uberblock rings in labels {2,3}, during the next sync.
1707 if ((psize
> vd
->vdev_psize
) && (vd
->vdev_psize
!= 0))
1708 vd
->vdev_copy_uberblocks
= B_TRUE
;
1710 vd
->vdev_psize
= psize
;
1713 * Make sure the allocatable size hasn't shrunk too much.
1715 if (asize
< vd
->vdev_min_asize
) {
1716 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
1717 VDEV_AUX_BAD_LABEL
);
1718 return (SET_ERROR(EINVAL
));
1721 if (vd
->vdev_asize
== 0) {
1723 * This is the first-ever open, so use the computed values.
1724 * For compatibility, a different ashift can be requested.
1726 vd
->vdev_asize
= asize
;
1727 vd
->vdev_max_asize
= max_asize
;
1728 if (vd
->vdev_ashift
== 0) {
1729 vd
->vdev_ashift
= ashift
; /* use detected value */
1731 if (vd
->vdev_ashift
!= 0 && (vd
->vdev_ashift
< ASHIFT_MIN
||
1732 vd
->vdev_ashift
> ASHIFT_MAX
)) {
1733 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
1734 VDEV_AUX_BAD_ASHIFT
);
1735 return (SET_ERROR(EDOM
));
1739 * Detect if the alignment requirement has increased.
1740 * We don't want to make the pool unavailable, just
1741 * post an event instead.
1743 if (ashift
> vd
->vdev_top
->vdev_ashift
&&
1744 vd
->vdev_ops
->vdev_op_leaf
) {
1745 zfs_ereport_post(FM_EREPORT_ZFS_DEVICE_BAD_ASHIFT
,
1746 spa
, vd
, NULL
, NULL
, 0, 0);
1749 vd
->vdev_max_asize
= max_asize
;
1753 * If all children are healthy we update asize if either:
1754 * The asize has increased, due to a device expansion caused by dynamic
1755 * LUN growth or vdev replacement, and automatic expansion is enabled;
1756 * making the additional space available.
1758 * The asize has decreased, due to a device shrink usually caused by a
1759 * vdev replace with a smaller device. This ensures that calculations
1760 * based of max_asize and asize e.g. esize are always valid. It's safe
1761 * to do this as we've already validated that asize is greater than
1764 if (vd
->vdev_state
== VDEV_STATE_HEALTHY
&&
1765 ((asize
> vd
->vdev_asize
&&
1766 (vd
->vdev_expanding
|| spa
->spa_autoexpand
)) ||
1767 (asize
< vd
->vdev_asize
)))
1768 vd
->vdev_asize
= asize
;
1770 vdev_set_min_asize(vd
);
1773 * Ensure we can issue some IO before declaring the
1774 * vdev open for business.
1776 if (vd
->vdev_ops
->vdev_op_leaf
&&
1777 (error
= zio_wait(vdev_probe(vd
, NULL
))) != 0) {
1778 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_FAULTED
,
1779 VDEV_AUX_ERR_EXCEEDED
);
1784 * Track the min and max ashift values for normal data devices.
1786 * DJB - TBD these should perhaps be tracked per allocation class
1787 * (e.g. spa_min_ashift is used to round up post compression buffers)
1789 if (vd
->vdev_top
== vd
&& vd
->vdev_ashift
!= 0 &&
1790 vd
->vdev_alloc_bias
== VDEV_BIAS_NONE
&&
1791 vd
->vdev_aux
== NULL
) {
1792 if (vd
->vdev_ashift
> spa
->spa_max_ashift
)
1793 spa
->spa_max_ashift
= vd
->vdev_ashift
;
1794 if (vd
->vdev_ashift
< spa
->spa_min_ashift
)
1795 spa
->spa_min_ashift
= vd
->vdev_ashift
;
1799 * If a leaf vdev has a DTL, and seems healthy, then kick off a
1800 * resilver. But don't do this if we are doing a reopen for a scrub,
1801 * since this would just restart the scrub we are already doing.
1803 if (vd
->vdev_ops
->vdev_op_leaf
&& !spa
->spa_scrub_reopen
&&
1804 vdev_resilver_needed(vd
, NULL
, NULL
)) {
1805 if (dsl_scan_resilvering(spa
->spa_dsl_pool
) &&
1806 spa_feature_is_enabled(spa
, SPA_FEATURE_RESILVER_DEFER
))
1807 vdev_set_deferred_resilver(spa
, vd
);
1809 spa_async_request(spa
, SPA_ASYNC_RESILVER
);
1816 * Called once the vdevs are all opened, this routine validates the label
1817 * contents. This needs to be done before vdev_load() so that we don't
1818 * inadvertently do repair I/Os to the wrong device.
1820 * This function will only return failure if one of the vdevs indicates that it
1821 * has since been destroyed or exported. This is only possible if
1822 * /etc/zfs/zpool.cache was readonly at the time. Otherwise, the vdev state
1823 * will be updated but the function will return 0.
1826 vdev_validate(vdev_t
*vd
)
1828 spa_t
*spa
= vd
->vdev_spa
;
1830 uint64_t guid
= 0, aux_guid
= 0, top_guid
;
1835 if (vdev_validate_skip
)
1838 for (uint64_t c
= 0; c
< vd
->vdev_children
; c
++)
1839 if (vdev_validate(vd
->vdev_child
[c
]) != 0)
1840 return (SET_ERROR(EBADF
));
1843 * If the device has already failed, or was marked offline, don't do
1844 * any further validation. Otherwise, label I/O will fail and we will
1845 * overwrite the previous state.
1847 if (!vd
->vdev_ops
->vdev_op_leaf
|| !vdev_readable(vd
))
1851 * If we are performing an extreme rewind, we allow for a label that
1852 * was modified at a point after the current txg.
1853 * If config lock is not held do not check for the txg. spa_sync could
1854 * be updating the vdev's label before updating spa_last_synced_txg.
1856 if (spa
->spa_extreme_rewind
|| spa_last_synced_txg(spa
) == 0 ||
1857 spa_config_held(spa
, SCL_CONFIG
, RW_WRITER
) != SCL_CONFIG
)
1860 txg
= spa_last_synced_txg(spa
);
1862 if ((label
= vdev_label_read_config(vd
, txg
)) == NULL
) {
1863 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
1864 VDEV_AUX_BAD_LABEL
);
1865 vdev_dbgmsg(vd
, "vdev_validate: failed reading config for "
1866 "txg %llu", (u_longlong_t
)txg
);
1871 * Determine if this vdev has been split off into another
1872 * pool. If so, then refuse to open it.
1874 if (nvlist_lookup_uint64(label
, ZPOOL_CONFIG_SPLIT_GUID
,
1875 &aux_guid
) == 0 && aux_guid
== spa_guid(spa
)) {
1876 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
1877 VDEV_AUX_SPLIT_POOL
);
1879 vdev_dbgmsg(vd
, "vdev_validate: vdev split into other pool");
1883 if (nvlist_lookup_uint64(label
, ZPOOL_CONFIG_POOL_GUID
, &guid
) != 0) {
1884 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
1885 VDEV_AUX_CORRUPT_DATA
);
1887 vdev_dbgmsg(vd
, "vdev_validate: '%s' missing from label",
1888 ZPOOL_CONFIG_POOL_GUID
);
1893 * If config is not trusted then ignore the spa guid check. This is
1894 * necessary because if the machine crashed during a re-guid the new
1895 * guid might have been written to all of the vdev labels, but not the
1896 * cached config. The check will be performed again once we have the
1897 * trusted config from the MOS.
1899 if (spa
->spa_trust_config
&& guid
!= spa_guid(spa
)) {
1900 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
1901 VDEV_AUX_CORRUPT_DATA
);
1903 vdev_dbgmsg(vd
, "vdev_validate: vdev label pool_guid doesn't "
1904 "match config (%llu != %llu)", (u_longlong_t
)guid
,
1905 (u_longlong_t
)spa_guid(spa
));
1909 if (nvlist_lookup_nvlist(label
, ZPOOL_CONFIG_VDEV_TREE
, &nvl
)
1910 != 0 || nvlist_lookup_uint64(nvl
, ZPOOL_CONFIG_ORIG_GUID
,
1914 if (nvlist_lookup_uint64(label
, ZPOOL_CONFIG_GUID
, &guid
) != 0) {
1915 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
1916 VDEV_AUX_CORRUPT_DATA
);
1918 vdev_dbgmsg(vd
, "vdev_validate: '%s' missing from label",
1923 if (nvlist_lookup_uint64(label
, ZPOOL_CONFIG_TOP_GUID
, &top_guid
)
1925 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
1926 VDEV_AUX_CORRUPT_DATA
);
1928 vdev_dbgmsg(vd
, "vdev_validate: '%s' missing from label",
1929 ZPOOL_CONFIG_TOP_GUID
);
1934 * If this vdev just became a top-level vdev because its sibling was
1935 * detached, it will have adopted the parent's vdev guid -- but the
1936 * label may or may not be on disk yet. Fortunately, either version
1937 * of the label will have the same top guid, so if we're a top-level
1938 * vdev, we can safely compare to that instead.
1939 * However, if the config comes from a cachefile that failed to update
1940 * after the detach, a top-level vdev will appear as a non top-level
1941 * vdev in the config. Also relax the constraints if we perform an
1944 * If we split this vdev off instead, then we also check the
1945 * original pool's guid. We don't want to consider the vdev
1946 * corrupt if it is partway through a split operation.
1948 if (vd
->vdev_guid
!= guid
&& vd
->vdev_guid
!= aux_guid
) {
1949 boolean_t mismatch
= B_FALSE
;
1950 if (spa
->spa_trust_config
&& !spa
->spa_extreme_rewind
) {
1951 if (vd
!= vd
->vdev_top
|| vd
->vdev_guid
!= top_guid
)
1954 if (vd
->vdev_guid
!= top_guid
&&
1955 vd
->vdev_top
->vdev_guid
!= guid
)
1960 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
1961 VDEV_AUX_CORRUPT_DATA
);
1963 vdev_dbgmsg(vd
, "vdev_validate: config guid "
1964 "doesn't match label guid");
1965 vdev_dbgmsg(vd
, "CONFIG: guid %llu, top_guid %llu",
1966 (u_longlong_t
)vd
->vdev_guid
,
1967 (u_longlong_t
)vd
->vdev_top
->vdev_guid
);
1968 vdev_dbgmsg(vd
, "LABEL: guid %llu, top_guid %llu, "
1969 "aux_guid %llu", (u_longlong_t
)guid
,
1970 (u_longlong_t
)top_guid
, (u_longlong_t
)aux_guid
);
1975 if (nvlist_lookup_uint64(label
, ZPOOL_CONFIG_POOL_STATE
,
1977 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
1978 VDEV_AUX_CORRUPT_DATA
);
1980 vdev_dbgmsg(vd
, "vdev_validate: '%s' missing from label",
1981 ZPOOL_CONFIG_POOL_STATE
);
1988 * If this is a verbatim import, no need to check the
1989 * state of the pool.
1991 if (!(spa
->spa_import_flags
& ZFS_IMPORT_VERBATIM
) &&
1992 spa_load_state(spa
) == SPA_LOAD_OPEN
&&
1993 state
!= POOL_STATE_ACTIVE
) {
1994 vdev_dbgmsg(vd
, "vdev_validate: invalid pool state (%llu) "
1995 "for spa %s", (u_longlong_t
)state
, spa
->spa_name
);
1996 return (SET_ERROR(EBADF
));
2000 * If we were able to open and validate a vdev that was
2001 * previously marked permanently unavailable, clear that state
2004 if (vd
->vdev_not_present
)
2005 vd
->vdev_not_present
= 0;
2011 vdev_copy_path_impl(vdev_t
*svd
, vdev_t
*dvd
)
2013 if (svd
->vdev_path
!= NULL
&& dvd
->vdev_path
!= NULL
) {
2014 if (strcmp(svd
->vdev_path
, dvd
->vdev_path
) != 0) {
2015 zfs_dbgmsg("vdev_copy_path: vdev %llu: path changed "
2016 "from '%s' to '%s'", (u_longlong_t
)dvd
->vdev_guid
,
2017 dvd
->vdev_path
, svd
->vdev_path
);
2018 spa_strfree(dvd
->vdev_path
);
2019 dvd
->vdev_path
= spa_strdup(svd
->vdev_path
);
2021 } else if (svd
->vdev_path
!= NULL
) {
2022 dvd
->vdev_path
= spa_strdup(svd
->vdev_path
);
2023 zfs_dbgmsg("vdev_copy_path: vdev %llu: path set to '%s'",
2024 (u_longlong_t
)dvd
->vdev_guid
, dvd
->vdev_path
);
2029 * Recursively copy vdev paths from one vdev to another. Source and destination
2030 * vdev trees must have same geometry otherwise return error. Intended to copy
2031 * paths from userland config into MOS config.
2034 vdev_copy_path_strict(vdev_t
*svd
, vdev_t
*dvd
)
2036 if ((svd
->vdev_ops
== &vdev_missing_ops
) ||
2037 (svd
->vdev_ishole
&& dvd
->vdev_ishole
) ||
2038 (dvd
->vdev_ops
== &vdev_indirect_ops
))
2041 if (svd
->vdev_ops
!= dvd
->vdev_ops
) {
2042 vdev_dbgmsg(svd
, "vdev_copy_path: vdev type mismatch: %s != %s",
2043 svd
->vdev_ops
->vdev_op_type
, dvd
->vdev_ops
->vdev_op_type
);
2044 return (SET_ERROR(EINVAL
));
2047 if (svd
->vdev_guid
!= dvd
->vdev_guid
) {
2048 vdev_dbgmsg(svd
, "vdev_copy_path: guids mismatch (%llu != "
2049 "%llu)", (u_longlong_t
)svd
->vdev_guid
,
2050 (u_longlong_t
)dvd
->vdev_guid
);
2051 return (SET_ERROR(EINVAL
));
2054 if (svd
->vdev_children
!= dvd
->vdev_children
) {
2055 vdev_dbgmsg(svd
, "vdev_copy_path: children count mismatch: "
2056 "%llu != %llu", (u_longlong_t
)svd
->vdev_children
,
2057 (u_longlong_t
)dvd
->vdev_children
);
2058 return (SET_ERROR(EINVAL
));
2061 for (uint64_t i
= 0; i
< svd
->vdev_children
; i
++) {
2062 int error
= vdev_copy_path_strict(svd
->vdev_child
[i
],
2063 dvd
->vdev_child
[i
]);
2068 if (svd
->vdev_ops
->vdev_op_leaf
)
2069 vdev_copy_path_impl(svd
, dvd
);
2075 vdev_copy_path_search(vdev_t
*stvd
, vdev_t
*dvd
)
2077 ASSERT(stvd
->vdev_top
== stvd
);
2078 ASSERT3U(stvd
->vdev_id
, ==, dvd
->vdev_top
->vdev_id
);
2080 for (uint64_t i
= 0; i
< dvd
->vdev_children
; i
++) {
2081 vdev_copy_path_search(stvd
, dvd
->vdev_child
[i
]);
2084 if (!dvd
->vdev_ops
->vdev_op_leaf
|| !vdev_is_concrete(dvd
))
2088 * The idea here is that while a vdev can shift positions within
2089 * a top vdev (when replacing, attaching mirror, etc.) it cannot
2090 * step outside of it.
2092 vdev_t
*vd
= vdev_lookup_by_guid(stvd
, dvd
->vdev_guid
);
2094 if (vd
== NULL
|| vd
->vdev_ops
!= dvd
->vdev_ops
)
2097 ASSERT(vd
->vdev_ops
->vdev_op_leaf
);
2099 vdev_copy_path_impl(vd
, dvd
);
2103 * Recursively copy vdev paths from one root vdev to another. Source and
2104 * destination vdev trees may differ in geometry. For each destination leaf
2105 * vdev, search a vdev with the same guid and top vdev id in the source.
2106 * Intended to copy paths from userland config into MOS config.
2109 vdev_copy_path_relaxed(vdev_t
*srvd
, vdev_t
*drvd
)
2111 uint64_t children
= MIN(srvd
->vdev_children
, drvd
->vdev_children
);
2112 ASSERT(srvd
->vdev_ops
== &vdev_root_ops
);
2113 ASSERT(drvd
->vdev_ops
== &vdev_root_ops
);
2115 for (uint64_t i
= 0; i
< children
; i
++) {
2116 vdev_copy_path_search(srvd
->vdev_child
[i
],
2117 drvd
->vdev_child
[i
]);
2122 * Close a virtual device.
2125 vdev_close(vdev_t
*vd
)
2127 vdev_t
*pvd
= vd
->vdev_parent
;
2128 ASSERTV(spa_t
*spa
= vd
->vdev_spa
);
2130 ASSERT(spa_config_held(spa
, SCL_STATE_ALL
, RW_WRITER
) == SCL_STATE_ALL
);
2133 * If our parent is reopening, then we are as well, unless we are
2136 if (pvd
!= NULL
&& pvd
->vdev_reopening
)
2137 vd
->vdev_reopening
= (pvd
->vdev_reopening
&& !vd
->vdev_offline
);
2139 vd
->vdev_ops
->vdev_op_close(vd
);
2141 vdev_cache_purge(vd
);
2144 * We record the previous state before we close it, so that if we are
2145 * doing a reopen(), we don't generate FMA ereports if we notice that
2146 * it's still faulted.
2148 vd
->vdev_prevstate
= vd
->vdev_state
;
2150 if (vd
->vdev_offline
)
2151 vd
->vdev_state
= VDEV_STATE_OFFLINE
;
2153 vd
->vdev_state
= VDEV_STATE_CLOSED
;
2154 vd
->vdev_stat
.vs_aux
= VDEV_AUX_NONE
;
2158 vdev_hold(vdev_t
*vd
)
2160 spa_t
*spa
= vd
->vdev_spa
;
2162 ASSERT(spa_is_root(spa
));
2163 if (spa
->spa_state
== POOL_STATE_UNINITIALIZED
)
2166 for (int c
= 0; c
< vd
->vdev_children
; c
++)
2167 vdev_hold(vd
->vdev_child
[c
]);
2169 if (vd
->vdev_ops
->vdev_op_leaf
)
2170 vd
->vdev_ops
->vdev_op_hold(vd
);
2174 vdev_rele(vdev_t
*vd
)
2176 ASSERT(spa_is_root(vd
->vdev_spa
));
2177 for (int c
= 0; c
< vd
->vdev_children
; c
++)
2178 vdev_rele(vd
->vdev_child
[c
]);
2180 if (vd
->vdev_ops
->vdev_op_leaf
)
2181 vd
->vdev_ops
->vdev_op_rele(vd
);
2185 * Reopen all interior vdevs and any unopened leaves. We don't actually
2186 * reopen leaf vdevs which had previously been opened as they might deadlock
2187 * on the spa_config_lock. Instead we only obtain the leaf's physical size.
2188 * If the leaf has never been opened then open it, as usual.
2191 vdev_reopen(vdev_t
*vd
)
2193 spa_t
*spa
= vd
->vdev_spa
;
2195 ASSERT(spa_config_held(spa
, SCL_STATE_ALL
, RW_WRITER
) == SCL_STATE_ALL
);
2197 /* set the reopening flag unless we're taking the vdev offline */
2198 vd
->vdev_reopening
= !vd
->vdev_offline
;
2200 (void) vdev_open(vd
);
2203 * Call vdev_validate() here to make sure we have the same device.
2204 * Otherwise, a device with an invalid label could be successfully
2205 * opened in response to vdev_reopen().
2208 (void) vdev_validate_aux(vd
);
2209 if (vdev_readable(vd
) && vdev_writeable(vd
) &&
2210 vd
->vdev_aux
== &spa
->spa_l2cache
&&
2211 !l2arc_vdev_present(vd
))
2212 l2arc_add_vdev(spa
, vd
);
2214 (void) vdev_validate(vd
);
2218 * Reassess parent vdev's health.
2220 vdev_propagate_state(vd
);
2224 vdev_create(vdev_t
*vd
, uint64_t txg
, boolean_t isreplacing
)
2229 * Normally, partial opens (e.g. of a mirror) are allowed.
2230 * For a create, however, we want to fail the request if
2231 * there are any components we can't open.
2233 error
= vdev_open(vd
);
2235 if (error
|| vd
->vdev_state
!= VDEV_STATE_HEALTHY
) {
2237 return (error
? error
: ENXIO
);
2241 * Recursively load DTLs and initialize all labels.
2243 if ((error
= vdev_dtl_load(vd
)) != 0 ||
2244 (error
= vdev_label_init(vd
, txg
, isreplacing
?
2245 VDEV_LABEL_REPLACE
: VDEV_LABEL_CREATE
)) != 0) {
2254 vdev_metaslab_set_size(vdev_t
*vd
)
2256 uint64_t asize
= vd
->vdev_asize
;
2257 uint64_t ms_count
= asize
>> vdev_default_ms_shift
;
2261 * There are two dimensions to the metaslab sizing calculation:
2262 * the size of the metaslab and the count of metaslabs per vdev.
2263 * In general, we aim for vdev_max_ms_count (200) metaslabs. The
2264 * range of the dimensions are as follows:
2266 * 2^29 <= ms_size <= 2^38
2267 * 16 <= ms_count <= 131,072
2269 * On the lower end of vdev sizes, we aim for metaslabs sizes of
2270 * at least 512MB (2^29) to minimize fragmentation effects when
2271 * testing with smaller devices. However, the count constraint
2272 * of at least 16 metaslabs will override this minimum size goal.
2274 * On the upper end of vdev sizes, we aim for a maximum metaslab
2275 * size of 256GB. However, we will cap the total count to 2^17
2276 * metaslabs to keep our memory footprint in check.
2278 * The net effect of applying above constrains is summarized below.
2280 * vdev size metaslab count
2281 * -------------|-----------------
2283 * 8GB - 100GB one per 512MB
2285 * 50TB - 32PB one per 256GB
2287 * -------------------------------
2290 if (ms_count
< vdev_min_ms_count
)
2291 ms_shift
= highbit64(asize
/ vdev_min_ms_count
);
2292 else if (ms_count
> vdev_max_ms_count
)
2293 ms_shift
= highbit64(asize
/ vdev_max_ms_count
);
2295 ms_shift
= vdev_default_ms_shift
;
2297 if (ms_shift
< SPA_MAXBLOCKSHIFT
) {
2298 ms_shift
= SPA_MAXBLOCKSHIFT
;
2299 } else if (ms_shift
> vdev_max_ms_shift
) {
2300 ms_shift
= vdev_max_ms_shift
;
2301 /* cap the total count to constrain memory footprint */
2302 if ((asize
>> ms_shift
) > vdev_ms_count_limit
)
2303 ms_shift
= highbit64(asize
/ vdev_ms_count_limit
);
2306 vd
->vdev_ms_shift
= ms_shift
;
2307 ASSERT3U(vd
->vdev_ms_shift
, >=, SPA_MAXBLOCKSHIFT
);
2311 vdev_dirty(vdev_t
*vd
, int flags
, void *arg
, uint64_t txg
)
2313 ASSERT(vd
== vd
->vdev_top
);
2314 /* indirect vdevs don't have metaslabs or dtls */
2315 ASSERT(vdev_is_concrete(vd
) || flags
== 0);
2316 ASSERT(ISP2(flags
));
2317 ASSERT(spa_writeable(vd
->vdev_spa
));
2319 if (flags
& VDD_METASLAB
)
2320 (void) txg_list_add(&vd
->vdev_ms_list
, arg
, txg
);
2322 if (flags
& VDD_DTL
)
2323 (void) txg_list_add(&vd
->vdev_dtl_list
, arg
, txg
);
2325 (void) txg_list_add(&vd
->vdev_spa
->spa_vdev_txg_list
, vd
, txg
);
2329 vdev_dirty_leaves(vdev_t
*vd
, int flags
, uint64_t txg
)
2331 for (int c
= 0; c
< vd
->vdev_children
; c
++)
2332 vdev_dirty_leaves(vd
->vdev_child
[c
], flags
, txg
);
2334 if (vd
->vdev_ops
->vdev_op_leaf
)
2335 vdev_dirty(vd
->vdev_top
, flags
, vd
, txg
);
2341 * A vdev's DTL (dirty time log) is the set of transaction groups for which
2342 * the vdev has less than perfect replication. There are four kinds of DTL:
2344 * DTL_MISSING: txgs for which the vdev has no valid copies of the data
2346 * DTL_PARTIAL: txgs for which data is available, but not fully replicated
2348 * DTL_SCRUB: the txgs that could not be repaired by the last scrub; upon
2349 * scrub completion, DTL_SCRUB replaces DTL_MISSING in the range of
2350 * txgs that was scrubbed.
2352 * DTL_OUTAGE: txgs which cannot currently be read, whether due to
2353 * persistent errors or just some device being offline.
2354 * Unlike the other three, the DTL_OUTAGE map is not generally
2355 * maintained; it's only computed when needed, typically to
2356 * determine whether a device can be detached.
2358 * For leaf vdevs, DTL_MISSING and DTL_PARTIAL are identical: the device
2359 * either has the data or it doesn't.
2361 * For interior vdevs such as mirror and RAID-Z the picture is more complex.
2362 * A vdev's DTL_PARTIAL is the union of its children's DTL_PARTIALs, because
2363 * if any child is less than fully replicated, then so is its parent.
2364 * A vdev's DTL_MISSING is a modified union of its children's DTL_MISSINGs,
2365 * comprising only those txgs which appear in 'maxfaults' or more children;
2366 * those are the txgs we don't have enough replication to read. For example,
2367 * double-parity RAID-Z can tolerate up to two missing devices (maxfaults == 2);
2368 * thus, its DTL_MISSING consists of the set of txgs that appear in more than
2369 * two child DTL_MISSING maps.
2371 * It should be clear from the above that to compute the DTLs and outage maps
2372 * for all vdevs, it suffices to know just the leaf vdevs' DTL_MISSING maps.
2373 * Therefore, that is all we keep on disk. When loading the pool, or after
2374 * a configuration change, we generate all other DTLs from first principles.
2377 vdev_dtl_dirty(vdev_t
*vd
, vdev_dtl_type_t t
, uint64_t txg
, uint64_t size
)
2379 range_tree_t
*rt
= vd
->vdev_dtl
[t
];
2381 ASSERT(t
< DTL_TYPES
);
2382 ASSERT(vd
!= vd
->vdev_spa
->spa_root_vdev
);
2383 ASSERT(spa_writeable(vd
->vdev_spa
));
2385 mutex_enter(&vd
->vdev_dtl_lock
);
2386 if (!range_tree_contains(rt
, txg
, size
))
2387 range_tree_add(rt
, txg
, size
);
2388 mutex_exit(&vd
->vdev_dtl_lock
);
2392 vdev_dtl_contains(vdev_t
*vd
, vdev_dtl_type_t t
, uint64_t txg
, uint64_t size
)
2394 range_tree_t
*rt
= vd
->vdev_dtl
[t
];
2395 boolean_t dirty
= B_FALSE
;
2397 ASSERT(t
< DTL_TYPES
);
2398 ASSERT(vd
!= vd
->vdev_spa
->spa_root_vdev
);
2401 * While we are loading the pool, the DTLs have not been loaded yet.
2402 * Ignore the DTLs and try all devices. This avoids a recursive
2403 * mutex enter on the vdev_dtl_lock, and also makes us try hard
2404 * when loading the pool (relying on the checksum to ensure that
2405 * we get the right data -- note that we while loading, we are
2406 * only reading the MOS, which is always checksummed).
2408 if (vd
->vdev_spa
->spa_load_state
!= SPA_LOAD_NONE
)
2411 mutex_enter(&vd
->vdev_dtl_lock
);
2412 if (!range_tree_is_empty(rt
))
2413 dirty
= range_tree_contains(rt
, txg
, size
);
2414 mutex_exit(&vd
->vdev_dtl_lock
);
2420 vdev_dtl_empty(vdev_t
*vd
, vdev_dtl_type_t t
)
2422 range_tree_t
*rt
= vd
->vdev_dtl
[t
];
2425 mutex_enter(&vd
->vdev_dtl_lock
);
2426 empty
= range_tree_is_empty(rt
);
2427 mutex_exit(&vd
->vdev_dtl_lock
);
2433 * Returns B_TRUE if vdev determines offset needs to be resilvered.
2436 vdev_dtl_need_resilver(vdev_t
*vd
, uint64_t offset
, size_t psize
)
2438 ASSERT(vd
!= vd
->vdev_spa
->spa_root_vdev
);
2440 if (vd
->vdev_ops
->vdev_op_need_resilver
== NULL
||
2441 vd
->vdev_ops
->vdev_op_leaf
)
2444 return (vd
->vdev_ops
->vdev_op_need_resilver(vd
, offset
, psize
));
2448 * Returns the lowest txg in the DTL range.
2451 vdev_dtl_min(vdev_t
*vd
)
2455 ASSERT(MUTEX_HELD(&vd
->vdev_dtl_lock
));
2456 ASSERT3U(range_tree_space(vd
->vdev_dtl
[DTL_MISSING
]), !=, 0);
2457 ASSERT0(vd
->vdev_children
);
2459 rs
= avl_first(&vd
->vdev_dtl
[DTL_MISSING
]->rt_root
);
2460 return (rs
->rs_start
- 1);
2464 * Returns the highest txg in the DTL.
2467 vdev_dtl_max(vdev_t
*vd
)
2471 ASSERT(MUTEX_HELD(&vd
->vdev_dtl_lock
));
2472 ASSERT3U(range_tree_space(vd
->vdev_dtl
[DTL_MISSING
]), !=, 0);
2473 ASSERT0(vd
->vdev_children
);
2475 rs
= avl_last(&vd
->vdev_dtl
[DTL_MISSING
]->rt_root
);
2476 return (rs
->rs_end
);
2480 * Determine if a resilvering vdev should remove any DTL entries from
2481 * its range. If the vdev was resilvering for the entire duration of the
2482 * scan then it should excise that range from its DTLs. Otherwise, this
2483 * vdev is considered partially resilvered and should leave its DTL
2484 * entries intact. The comment in vdev_dtl_reassess() describes how we
2488 vdev_dtl_should_excise(vdev_t
*vd
)
2490 spa_t
*spa
= vd
->vdev_spa
;
2491 dsl_scan_t
*scn
= spa
->spa_dsl_pool
->dp_scan
;
2493 ASSERT0(scn
->scn_phys
.scn_errors
);
2494 ASSERT0(vd
->vdev_children
);
2496 if (vd
->vdev_state
< VDEV_STATE_DEGRADED
)
2499 if (vd
->vdev_resilver_deferred
)
2502 if (vd
->vdev_resilver_txg
== 0 ||
2503 range_tree_is_empty(vd
->vdev_dtl
[DTL_MISSING
]))
2507 * When a resilver is initiated the scan will assign the scn_max_txg
2508 * value to the highest txg value that exists in all DTLs. If this
2509 * device's max DTL is not part of this scan (i.e. it is not in
2510 * the range (scn_min_txg, scn_max_txg] then it is not eligible
2513 if (vdev_dtl_max(vd
) <= scn
->scn_phys
.scn_max_txg
) {
2514 ASSERT3U(scn
->scn_phys
.scn_min_txg
, <=, vdev_dtl_min(vd
));
2515 ASSERT3U(scn
->scn_phys
.scn_min_txg
, <, vd
->vdev_resilver_txg
);
2516 ASSERT3U(vd
->vdev_resilver_txg
, <=, scn
->scn_phys
.scn_max_txg
);
2523 * Reassess DTLs after a config change or scrub completion. If txg == 0 no
2524 * write operations will be issued to the pool.
2527 vdev_dtl_reassess(vdev_t
*vd
, uint64_t txg
, uint64_t scrub_txg
, int scrub_done
)
2529 spa_t
*spa
= vd
->vdev_spa
;
2533 ASSERT(spa_config_held(spa
, SCL_ALL
, RW_READER
) != 0);
2535 for (int c
= 0; c
< vd
->vdev_children
; c
++)
2536 vdev_dtl_reassess(vd
->vdev_child
[c
], txg
,
2537 scrub_txg
, scrub_done
);
2539 if (vd
== spa
->spa_root_vdev
|| !vdev_is_concrete(vd
) || vd
->vdev_aux
)
2542 if (vd
->vdev_ops
->vdev_op_leaf
) {
2543 dsl_scan_t
*scn
= spa
->spa_dsl_pool
->dp_scan
;
2545 mutex_enter(&vd
->vdev_dtl_lock
);
2548 * If requested, pretend the scan completed cleanly.
2550 if (zfs_scan_ignore_errors
&& scn
)
2551 scn
->scn_phys
.scn_errors
= 0;
2554 * If we've completed a scan cleanly then determine
2555 * if this vdev should remove any DTLs. We only want to
2556 * excise regions on vdevs that were available during
2557 * the entire duration of this scan.
2559 if (scrub_txg
!= 0 &&
2560 (spa
->spa_scrub_started
||
2561 (scn
!= NULL
&& scn
->scn_phys
.scn_errors
== 0)) &&
2562 vdev_dtl_should_excise(vd
)) {
2564 * We completed a scrub up to scrub_txg. If we
2565 * did it without rebooting, then the scrub dtl
2566 * will be valid, so excise the old region and
2567 * fold in the scrub dtl. Otherwise, leave the
2568 * dtl as-is if there was an error.
2570 * There's little trick here: to excise the beginning
2571 * of the DTL_MISSING map, we put it into a reference
2572 * tree and then add a segment with refcnt -1 that
2573 * covers the range [0, scrub_txg). This means
2574 * that each txg in that range has refcnt -1 or 0.
2575 * We then add DTL_SCRUB with a refcnt of 2, so that
2576 * entries in the range [0, scrub_txg) will have a
2577 * positive refcnt -- either 1 or 2. We then convert
2578 * the reference tree into the new DTL_MISSING map.
2580 space_reftree_create(&reftree
);
2581 space_reftree_add_map(&reftree
,
2582 vd
->vdev_dtl
[DTL_MISSING
], 1);
2583 space_reftree_add_seg(&reftree
, 0, scrub_txg
, -1);
2584 space_reftree_add_map(&reftree
,
2585 vd
->vdev_dtl
[DTL_SCRUB
], 2);
2586 space_reftree_generate_map(&reftree
,
2587 vd
->vdev_dtl
[DTL_MISSING
], 1);
2588 space_reftree_destroy(&reftree
);
2590 range_tree_vacate(vd
->vdev_dtl
[DTL_PARTIAL
], NULL
, NULL
);
2591 range_tree_walk(vd
->vdev_dtl
[DTL_MISSING
],
2592 range_tree_add
, vd
->vdev_dtl
[DTL_PARTIAL
]);
2594 range_tree_vacate(vd
->vdev_dtl
[DTL_SCRUB
], NULL
, NULL
);
2595 range_tree_vacate(vd
->vdev_dtl
[DTL_OUTAGE
], NULL
, NULL
);
2596 if (!vdev_readable(vd
))
2597 range_tree_add(vd
->vdev_dtl
[DTL_OUTAGE
], 0, -1ULL);
2599 range_tree_walk(vd
->vdev_dtl
[DTL_MISSING
],
2600 range_tree_add
, vd
->vdev_dtl
[DTL_OUTAGE
]);
2603 * If the vdev was resilvering and no longer has any
2604 * DTLs then reset its resilvering flag and dirty
2605 * the top level so that we persist the change.
2607 if (txg
!= 0 && vd
->vdev_resilver_txg
!= 0 &&
2608 range_tree_is_empty(vd
->vdev_dtl
[DTL_MISSING
]) &&
2609 range_tree_is_empty(vd
->vdev_dtl
[DTL_OUTAGE
])) {
2610 vd
->vdev_resilver_txg
= 0;
2611 vdev_config_dirty(vd
->vdev_top
);
2614 mutex_exit(&vd
->vdev_dtl_lock
);
2617 vdev_dirty(vd
->vdev_top
, VDD_DTL
, vd
, txg
);
2621 mutex_enter(&vd
->vdev_dtl_lock
);
2622 for (int t
= 0; t
< DTL_TYPES
; t
++) {
2623 /* account for child's outage in parent's missing map */
2624 int s
= (t
== DTL_MISSING
) ? DTL_OUTAGE
: t
;
2626 continue; /* leaf vdevs only */
2627 if (t
== DTL_PARTIAL
)
2628 minref
= 1; /* i.e. non-zero */
2629 else if (vd
->vdev_nparity
!= 0)
2630 minref
= vd
->vdev_nparity
+ 1; /* RAID-Z */
2632 minref
= vd
->vdev_children
; /* any kind of mirror */
2633 space_reftree_create(&reftree
);
2634 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
2635 vdev_t
*cvd
= vd
->vdev_child
[c
];
2636 mutex_enter(&cvd
->vdev_dtl_lock
);
2637 space_reftree_add_map(&reftree
, cvd
->vdev_dtl
[s
], 1);
2638 mutex_exit(&cvd
->vdev_dtl_lock
);
2640 space_reftree_generate_map(&reftree
, vd
->vdev_dtl
[t
], minref
);
2641 space_reftree_destroy(&reftree
);
2643 mutex_exit(&vd
->vdev_dtl_lock
);
2647 vdev_dtl_load(vdev_t
*vd
)
2649 spa_t
*spa
= vd
->vdev_spa
;
2650 objset_t
*mos
= spa
->spa_meta_objset
;
2653 if (vd
->vdev_ops
->vdev_op_leaf
&& vd
->vdev_dtl_object
!= 0) {
2654 ASSERT(vdev_is_concrete(vd
));
2656 error
= space_map_open(&vd
->vdev_dtl_sm
, mos
,
2657 vd
->vdev_dtl_object
, 0, -1ULL, 0);
2660 ASSERT(vd
->vdev_dtl_sm
!= NULL
);
2662 mutex_enter(&vd
->vdev_dtl_lock
);
2665 * Now that we've opened the space_map we need to update
2668 space_map_update(vd
->vdev_dtl_sm
);
2670 error
= space_map_load(vd
->vdev_dtl_sm
,
2671 vd
->vdev_dtl
[DTL_MISSING
], SM_ALLOC
);
2672 mutex_exit(&vd
->vdev_dtl_lock
);
2677 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
2678 error
= vdev_dtl_load(vd
->vdev_child
[c
]);
2687 vdev_zap_allocation_data(vdev_t
*vd
, dmu_tx_t
*tx
)
2689 spa_t
*spa
= vd
->vdev_spa
;
2690 objset_t
*mos
= spa
->spa_meta_objset
;
2691 vdev_alloc_bias_t alloc_bias
= vd
->vdev_alloc_bias
;
2694 ASSERT(alloc_bias
!= VDEV_BIAS_NONE
);
2697 (alloc_bias
== VDEV_BIAS_LOG
) ? VDEV_ALLOC_BIAS_LOG
:
2698 (alloc_bias
== VDEV_BIAS_SPECIAL
) ? VDEV_ALLOC_BIAS_SPECIAL
:
2699 (alloc_bias
== VDEV_BIAS_DEDUP
) ? VDEV_ALLOC_BIAS_DEDUP
: NULL
;
2701 ASSERT(string
!= NULL
);
2702 VERIFY0(zap_add(mos
, vd
->vdev_top_zap
, VDEV_TOP_ZAP_ALLOCATION_BIAS
,
2703 1, strlen(string
) + 1, string
, tx
));
2705 if (alloc_bias
== VDEV_BIAS_SPECIAL
|| alloc_bias
== VDEV_BIAS_DEDUP
) {
2706 spa_activate_allocation_classes(spa
, tx
);
2711 vdev_destroy_unlink_zap(vdev_t
*vd
, uint64_t zapobj
, dmu_tx_t
*tx
)
2713 spa_t
*spa
= vd
->vdev_spa
;
2715 VERIFY0(zap_destroy(spa
->spa_meta_objset
, zapobj
, tx
));
2716 VERIFY0(zap_remove_int(spa
->spa_meta_objset
, spa
->spa_all_vdev_zaps
,
2721 vdev_create_link_zap(vdev_t
*vd
, dmu_tx_t
*tx
)
2723 spa_t
*spa
= vd
->vdev_spa
;
2724 uint64_t zap
= zap_create(spa
->spa_meta_objset
, DMU_OTN_ZAP_METADATA
,
2725 DMU_OT_NONE
, 0, tx
);
2728 VERIFY0(zap_add_int(spa
->spa_meta_objset
, spa
->spa_all_vdev_zaps
,
2735 vdev_construct_zaps(vdev_t
*vd
, dmu_tx_t
*tx
)
2737 if (vd
->vdev_ops
!= &vdev_hole_ops
&&
2738 vd
->vdev_ops
!= &vdev_missing_ops
&&
2739 vd
->vdev_ops
!= &vdev_root_ops
&&
2740 !vd
->vdev_top
->vdev_removing
) {
2741 if (vd
->vdev_ops
->vdev_op_leaf
&& vd
->vdev_leaf_zap
== 0) {
2742 vd
->vdev_leaf_zap
= vdev_create_link_zap(vd
, tx
);
2744 if (vd
== vd
->vdev_top
&& vd
->vdev_top_zap
== 0) {
2745 vd
->vdev_top_zap
= vdev_create_link_zap(vd
, tx
);
2746 if (vd
->vdev_alloc_bias
!= VDEV_BIAS_NONE
)
2747 vdev_zap_allocation_data(vd
, tx
);
2751 for (uint64_t i
= 0; i
< vd
->vdev_children
; i
++) {
2752 vdev_construct_zaps(vd
->vdev_child
[i
], tx
);
2757 vdev_dtl_sync(vdev_t
*vd
, uint64_t txg
)
2759 spa_t
*spa
= vd
->vdev_spa
;
2760 range_tree_t
*rt
= vd
->vdev_dtl
[DTL_MISSING
];
2761 objset_t
*mos
= spa
->spa_meta_objset
;
2762 range_tree_t
*rtsync
;
2764 uint64_t object
= space_map_object(vd
->vdev_dtl_sm
);
2766 ASSERT(vdev_is_concrete(vd
));
2767 ASSERT(vd
->vdev_ops
->vdev_op_leaf
);
2769 tx
= dmu_tx_create_assigned(spa
->spa_dsl_pool
, txg
);
2771 if (vd
->vdev_detached
|| vd
->vdev_top
->vdev_removing
) {
2772 mutex_enter(&vd
->vdev_dtl_lock
);
2773 space_map_free(vd
->vdev_dtl_sm
, tx
);
2774 space_map_close(vd
->vdev_dtl_sm
);
2775 vd
->vdev_dtl_sm
= NULL
;
2776 mutex_exit(&vd
->vdev_dtl_lock
);
2779 * We only destroy the leaf ZAP for detached leaves or for
2780 * removed log devices. Removed data devices handle leaf ZAP
2781 * cleanup later, once cancellation is no longer possible.
2783 if (vd
->vdev_leaf_zap
!= 0 && (vd
->vdev_detached
||
2784 vd
->vdev_top
->vdev_islog
)) {
2785 vdev_destroy_unlink_zap(vd
, vd
->vdev_leaf_zap
, tx
);
2786 vd
->vdev_leaf_zap
= 0;
2793 if (vd
->vdev_dtl_sm
== NULL
) {
2794 uint64_t new_object
;
2796 new_object
= space_map_alloc(mos
, vdev_dtl_sm_blksz
, tx
);
2797 VERIFY3U(new_object
, !=, 0);
2799 VERIFY0(space_map_open(&vd
->vdev_dtl_sm
, mos
, new_object
,
2801 ASSERT(vd
->vdev_dtl_sm
!= NULL
);
2804 rtsync
= range_tree_create(NULL
, NULL
);
2806 mutex_enter(&vd
->vdev_dtl_lock
);
2807 range_tree_walk(rt
, range_tree_add
, rtsync
);
2808 mutex_exit(&vd
->vdev_dtl_lock
);
2810 space_map_truncate(vd
->vdev_dtl_sm
, vdev_dtl_sm_blksz
, tx
);
2811 space_map_write(vd
->vdev_dtl_sm
, rtsync
, SM_ALLOC
, SM_NO_VDEVID
, tx
);
2812 range_tree_vacate(rtsync
, NULL
, NULL
);
2814 range_tree_destroy(rtsync
);
2817 * If the object for the space map has changed then dirty
2818 * the top level so that we update the config.
2820 if (object
!= space_map_object(vd
->vdev_dtl_sm
)) {
2821 vdev_dbgmsg(vd
, "txg %llu, spa %s, DTL old object %llu, "
2822 "new object %llu", (u_longlong_t
)txg
, spa_name(spa
),
2823 (u_longlong_t
)object
,
2824 (u_longlong_t
)space_map_object(vd
->vdev_dtl_sm
));
2825 vdev_config_dirty(vd
->vdev_top
);
2830 mutex_enter(&vd
->vdev_dtl_lock
);
2831 space_map_update(vd
->vdev_dtl_sm
);
2832 mutex_exit(&vd
->vdev_dtl_lock
);
2836 * Determine whether the specified vdev can be offlined/detached/removed
2837 * without losing data.
2840 vdev_dtl_required(vdev_t
*vd
)
2842 spa_t
*spa
= vd
->vdev_spa
;
2843 vdev_t
*tvd
= vd
->vdev_top
;
2844 uint8_t cant_read
= vd
->vdev_cant_read
;
2847 ASSERT(spa_config_held(spa
, SCL_STATE_ALL
, RW_WRITER
) == SCL_STATE_ALL
);
2849 if (vd
== spa
->spa_root_vdev
|| vd
== tvd
)
2853 * Temporarily mark the device as unreadable, and then determine
2854 * whether this results in any DTL outages in the top-level vdev.
2855 * If not, we can safely offline/detach/remove the device.
2857 vd
->vdev_cant_read
= B_TRUE
;
2858 vdev_dtl_reassess(tvd
, 0, 0, B_FALSE
);
2859 required
= !vdev_dtl_empty(tvd
, DTL_OUTAGE
);
2860 vd
->vdev_cant_read
= cant_read
;
2861 vdev_dtl_reassess(tvd
, 0, 0, B_FALSE
);
2863 if (!required
&& zio_injection_enabled
)
2864 required
= !!zio_handle_device_injection(vd
, NULL
, ECHILD
);
2870 * Determine if resilver is needed, and if so the txg range.
2873 vdev_resilver_needed(vdev_t
*vd
, uint64_t *minp
, uint64_t *maxp
)
2875 boolean_t needed
= B_FALSE
;
2876 uint64_t thismin
= UINT64_MAX
;
2877 uint64_t thismax
= 0;
2879 if (vd
->vdev_children
== 0) {
2880 mutex_enter(&vd
->vdev_dtl_lock
);
2881 if (!range_tree_is_empty(vd
->vdev_dtl
[DTL_MISSING
]) &&
2882 vdev_writeable(vd
)) {
2884 thismin
= vdev_dtl_min(vd
);
2885 thismax
= vdev_dtl_max(vd
);
2888 mutex_exit(&vd
->vdev_dtl_lock
);
2890 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
2891 vdev_t
*cvd
= vd
->vdev_child
[c
];
2892 uint64_t cmin
, cmax
;
2894 if (vdev_resilver_needed(cvd
, &cmin
, &cmax
)) {
2895 thismin
= MIN(thismin
, cmin
);
2896 thismax
= MAX(thismax
, cmax
);
2902 if (needed
&& minp
) {
2910 * Gets the checkpoint space map object from the vdev's ZAP. On success sm_obj
2911 * will contain either the checkpoint spacemap object or zero if none exists.
2912 * All other errors are returned to the caller.
2915 vdev_checkpoint_sm_object(vdev_t
*vd
, uint64_t *sm_obj
)
2917 ASSERT0(spa_config_held(vd
->vdev_spa
, SCL_ALL
, RW_WRITER
));
2919 if (vd
->vdev_top_zap
== 0) {
2924 int error
= zap_lookup(spa_meta_objset(vd
->vdev_spa
), vd
->vdev_top_zap
,
2925 VDEV_TOP_ZAP_POOL_CHECKPOINT_SM
, sizeof (uint64_t), 1, sm_obj
);
2926 if (error
== ENOENT
) {
2935 vdev_load(vdev_t
*vd
)
2940 * Recursively load all children.
2942 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
2943 error
= vdev_load(vd
->vdev_child
[c
]);
2949 vdev_set_deflate_ratio(vd
);
2952 * On spa_load path, grab the allocation bias from our zap
2954 if (vd
== vd
->vdev_top
&& vd
->vdev_top_zap
!= 0) {
2955 spa_t
*spa
= vd
->vdev_spa
;
2958 if (zap_lookup(spa
->spa_meta_objset
, vd
->vdev_top_zap
,
2959 VDEV_TOP_ZAP_ALLOCATION_BIAS
, 1, sizeof (bias_str
),
2961 ASSERT(vd
->vdev_alloc_bias
== VDEV_BIAS_NONE
);
2962 vd
->vdev_alloc_bias
= vdev_derive_alloc_bias(bias_str
);
2967 * If this is a top-level vdev, initialize its metaslabs.
2969 if (vd
== vd
->vdev_top
&& vdev_is_concrete(vd
)) {
2970 vdev_metaslab_group_create(vd
);
2972 if (vd
->vdev_ashift
== 0 || vd
->vdev_asize
== 0) {
2973 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
2974 VDEV_AUX_CORRUPT_DATA
);
2975 vdev_dbgmsg(vd
, "vdev_load: invalid size. ashift=%llu, "
2976 "asize=%llu", (u_longlong_t
)vd
->vdev_ashift
,
2977 (u_longlong_t
)vd
->vdev_asize
);
2978 return (SET_ERROR(ENXIO
));
2979 } else if ((error
= vdev_metaslab_init(vd
, 0)) != 0) {
2980 vdev_dbgmsg(vd
, "vdev_load: metaslab_init failed "
2981 "[error=%d]", error
);
2982 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
2983 VDEV_AUX_CORRUPT_DATA
);
2987 uint64_t checkpoint_sm_obj
;
2988 error
= vdev_checkpoint_sm_object(vd
, &checkpoint_sm_obj
);
2989 if (error
== 0 && checkpoint_sm_obj
!= 0) {
2990 objset_t
*mos
= spa_meta_objset(vd
->vdev_spa
);
2991 ASSERT(vd
->vdev_asize
!= 0);
2992 ASSERT3P(vd
->vdev_checkpoint_sm
, ==, NULL
);
2994 if ((error
= space_map_open(&vd
->vdev_checkpoint_sm
,
2995 mos
, checkpoint_sm_obj
, 0, vd
->vdev_asize
,
2996 vd
->vdev_ashift
))) {
2997 vdev_dbgmsg(vd
, "vdev_load: space_map_open "
2998 "failed for checkpoint spacemap (obj %llu) "
3000 (u_longlong_t
)checkpoint_sm_obj
, error
);
3003 ASSERT3P(vd
->vdev_checkpoint_sm
, !=, NULL
);
3004 space_map_update(vd
->vdev_checkpoint_sm
);
3007 * Since the checkpoint_sm contains free entries
3008 * exclusively we can use sm_alloc to indicate the
3009 * cumulative checkpointed space that has been freed.
3011 vd
->vdev_stat
.vs_checkpoint_space
=
3012 -vd
->vdev_checkpoint_sm
->sm_alloc
;
3013 vd
->vdev_spa
->spa_checkpoint_info
.sci_dspace
+=
3014 vd
->vdev_stat
.vs_checkpoint_space
;
3015 } else if (error
!= 0) {
3016 vdev_dbgmsg(vd
, "vdev_load: failed to retrieve "
3017 "checkpoint space map object from vdev ZAP "
3018 "[error=%d]", error
);
3024 * If this is a leaf vdev, load its DTL.
3026 if (vd
->vdev_ops
->vdev_op_leaf
&& (error
= vdev_dtl_load(vd
)) != 0) {
3027 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
3028 VDEV_AUX_CORRUPT_DATA
);
3029 vdev_dbgmsg(vd
, "vdev_load: vdev_dtl_load failed "
3030 "[error=%d]", error
);
3034 uint64_t obsolete_sm_object
;
3035 error
= vdev_obsolete_sm_object(vd
, &obsolete_sm_object
);
3036 if (error
== 0 && obsolete_sm_object
!= 0) {
3037 objset_t
*mos
= vd
->vdev_spa
->spa_meta_objset
;
3038 ASSERT(vd
->vdev_asize
!= 0);
3039 ASSERT3P(vd
->vdev_obsolete_sm
, ==, NULL
);
3041 if ((error
= space_map_open(&vd
->vdev_obsolete_sm
, mos
,
3042 obsolete_sm_object
, 0, vd
->vdev_asize
, 0))) {
3043 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
3044 VDEV_AUX_CORRUPT_DATA
);
3045 vdev_dbgmsg(vd
, "vdev_load: space_map_open failed for "
3046 "obsolete spacemap (obj %llu) [error=%d]",
3047 (u_longlong_t
)obsolete_sm_object
, error
);
3050 space_map_update(vd
->vdev_obsolete_sm
);
3051 } else if (error
!= 0) {
3052 vdev_dbgmsg(vd
, "vdev_load: failed to retrieve obsolete "
3053 "space map object from vdev ZAP [error=%d]", error
);
3061 * The special vdev case is used for hot spares and l2cache devices. Its
3062 * sole purpose it to set the vdev state for the associated vdev. To do this,
3063 * we make sure that we can open the underlying device, then try to read the
3064 * label, and make sure that the label is sane and that it hasn't been
3065 * repurposed to another pool.
3068 vdev_validate_aux(vdev_t
*vd
)
3071 uint64_t guid
, version
;
3074 if (!vdev_readable(vd
))
3077 if ((label
= vdev_label_read_config(vd
, -1ULL)) == NULL
) {
3078 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
3079 VDEV_AUX_CORRUPT_DATA
);
3083 if (nvlist_lookup_uint64(label
, ZPOOL_CONFIG_VERSION
, &version
) != 0 ||
3084 !SPA_VERSION_IS_SUPPORTED(version
) ||
3085 nvlist_lookup_uint64(label
, ZPOOL_CONFIG_GUID
, &guid
) != 0 ||
3086 guid
!= vd
->vdev_guid
||
3087 nvlist_lookup_uint64(label
, ZPOOL_CONFIG_POOL_STATE
, &state
) != 0) {
3088 vdev_set_state(vd
, B_TRUE
, VDEV_STATE_CANT_OPEN
,
3089 VDEV_AUX_CORRUPT_DATA
);
3095 * We don't actually check the pool state here. If it's in fact in
3096 * use by another pool, we update this fact on the fly when requested.
3103 * Free the objects used to store this vdev's spacemaps, and the array
3104 * that points to them.
3107 vdev_destroy_spacemaps(vdev_t
*vd
, dmu_tx_t
*tx
)
3109 if (vd
->vdev_ms_array
== 0)
3112 objset_t
*mos
= vd
->vdev_spa
->spa_meta_objset
;
3113 uint64_t array_count
= vd
->vdev_asize
>> vd
->vdev_ms_shift
;
3114 size_t array_bytes
= array_count
* sizeof (uint64_t);
3115 uint64_t *smobj_array
= kmem_alloc(array_bytes
, KM_SLEEP
);
3116 VERIFY0(dmu_read(mos
, vd
->vdev_ms_array
, 0,
3117 array_bytes
, smobj_array
, 0));
3119 for (uint64_t i
= 0; i
< array_count
; i
++) {
3120 uint64_t smobj
= smobj_array
[i
];
3124 space_map_free_obj(mos
, smobj
, tx
);
3127 kmem_free(smobj_array
, array_bytes
);
3128 VERIFY0(dmu_object_free(mos
, vd
->vdev_ms_array
, tx
));
3129 vd
->vdev_ms_array
= 0;
3133 vdev_remove_empty_log(vdev_t
*vd
, uint64_t txg
)
3135 spa_t
*spa
= vd
->vdev_spa
;
3137 ASSERT(vd
->vdev_islog
);
3138 ASSERT(vd
== vd
->vdev_top
);
3139 ASSERT3U(txg
, ==, spa_syncing_txg(spa
));
3141 if (vd
->vdev_ms
!= NULL
) {
3142 metaslab_group_t
*mg
= vd
->vdev_mg
;
3144 metaslab_group_histogram_verify(mg
);
3145 metaslab_class_histogram_verify(mg
->mg_class
);
3147 for (int m
= 0; m
< vd
->vdev_ms_count
; m
++) {
3148 metaslab_t
*msp
= vd
->vdev_ms
[m
];
3150 if (msp
== NULL
|| msp
->ms_sm
== NULL
)
3153 mutex_enter(&msp
->ms_lock
);
3155 * If the metaslab was not loaded when the vdev
3156 * was removed then the histogram accounting may
3157 * not be accurate. Update the histogram information
3158 * here so that we ensure that the metaslab group
3159 * and metaslab class are up-to-date.
3161 metaslab_group_histogram_remove(mg
, msp
);
3163 VERIFY0(space_map_allocated(msp
->ms_sm
));
3164 space_map_close(msp
->ms_sm
);
3166 mutex_exit(&msp
->ms_lock
);
3169 if (vd
->vdev_checkpoint_sm
!= NULL
) {
3170 ASSERT(spa_has_checkpoint(spa
));
3171 space_map_close(vd
->vdev_checkpoint_sm
);
3172 vd
->vdev_checkpoint_sm
= NULL
;
3175 metaslab_group_histogram_verify(mg
);
3176 metaslab_class_histogram_verify(mg
->mg_class
);
3178 for (int i
= 0; i
< RANGE_TREE_HISTOGRAM_SIZE
; i
++)
3179 ASSERT0(mg
->mg_histogram
[i
]);
3182 dmu_tx_t
*tx
= dmu_tx_create_assigned(spa_get_dsl(spa
), txg
);
3184 vdev_destroy_spacemaps(vd
, tx
);
3185 if (vd
->vdev_top_zap
!= 0) {
3186 vdev_destroy_unlink_zap(vd
, vd
->vdev_top_zap
, tx
);
3187 vd
->vdev_top_zap
= 0;
3194 vdev_sync_done(vdev_t
*vd
, uint64_t txg
)
3197 boolean_t reassess
= !txg_list_empty(&vd
->vdev_ms_list
, TXG_CLEAN(txg
));
3199 ASSERT(vdev_is_concrete(vd
));
3201 while ((msp
= txg_list_remove(&vd
->vdev_ms_list
, TXG_CLEAN(txg
))))
3202 metaslab_sync_done(msp
, txg
);
3205 metaslab_sync_reassess(vd
->vdev_mg
);
3209 vdev_sync(vdev_t
*vd
, uint64_t txg
)
3211 spa_t
*spa
= vd
->vdev_spa
;
3216 if (range_tree_space(vd
->vdev_obsolete_segments
) > 0) {
3219 ASSERT(vd
->vdev_removing
||
3220 vd
->vdev_ops
== &vdev_indirect_ops
);
3222 tx
= dmu_tx_create_assigned(spa
->spa_dsl_pool
, txg
);
3223 vdev_indirect_sync_obsolete(vd
, tx
);
3227 * If the vdev is indirect, it can't have dirty
3228 * metaslabs or DTLs.
3230 if (vd
->vdev_ops
== &vdev_indirect_ops
) {
3231 ASSERT(txg_list_empty(&vd
->vdev_ms_list
, txg
));
3232 ASSERT(txg_list_empty(&vd
->vdev_dtl_list
, txg
));
3237 ASSERT(vdev_is_concrete(vd
));
3239 if (vd
->vdev_ms_array
== 0 && vd
->vdev_ms_shift
!= 0 &&
3240 !vd
->vdev_removing
) {
3241 ASSERT(vd
== vd
->vdev_top
);
3242 ASSERT0(vd
->vdev_indirect_config
.vic_mapping_object
);
3243 tx
= dmu_tx_create_assigned(spa
->spa_dsl_pool
, txg
);
3244 vd
->vdev_ms_array
= dmu_object_alloc(spa
->spa_meta_objset
,
3245 DMU_OT_OBJECT_ARRAY
, 0, DMU_OT_NONE
, 0, tx
);
3246 ASSERT(vd
->vdev_ms_array
!= 0);
3247 vdev_config_dirty(vd
);
3251 while ((msp
= txg_list_remove(&vd
->vdev_ms_list
, txg
)) != NULL
) {
3252 metaslab_sync(msp
, txg
);
3253 (void) txg_list_add(&vd
->vdev_ms_list
, msp
, TXG_CLEAN(txg
));
3256 while ((lvd
= txg_list_remove(&vd
->vdev_dtl_list
, txg
)) != NULL
)
3257 vdev_dtl_sync(lvd
, txg
);
3260 * If this is an empty log device being removed, destroy the
3261 * metadata associated with it.
3263 if (vd
->vdev_islog
&& vd
->vdev_stat
.vs_alloc
== 0 && vd
->vdev_removing
)
3264 vdev_remove_empty_log(vd
, txg
);
3266 (void) txg_list_add(&spa
->spa_vdev_txg_list
, vd
, TXG_CLEAN(txg
));
3270 vdev_psize_to_asize(vdev_t
*vd
, uint64_t psize
)
3272 return (vd
->vdev_ops
->vdev_op_asize(vd
, psize
));
3276 * Mark the given vdev faulted. A faulted vdev behaves as if the device could
3277 * not be opened, and no I/O is attempted.
3280 vdev_fault(spa_t
*spa
, uint64_t guid
, vdev_aux_t aux
)
3284 spa_vdev_state_enter(spa
, SCL_NONE
);
3286 if ((vd
= spa_lookup_by_guid(spa
, guid
, B_TRUE
)) == NULL
)
3287 return (spa_vdev_state_exit(spa
, NULL
, ENODEV
));
3289 if (!vd
->vdev_ops
->vdev_op_leaf
)
3290 return (spa_vdev_state_exit(spa
, NULL
, ENOTSUP
));
3295 * If user did a 'zpool offline -f' then make the fault persist across
3298 if (aux
== VDEV_AUX_EXTERNAL_PERSIST
) {
3300 * There are two kinds of forced faults: temporary and
3301 * persistent. Temporary faults go away at pool import, while
3302 * persistent faults stay set. Both types of faults can be
3303 * cleared with a zpool clear.
3305 * We tell if a vdev is persistently faulted by looking at the
3306 * ZPOOL_CONFIG_AUX_STATE nvpair. If it's set to "external" at
3307 * import then it's a persistent fault. Otherwise, it's
3308 * temporary. We get ZPOOL_CONFIG_AUX_STATE set to "external"
3309 * by setting vd.vdev_stat.vs_aux to VDEV_AUX_EXTERNAL. This
3310 * tells vdev_config_generate() (which gets run later) to set
3311 * ZPOOL_CONFIG_AUX_STATE to "external" in the nvlist.
3313 vd
->vdev_stat
.vs_aux
= VDEV_AUX_EXTERNAL
;
3314 vd
->vdev_tmpoffline
= B_FALSE
;
3315 aux
= VDEV_AUX_EXTERNAL
;
3317 vd
->vdev_tmpoffline
= B_TRUE
;
3321 * We don't directly use the aux state here, but if we do a
3322 * vdev_reopen(), we need this value to be present to remember why we
3325 vd
->vdev_label_aux
= aux
;
3328 * Faulted state takes precedence over degraded.
3330 vd
->vdev_delayed_close
= B_FALSE
;
3331 vd
->vdev_faulted
= 1ULL;
3332 vd
->vdev_degraded
= 0ULL;
3333 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_FAULTED
, aux
);
3336 * If this device has the only valid copy of the data, then
3337 * back off and simply mark the vdev as degraded instead.
3339 if (!tvd
->vdev_islog
&& vd
->vdev_aux
== NULL
&& vdev_dtl_required(vd
)) {
3340 vd
->vdev_degraded
= 1ULL;
3341 vd
->vdev_faulted
= 0ULL;
3344 * If we reopen the device and it's not dead, only then do we
3349 if (vdev_readable(vd
))
3350 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_DEGRADED
, aux
);
3353 return (spa_vdev_state_exit(spa
, vd
, 0));
3357 * Mark the given vdev degraded. A degraded vdev is purely an indication to the
3358 * user that something is wrong. The vdev continues to operate as normal as far
3359 * as I/O is concerned.
3362 vdev_degrade(spa_t
*spa
, uint64_t guid
, vdev_aux_t aux
)
3366 spa_vdev_state_enter(spa
, SCL_NONE
);
3368 if ((vd
= spa_lookup_by_guid(spa
, guid
, B_TRUE
)) == NULL
)
3369 return (spa_vdev_state_exit(spa
, NULL
, ENODEV
));
3371 if (!vd
->vdev_ops
->vdev_op_leaf
)
3372 return (spa_vdev_state_exit(spa
, NULL
, ENOTSUP
));
3375 * If the vdev is already faulted, then don't do anything.
3377 if (vd
->vdev_faulted
|| vd
->vdev_degraded
)
3378 return (spa_vdev_state_exit(spa
, NULL
, 0));
3380 vd
->vdev_degraded
= 1ULL;
3381 if (!vdev_is_dead(vd
))
3382 vdev_set_state(vd
, B_FALSE
, VDEV_STATE_DEGRADED
,
3385 return (spa_vdev_state_exit(spa
, vd
, 0));
3389 * Online the given vdev.
3391 * If 'ZFS_ONLINE_UNSPARE' is set, it implies two things. First, any attached
3392 * spare device should be detached when the device finishes resilvering.
3393 * Second, the online should be treated like a 'test' online case, so no FMA
3394 * events are generated if the device fails to open.
3397 vdev_online(spa_t
*spa
, uint64_t guid
, uint64_t flags
, vdev_state_t
*newstate
)
3399 vdev_t
*vd
, *tvd
, *pvd
, *rvd
= spa
->spa_root_vdev
;
3400 boolean_t wasoffline
;
3401 vdev_state_t oldstate
;
3403 spa_vdev_state_enter(spa
, SCL_NONE
);
3405 if ((vd
= spa_lookup_by_guid(spa
, guid
, B_TRUE
)) == NULL
)
3406 return (spa_vdev_state_exit(spa
, NULL
, ENODEV
));
3408 if (!vd
->vdev_ops
->vdev_op_leaf
)
3409 return (spa_vdev_state_exit(spa
, NULL
, ENOTSUP
));
3411 wasoffline
= (vd
->vdev_offline
|| vd
->vdev_tmpoffline
);
3412 oldstate
= vd
->vdev_state
;
3415 vd
->vdev_offline
= B_FALSE
;
3416 vd
->vdev_tmpoffline
= B_FALSE
;
3417 vd
->vdev_checkremove
= !!(flags
& ZFS_ONLINE_CHECKREMOVE
);
3418 vd
->vdev_forcefault
= !!(flags
& ZFS_ONLINE_FORCEFAULT
);
3420 /* XXX - L2ARC 1.0 does not support expansion */
3421 if (!vd
->vdev_aux
) {
3422 for (pvd
= vd
; pvd
!= rvd
; pvd
= pvd
->vdev_parent
)
3423 pvd
->vdev_expanding
= !!((flags
& ZFS_ONLINE_EXPAND
) ||
3424 spa
->spa_autoexpand
);
3428 vd
->vdev_checkremove
= vd
->vdev_forcefault
= B_FALSE
;
3430 if (!vd
->vdev_aux
) {
3431 for (pvd
= vd
; pvd
!= rvd
; pvd
= pvd
->vdev_parent
)
3432 pvd
->vdev_expanding
= B_FALSE
;
3436 *newstate
= vd
->vdev_state
;
3437 if ((flags
& ZFS_ONLINE_UNSPARE
) &&
3438 !vdev_is_dead(vd
) && vd
->vdev_parent
&&
3439 vd
->vdev_parent
->vdev_ops
== &vdev_spare_ops
&&
3440 vd
->vdev_parent
->vdev_child
[0] == vd
)
3441 vd
->vdev_unspare
= B_TRUE
;
3443 if ((flags
& ZFS_ONLINE_EXPAND
) || spa
->spa_autoexpand
) {
3445 /* XXX - L2ARC 1.0 does not support expansion */
3447 return (spa_vdev_state_exit(spa
, vd
, ENOTSUP
));
3448 spa_async_request(spa
, SPA_ASYNC_CONFIG_UPDATE
);
3452 (oldstate
< VDEV_STATE_DEGRADED
&&
3453 vd
->vdev_state
>= VDEV_STATE_DEGRADED
))
3454 spa_event_notify(spa
, vd
, NULL
, ESC_ZFS_VDEV_ONLINE
);
3456 return (spa_vdev_state_exit(spa
, vd
, 0));
3460 vdev_offline_locked(spa_t
*spa
, uint64_t guid
, uint64_t flags
)
3464 uint64_t generation
;
3465 metaslab_group_t
*mg
;
3468 spa_vdev_state_enter(spa
, SCL_ALLOC
);
3470 if ((vd
= spa_lookup_by_guid(spa
, guid
, B_TRUE
)) == NULL
)
3471 return (spa_vdev_state_exit(spa
, NULL
, ENODEV
));
3473 if (!vd
->vdev_ops
->vdev_op_leaf
)
3474 return (spa_vdev_state_exit(spa
, NULL
, ENOTSUP
));
3478 generation
= spa
->spa_config_generation
+ 1;
3481 * If the device isn't already offline, try to offline it.
3483 if (!vd
->vdev_offline
) {
3485 * If this device has the only valid copy of some data,
3486 * don't allow it to be offlined. Log devices are always
3489 if (!tvd
->vdev_islog
&& vd
->vdev_aux
== NULL
&&
3490 vdev_dtl_required(vd
))
3491 return (spa_vdev_state_exit(spa
, NULL
, EBUSY
));
3494 * If the top-level is a slog and it has had allocations
3495 * then proceed. We check that the vdev's metaslab group
3496 * is not NULL since it's possible that we may have just
3497 * added this vdev but not yet initialized its metaslabs.
3499 if (tvd
->vdev_islog
&& mg
!= NULL
) {
3501 * Prevent any future allocations.
3503 metaslab_group_passivate(mg
);
3504 (void) spa_vdev_state_exit(spa
, vd
, 0);
3506 error
= spa_reset_logs(spa
);
3509 * If the log device was successfully reset but has
3510 * checkpointed data, do not offline it.
3513 tvd
->vdev_checkpoint_sm
!= NULL
) {
3514 ASSERT3U(tvd
->vdev_checkpoint_sm
->sm_alloc
,
3516 error
= ZFS_ERR_CHECKPOINT_EXISTS
;
3519 spa_vdev_state_enter(spa
, SCL_ALLOC
);
3522 * Check to see if the config has changed.
3524 if (error
|| generation
!= spa
->spa_config_generation
) {
3525 metaslab_group_activate(mg
);
3527 return (spa_vdev_state_exit(spa
,
3529 (void) spa_vdev_state_exit(spa
, vd
, 0);
3532 ASSERT0(tvd
->vdev_stat
.vs_alloc
);
3536 * Offline this device and reopen its top-level vdev.
3537 * If the top-level vdev is a log device then just offline
3538 * it. Otherwise, if this action results in the top-level
3539 * vdev becoming unusable, undo it and fail the request.
3541 vd
->vdev_offline
= B_TRUE
;
3544 if (!tvd
->vdev_islog
&& vd
->vdev_aux
== NULL
&&
3545 vdev_is_dead(tvd
)) {
3546 vd
->vdev_offline
= B_FALSE
;
3548 return (spa_vdev_state_exit(spa
, NULL
, EBUSY
));
3552 * Add the device back into the metaslab rotor so that
3553 * once we online the device it's open for business.
3555 if (tvd
->vdev_islog
&& mg
!= NULL
)
3556 metaslab_group_activate(mg
);
3559 vd
->vdev_tmpoffline
= !!(flags
& ZFS_OFFLINE_TEMPORARY
);
3561 return (spa_vdev_state_exit(spa
, vd
, 0));
3565 vdev_offline(spa_t
*spa
, uint64_t guid
, uint64_t flags
)
3569 mutex_enter(&spa
->spa_vdev_top_lock
);
3570 error
= vdev_offline_locked(spa
, guid
, flags
);
3571 mutex_exit(&spa
->spa_vdev_top_lock
);
3577 * Clear the error counts associated with this vdev. Unlike vdev_online() and
3578 * vdev_offline(), we assume the spa config is locked. We also clear all
3579 * children. If 'vd' is NULL, then the user wants to clear all vdevs.
3582 vdev_clear(spa_t
*spa
, vdev_t
*vd
)
3584 vdev_t
*rvd
= spa
->spa_root_vdev
;
3586 ASSERT(spa_config_held(spa
, SCL_STATE_ALL
, RW_WRITER
) == SCL_STATE_ALL
);
3591 vd
->vdev_stat
.vs_read_errors
= 0;
3592 vd
->vdev_stat
.vs_write_errors
= 0;
3593 vd
->vdev_stat
.vs_checksum_errors
= 0;
3595 for (int c
= 0; c
< vd
->vdev_children
; c
++)
3596 vdev_clear(spa
, vd
->vdev_child
[c
]);
3599 * It makes no sense to "clear" an indirect vdev.
3601 if (!vdev_is_concrete(vd
))
3605 * If we're in the FAULTED state or have experienced failed I/O, then
3606 * clear the persistent state and attempt to reopen the device. We
3607 * also mark the vdev config dirty, so that the new faulted state is
3608 * written out to disk.
3610 if (vd
->vdev_faulted
|| vd
->vdev_degraded
||
3611 !vdev_readable(vd
) || !vdev_writeable(vd
)) {
3613 * When reopening in response to a clear event, it may be due to
3614 * a fmadm repair request. In this case, if the device is
3615 * still broken, we want to still post the ereport again.
3617 vd
->vdev_forcefault
= B_TRUE
;
3619 vd
->vdev_faulted
= vd
->vdev_degraded
= 0ULL;
3620 vd
->vdev_cant_read
= B_FALSE
;
3621 vd
->vdev_cant_write
= B_FALSE
;
3622 vd
->vdev_stat
.vs_aux
= 0;
3624 vdev_reopen(vd
== rvd
? rvd
: vd
->vdev_top
);
3626 vd
->vdev_forcefault
= B_FALSE
;
3628 if (vd
!= rvd
&& vdev_writeable(vd
->vdev_top
))
3629 vdev_state_dirty(vd
->vdev_top
);
3631 if (vd
->vdev_aux
== NULL
&& !vdev_is_dead(vd
)) {
3632 if (dsl_scan_resilvering(spa
->spa_dsl_pool
) &&
3633 spa_feature_is_enabled(spa
,
3634 SPA_FEATURE_RESILVER_DEFER
))
3635 vdev_set_deferred_resilver(spa
, vd
);
3637 spa_async_request(spa
, SPA_ASYNC_RESILVER
);
3640 spa_event_notify(spa
, vd
, NULL
, ESC_ZFS_VDEV_CLEAR
);
3644 * When clearing a FMA-diagnosed fault, we always want to
3645 * unspare the device, as we assume that the original spare was
3646 * done in response to the FMA fault.
3648 if (!vdev_is_dead(vd
) && vd
->vdev_parent
!= NULL
&&
3649 vd
->vdev_parent
->vdev_ops
== &vdev_spare_ops
&&
3650 vd
->vdev_parent
->vdev_child
[0] == vd
)
3651 vd
->vdev_unspare
= B_TRUE
;
3655 vdev_is_dead(vdev_t
*vd
)
3658 * Holes and missing devices are always considered "dead".
3659 * This simplifies the code since we don't have to check for
3660 * these types of devices in the various code paths.
3661 * Instead we rely on the fact that we skip over dead devices
3662 * before issuing I/O to them.
3664 return (vd
->vdev_state
< VDEV_STATE_DEGRADED
||
3665 vd
->vdev_ops
== &vdev_hole_ops
||
3666 vd
->vdev_ops
== &vdev_missing_ops
);
3670 vdev_readable(vdev_t
*vd
)
3672 return (!vdev_is_dead(vd
) && !vd
->vdev_cant_read
);
3676 vdev_writeable(vdev_t
*vd
)
3678 return (!vdev_is_dead(vd
) && !vd
->vdev_cant_write
&&
3679 vdev_is_concrete(vd
));
3683 vdev_allocatable(vdev_t
*vd
)
3685 uint64_t state
= vd
->vdev_state
;
3688 * We currently allow allocations from vdevs which may be in the
3689 * process of reopening (i.e. VDEV_STATE_CLOSED). If the device
3690 * fails to reopen then we'll catch it later when we're holding
3691 * the proper locks. Note that we have to get the vdev state
3692 * in a local variable because although it changes atomically,
3693 * we're asking two separate questions about it.
3695 return (!(state
< VDEV_STATE_DEGRADED
&& state
!= VDEV_STATE_CLOSED
) &&
3696 !vd
->vdev_cant_write
&& vdev_is_concrete(vd
) &&
3697 vd
->vdev_mg
->mg_initialized
);
3701 vdev_accessible(vdev_t
*vd
, zio_t
*zio
)
3703 ASSERT(zio
->io_vd
== vd
);
3705 if (vdev_is_dead(vd
) || vd
->vdev_remove_wanted
)
3708 if (zio
->io_type
== ZIO_TYPE_READ
)
3709 return (!vd
->vdev_cant_read
);
3711 if (zio
->io_type
== ZIO_TYPE_WRITE
)
3712 return (!vd
->vdev_cant_write
);
3718 vdev_get_child_stat(vdev_t
*cvd
, vdev_stat_t
*vs
, vdev_stat_t
*cvs
)
3721 for (t
= 0; t
< ZIO_TYPES
; t
++) {
3722 vs
->vs_ops
[t
] += cvs
->vs_ops
[t
];
3723 vs
->vs_bytes
[t
] += cvs
->vs_bytes
[t
];
3726 cvs
->vs_scan_removing
= cvd
->vdev_removing
;
3730 * Get extended stats
3733 vdev_get_child_stat_ex(vdev_t
*cvd
, vdev_stat_ex_t
*vsx
, vdev_stat_ex_t
*cvsx
)
3736 for (t
= 0; t
< ZIO_TYPES
; t
++) {
3737 for (b
= 0; b
< ARRAY_SIZE(vsx
->vsx_disk_histo
[0]); b
++)
3738 vsx
->vsx_disk_histo
[t
][b
] += cvsx
->vsx_disk_histo
[t
][b
];
3740 for (b
= 0; b
< ARRAY_SIZE(vsx
->vsx_total_histo
[0]); b
++) {
3741 vsx
->vsx_total_histo
[t
][b
] +=
3742 cvsx
->vsx_total_histo
[t
][b
];
3746 for (t
= 0; t
< ZIO_PRIORITY_NUM_QUEUEABLE
; t
++) {
3747 for (b
= 0; b
< ARRAY_SIZE(vsx
->vsx_queue_histo
[0]); b
++) {
3748 vsx
->vsx_queue_histo
[t
][b
] +=
3749 cvsx
->vsx_queue_histo
[t
][b
];
3751 vsx
->vsx_active_queue
[t
] += cvsx
->vsx_active_queue
[t
];
3752 vsx
->vsx_pend_queue
[t
] += cvsx
->vsx_pend_queue
[t
];
3754 for (b
= 0; b
< ARRAY_SIZE(vsx
->vsx_ind_histo
[0]); b
++)
3755 vsx
->vsx_ind_histo
[t
][b
] += cvsx
->vsx_ind_histo
[t
][b
];
3757 for (b
= 0; b
< ARRAY_SIZE(vsx
->vsx_agg_histo
[0]); b
++)
3758 vsx
->vsx_agg_histo
[t
][b
] += cvsx
->vsx_agg_histo
[t
][b
];
3764 vdev_is_spacemap_addressable(vdev_t
*vd
)
3767 * Assuming 47 bits of the space map entry dedicated for the entry's
3768 * offset (see description in space_map.h), we calculate the maximum
3769 * address that can be described by a space map entry for the given
3772 uint64_t shift
= vd
->vdev_ashift
+ 47;
3774 if (shift
>= 63) /* detect potential overflow */
3777 return (vd
->vdev_asize
< (1ULL << shift
));
3781 * Get statistics for the given vdev.
3784 vdev_get_stats_ex_impl(vdev_t
*vd
, vdev_stat_t
*vs
, vdev_stat_ex_t
*vsx
)
3788 * If we're getting stats on the root vdev, aggregate the I/O counts
3789 * over all top-level vdevs (i.e. the direct children of the root).
3791 if (!vd
->vdev_ops
->vdev_op_leaf
) {
3793 memset(vs
->vs_ops
, 0, sizeof (vs
->vs_ops
));
3794 memset(vs
->vs_bytes
, 0, sizeof (vs
->vs_bytes
));
3797 memset(vsx
, 0, sizeof (*vsx
));
3799 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
3800 vdev_t
*cvd
= vd
->vdev_child
[c
];
3801 vdev_stat_t
*cvs
= &cvd
->vdev_stat
;
3802 vdev_stat_ex_t
*cvsx
= &cvd
->vdev_stat_ex
;
3804 vdev_get_stats_ex_impl(cvd
, cvs
, cvsx
);
3806 vdev_get_child_stat(cvd
, vs
, cvs
);
3808 vdev_get_child_stat_ex(cvd
, vsx
, cvsx
);
3813 * We're a leaf. Just copy our ZIO active queue stats in. The
3814 * other leaf stats are updated in vdev_stat_update().
3819 memcpy(vsx
, &vd
->vdev_stat_ex
, sizeof (vd
->vdev_stat_ex
));
3821 for (t
= 0; t
< ARRAY_SIZE(vd
->vdev_queue
.vq_class
); t
++) {
3822 vsx
->vsx_active_queue
[t
] =
3823 vd
->vdev_queue
.vq_class
[t
].vqc_active
;
3824 vsx
->vsx_pend_queue
[t
] = avl_numnodes(
3825 &vd
->vdev_queue
.vq_class
[t
].vqc_queued_tree
);
3831 vdev_get_stats_ex(vdev_t
*vd
, vdev_stat_t
*vs
, vdev_stat_ex_t
*vsx
)
3833 vdev_t
*tvd
= vd
->vdev_top
;
3834 mutex_enter(&vd
->vdev_stat_lock
);
3836 bcopy(&vd
->vdev_stat
, vs
, sizeof (*vs
));
3837 vs
->vs_timestamp
= gethrtime() - vs
->vs_timestamp
;
3838 vs
->vs_state
= vd
->vdev_state
;
3839 vs
->vs_rsize
= vdev_get_min_asize(vd
);
3840 if (vd
->vdev_ops
->vdev_op_leaf
)
3841 vs
->vs_rsize
+= VDEV_LABEL_START_SIZE
+
3842 VDEV_LABEL_END_SIZE
;
3844 * Report expandable space on top-level, non-auxillary devices
3845 * only. The expandable space is reported in terms of metaslab
3846 * sized units since that determines how much space the pool
3849 if (vd
->vdev_aux
== NULL
&& tvd
!= NULL
) {
3850 vs
->vs_esize
= P2ALIGN(
3851 vd
->vdev_max_asize
- vd
->vdev_asize
,
3852 1ULL << tvd
->vdev_ms_shift
);
3854 if (vd
->vdev_aux
== NULL
&& vd
== vd
->vdev_top
&&
3855 vdev_is_concrete(vd
)) {
3856 vs
->vs_fragmentation
= (vd
->vdev_mg
!= NULL
) ?
3857 vd
->vdev_mg
->mg_fragmentation
: 0;
3859 if (vd
->vdev_ops
->vdev_op_leaf
)
3860 vs
->vs_resilver_deferred
= vd
->vdev_resilver_deferred
;
3863 ASSERT(spa_config_held(vd
->vdev_spa
, SCL_ALL
, RW_READER
) != 0);
3864 vdev_get_stats_ex_impl(vd
, vs
, vsx
);
3865 mutex_exit(&vd
->vdev_stat_lock
);
3869 vdev_get_stats(vdev_t
*vd
, vdev_stat_t
*vs
)
3871 return (vdev_get_stats_ex(vd
, vs
, NULL
));
3875 vdev_clear_stats(vdev_t
*vd
)
3877 mutex_enter(&vd
->vdev_stat_lock
);
3878 vd
->vdev_stat
.vs_space
= 0;
3879 vd
->vdev_stat
.vs_dspace
= 0;
3880 vd
->vdev_stat
.vs_alloc
= 0;
3881 mutex_exit(&vd
->vdev_stat_lock
);
3885 vdev_scan_stat_init(vdev_t
*vd
)
3887 vdev_stat_t
*vs
= &vd
->vdev_stat
;
3889 for (int c
= 0; c
< vd
->vdev_children
; c
++)
3890 vdev_scan_stat_init(vd
->vdev_child
[c
]);
3892 mutex_enter(&vd
->vdev_stat_lock
);
3893 vs
->vs_scan_processed
= 0;
3894 mutex_exit(&vd
->vdev_stat_lock
);
3898 vdev_stat_update(zio_t
*zio
, uint64_t psize
)
3900 spa_t
*spa
= zio
->io_spa
;
3901 vdev_t
*rvd
= spa
->spa_root_vdev
;
3902 vdev_t
*vd
= zio
->io_vd
? zio
->io_vd
: rvd
;
3904 uint64_t txg
= zio
->io_txg
;
3905 vdev_stat_t
*vs
= &vd
->vdev_stat
;
3906 vdev_stat_ex_t
*vsx
= &vd
->vdev_stat_ex
;
3907 zio_type_t type
= zio
->io_type
;
3908 int flags
= zio
->io_flags
;
3911 * If this i/o is a gang leader, it didn't do any actual work.
3913 if (zio
->io_gang_tree
)
3916 if (zio
->io_error
== 0) {
3918 * If this is a root i/o, don't count it -- we've already
3919 * counted the top-level vdevs, and vdev_get_stats() will
3920 * aggregate them when asked. This reduces contention on
3921 * the root vdev_stat_lock and implicitly handles blocks
3922 * that compress away to holes, for which there is no i/o.
3923 * (Holes never create vdev children, so all the counters
3924 * remain zero, which is what we want.)
3926 * Note: this only applies to successful i/o (io_error == 0)
3927 * because unlike i/o counts, errors are not additive.
3928 * When reading a ditto block, for example, failure of
3929 * one top-level vdev does not imply a root-level error.
3934 ASSERT(vd
== zio
->io_vd
);
3936 if (flags
& ZIO_FLAG_IO_BYPASS
)
3939 mutex_enter(&vd
->vdev_stat_lock
);
3941 if (flags
& ZIO_FLAG_IO_REPAIR
) {
3942 if (flags
& ZIO_FLAG_SCAN_THREAD
) {
3943 dsl_scan_phys_t
*scn_phys
=
3944 &spa
->spa_dsl_pool
->dp_scan
->scn_phys
;
3945 uint64_t *processed
= &scn_phys
->scn_processed
;
3948 if (vd
->vdev_ops
->vdev_op_leaf
)
3949 atomic_add_64(processed
, psize
);
3950 vs
->vs_scan_processed
+= psize
;
3953 if (flags
& ZIO_FLAG_SELF_HEAL
)
3954 vs
->vs_self_healed
+= psize
;
3958 * The bytes/ops/histograms are recorded at the leaf level and
3959 * aggregated into the higher level vdevs in vdev_get_stats().
3961 if (vd
->vdev_ops
->vdev_op_leaf
&&
3962 (zio
->io_priority
< ZIO_PRIORITY_NUM_QUEUEABLE
)) {
3965 vs
->vs_bytes
[type
] += psize
;
3967 if (flags
& ZIO_FLAG_DELEGATED
) {
3968 vsx
->vsx_agg_histo
[zio
->io_priority
]
3969 [RQ_HISTO(zio
->io_size
)]++;
3971 vsx
->vsx_ind_histo
[zio
->io_priority
]
3972 [RQ_HISTO(zio
->io_size
)]++;
3975 if (zio
->io_delta
&& zio
->io_delay
) {
3976 vsx
->vsx_queue_histo
[zio
->io_priority
]
3977 [L_HISTO(zio
->io_delta
- zio
->io_delay
)]++;
3978 vsx
->vsx_disk_histo
[type
]
3979 [L_HISTO(zio
->io_delay
)]++;
3980 vsx
->vsx_total_histo
[type
]
3981 [L_HISTO(zio
->io_delta
)]++;
3985 mutex_exit(&vd
->vdev_stat_lock
);
3989 if (flags
& ZIO_FLAG_SPECULATIVE
)
3993 * If this is an I/O error that is going to be retried, then ignore the
3994 * error. Otherwise, the user may interpret B_FAILFAST I/O errors as
3995 * hard errors, when in reality they can happen for any number of
3996 * innocuous reasons (bus resets, MPxIO link failure, etc).
3998 if (zio
->io_error
== EIO
&&
3999 !(zio
->io_flags
& ZIO_FLAG_IO_RETRY
))
4003 * Intent logs writes won't propagate their error to the root
4004 * I/O so don't mark these types of failures as pool-level
4007 if (zio
->io_vd
== NULL
&& (zio
->io_flags
& ZIO_FLAG_DONT_PROPAGATE
))
4010 mutex_enter(&vd
->vdev_stat_lock
);
4011 if (type
== ZIO_TYPE_READ
&& !vdev_is_dead(vd
)) {
4012 if (zio
->io_error
== ECKSUM
)
4013 vs
->vs_checksum_errors
++;
4015 vs
->vs_read_errors
++;
4017 if (type
== ZIO_TYPE_WRITE
&& !vdev_is_dead(vd
))
4018 vs
->vs_write_errors
++;
4019 mutex_exit(&vd
->vdev_stat_lock
);
4021 if (spa
->spa_load_state
== SPA_LOAD_NONE
&&
4022 type
== ZIO_TYPE_WRITE
&& txg
!= 0 &&
4023 (!(flags
& ZIO_FLAG_IO_REPAIR
) ||
4024 (flags
& ZIO_FLAG_SCAN_THREAD
) ||
4025 spa
->spa_claiming
)) {
4027 * This is either a normal write (not a repair), or it's
4028 * a repair induced by the scrub thread, or it's a repair
4029 * made by zil_claim() during spa_load() in the first txg.
4030 * In the normal case, we commit the DTL change in the same
4031 * txg as the block was born. In the scrub-induced repair
4032 * case, we know that scrubs run in first-pass syncing context,
4033 * so we commit the DTL change in spa_syncing_txg(spa).
4034 * In the zil_claim() case, we commit in spa_first_txg(spa).
4036 * We currently do not make DTL entries for failed spontaneous
4037 * self-healing writes triggered by normal (non-scrubbing)
4038 * reads, because we have no transactional context in which to
4039 * do so -- and it's not clear that it'd be desirable anyway.
4041 if (vd
->vdev_ops
->vdev_op_leaf
) {
4042 uint64_t commit_txg
= txg
;
4043 if (flags
& ZIO_FLAG_SCAN_THREAD
) {
4044 ASSERT(flags
& ZIO_FLAG_IO_REPAIR
);
4045 ASSERT(spa_sync_pass(spa
) == 1);
4046 vdev_dtl_dirty(vd
, DTL_SCRUB
, txg
, 1);
4047 commit_txg
= spa_syncing_txg(spa
);
4048 } else if (spa
->spa_claiming
) {
4049 ASSERT(flags
& ZIO_FLAG_IO_REPAIR
);
4050 commit_txg
= spa_first_txg(spa
);
4052 ASSERT(commit_txg
>= spa_syncing_txg(spa
));
4053 if (vdev_dtl_contains(vd
, DTL_MISSING
, txg
, 1))
4055 for (pvd
= vd
; pvd
!= rvd
; pvd
= pvd
->vdev_parent
)
4056 vdev_dtl_dirty(pvd
, DTL_PARTIAL
, txg
, 1);
4057 vdev_dirty(vd
->vdev_top
, VDD_DTL
, vd
, commit_txg
);
4060 vdev_dtl_dirty(vd
, DTL_MISSING
, txg
, 1);
4065 vdev_deflated_space(vdev_t
*vd
, int64_t space
)
4067 ASSERT((space
& (SPA_MINBLOCKSIZE
-1)) == 0);
4068 ASSERT(vd
->vdev_deflate_ratio
!= 0 || vd
->vdev_isl2cache
);
4070 return ((space
>> SPA_MINBLOCKSHIFT
) * vd
->vdev_deflate_ratio
);
4074 * Update the in-core space usage stats for this vdev and the root vdev.
4077 vdev_space_update(vdev_t
*vd
, int64_t alloc_delta
, int64_t defer_delta
,
4078 int64_t space_delta
)
4080 int64_t dspace_delta
;
4081 spa_t
*spa
= vd
->vdev_spa
;
4082 vdev_t
*rvd
= spa
->spa_root_vdev
;
4084 ASSERT(vd
== vd
->vdev_top
);
4087 * Apply the inverse of the psize-to-asize (ie. RAID-Z) space-expansion
4088 * factor. We must calculate this here and not at the root vdev
4089 * because the root vdev's psize-to-asize is simply the max of its
4090 * childrens', thus not accurate enough for us.
4092 dspace_delta
= vdev_deflated_space(vd
, space_delta
);
4094 mutex_enter(&vd
->vdev_stat_lock
);
4095 vd
->vdev_stat
.vs_alloc
+= alloc_delta
;
4096 vd
->vdev_stat
.vs_space
+= space_delta
;
4097 vd
->vdev_stat
.vs_dspace
+= dspace_delta
;
4098 mutex_exit(&vd
->vdev_stat_lock
);
4100 /* every class but log contributes to root space stats */
4101 if (vd
->vdev_mg
!= NULL
&& !vd
->vdev_islog
) {
4102 mutex_enter(&rvd
->vdev_stat_lock
);
4103 rvd
->vdev_stat
.vs_alloc
+= alloc_delta
;
4104 rvd
->vdev_stat
.vs_space
+= space_delta
;
4105 rvd
->vdev_stat
.vs_dspace
+= dspace_delta
;
4106 mutex_exit(&rvd
->vdev_stat_lock
);
4108 /* Note: metaslab_class_space_update moved to metaslab_space_update */
4112 * Mark a top-level vdev's config as dirty, placing it on the dirty list
4113 * so that it will be written out next time the vdev configuration is synced.
4114 * If the root vdev is specified (vdev_top == NULL), dirty all top-level vdevs.
4117 vdev_config_dirty(vdev_t
*vd
)
4119 spa_t
*spa
= vd
->vdev_spa
;
4120 vdev_t
*rvd
= spa
->spa_root_vdev
;
4123 ASSERT(spa_writeable(spa
));
4126 * If this is an aux vdev (as with l2cache and spare devices), then we
4127 * update the vdev config manually and set the sync flag.
4129 if (vd
->vdev_aux
!= NULL
) {
4130 spa_aux_vdev_t
*sav
= vd
->vdev_aux
;
4134 for (c
= 0; c
< sav
->sav_count
; c
++) {
4135 if (sav
->sav_vdevs
[c
] == vd
)
4139 if (c
== sav
->sav_count
) {
4141 * We're being removed. There's nothing more to do.
4143 ASSERT(sav
->sav_sync
== B_TRUE
);
4147 sav
->sav_sync
= B_TRUE
;
4149 if (nvlist_lookup_nvlist_array(sav
->sav_config
,
4150 ZPOOL_CONFIG_L2CACHE
, &aux
, &naux
) != 0) {
4151 VERIFY(nvlist_lookup_nvlist_array(sav
->sav_config
,
4152 ZPOOL_CONFIG_SPARES
, &aux
, &naux
) == 0);
4158 * Setting the nvlist in the middle if the array is a little
4159 * sketchy, but it will work.
4161 nvlist_free(aux
[c
]);
4162 aux
[c
] = vdev_config_generate(spa
, vd
, B_TRUE
, 0);
4168 * The dirty list is protected by the SCL_CONFIG lock. The caller
4169 * must either hold SCL_CONFIG as writer, or must be the sync thread
4170 * (which holds SCL_CONFIG as reader). There's only one sync thread,
4171 * so this is sufficient to ensure mutual exclusion.
4173 ASSERT(spa_config_held(spa
, SCL_CONFIG
, RW_WRITER
) ||
4174 (dsl_pool_sync_context(spa_get_dsl(spa
)) &&
4175 spa_config_held(spa
, SCL_CONFIG
, RW_READER
)));
4178 for (c
= 0; c
< rvd
->vdev_children
; c
++)
4179 vdev_config_dirty(rvd
->vdev_child
[c
]);
4181 ASSERT(vd
== vd
->vdev_top
);
4183 if (!list_link_active(&vd
->vdev_config_dirty_node
) &&
4184 vdev_is_concrete(vd
)) {
4185 list_insert_head(&spa
->spa_config_dirty_list
, vd
);
4191 vdev_config_clean(vdev_t
*vd
)
4193 spa_t
*spa
= vd
->vdev_spa
;
4195 ASSERT(spa_config_held(spa
, SCL_CONFIG
, RW_WRITER
) ||
4196 (dsl_pool_sync_context(spa_get_dsl(spa
)) &&
4197 spa_config_held(spa
, SCL_CONFIG
, RW_READER
)));
4199 ASSERT(list_link_active(&vd
->vdev_config_dirty_node
));
4200 list_remove(&spa
->spa_config_dirty_list
, vd
);
4204 * Mark a top-level vdev's state as dirty, so that the next pass of
4205 * spa_sync() can convert this into vdev_config_dirty(). We distinguish
4206 * the state changes from larger config changes because they require
4207 * much less locking, and are often needed for administrative actions.
4210 vdev_state_dirty(vdev_t
*vd
)
4212 spa_t
*spa
= vd
->vdev_spa
;
4214 ASSERT(spa_writeable(spa
));
4215 ASSERT(vd
== vd
->vdev_top
);
4218 * The state list is protected by the SCL_STATE lock. The caller
4219 * must either hold SCL_STATE as writer, or must be the sync thread
4220 * (which holds SCL_STATE as reader). There's only one sync thread,
4221 * so this is sufficient to ensure mutual exclusion.
4223 ASSERT(spa_config_held(spa
, SCL_STATE
, RW_WRITER
) ||
4224 (dsl_pool_sync_context(spa_get_dsl(spa
)) &&
4225 spa_config_held(spa
, SCL_STATE
, RW_READER
)));
4227 if (!list_link_active(&vd
->vdev_state_dirty_node
) &&
4228 vdev_is_concrete(vd
))
4229 list_insert_head(&spa
->spa_state_dirty_list
, vd
);
4233 vdev_state_clean(vdev_t
*vd
)
4235 spa_t
*spa
= vd
->vdev_spa
;
4237 ASSERT(spa_config_held(spa
, SCL_STATE
, RW_WRITER
) ||
4238 (dsl_pool_sync_context(spa_get_dsl(spa
)) &&
4239 spa_config_held(spa
, SCL_STATE
, RW_READER
)));
4241 ASSERT(list_link_active(&vd
->vdev_state_dirty_node
));
4242 list_remove(&spa
->spa_state_dirty_list
, vd
);
4246 * Propagate vdev state up from children to parent.
4249 vdev_propagate_state(vdev_t
*vd
)
4251 spa_t
*spa
= vd
->vdev_spa
;
4252 vdev_t
*rvd
= spa
->spa_root_vdev
;
4253 int degraded
= 0, faulted
= 0;
4257 if (vd
->vdev_children
> 0) {
4258 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
4259 child
= vd
->vdev_child
[c
];
4262 * Don't factor holes or indirect vdevs into the
4265 if (!vdev_is_concrete(child
))
4268 if (!vdev_readable(child
) ||
4269 (!vdev_writeable(child
) && spa_writeable(spa
))) {
4271 * Root special: if there is a top-level log
4272 * device, treat the root vdev as if it were
4275 if (child
->vdev_islog
&& vd
== rvd
)
4279 } else if (child
->vdev_state
<= VDEV_STATE_DEGRADED
) {
4283 if (child
->vdev_stat
.vs_aux
== VDEV_AUX_CORRUPT_DATA
)
4287 vd
->vdev_ops
->vdev_op_state_change(vd
, faulted
, degraded
);
4290 * Root special: if there is a top-level vdev that cannot be
4291 * opened due to corrupted metadata, then propagate the root
4292 * vdev's aux state as 'corrupt' rather than 'insufficient
4295 if (corrupted
&& vd
== rvd
&&
4296 rvd
->vdev_state
== VDEV_STATE_CANT_OPEN
)
4297 vdev_set_state(rvd
, B_FALSE
, VDEV_STATE_CANT_OPEN
,
4298 VDEV_AUX_CORRUPT_DATA
);
4301 if (vd
->vdev_parent
)
4302 vdev_propagate_state(vd
->vdev_parent
);
4306 * Set a vdev's state. If this is during an open, we don't update the parent
4307 * state, because we're in the process of opening children depth-first.
4308 * Otherwise, we propagate the change to the parent.
4310 * If this routine places a device in a faulted state, an appropriate ereport is
4314 vdev_set_state(vdev_t
*vd
, boolean_t isopen
, vdev_state_t state
, vdev_aux_t aux
)
4316 uint64_t save_state
;
4317 spa_t
*spa
= vd
->vdev_spa
;
4319 if (state
== vd
->vdev_state
) {
4321 * Since vdev_offline() code path is already in an offline
4322 * state we can miss a statechange event to OFFLINE. Check
4323 * the previous state to catch this condition.
4325 if (vd
->vdev_ops
->vdev_op_leaf
&&
4326 (state
== VDEV_STATE_OFFLINE
) &&
4327 (vd
->vdev_prevstate
>= VDEV_STATE_FAULTED
)) {
4328 /* post an offline state change */
4329 zfs_post_state_change(spa
, vd
, vd
->vdev_prevstate
);
4331 vd
->vdev_stat
.vs_aux
= aux
;
4335 save_state
= vd
->vdev_state
;
4337 vd
->vdev_state
= state
;
4338 vd
->vdev_stat
.vs_aux
= aux
;
4341 * If we are setting the vdev state to anything but an open state, then
4342 * always close the underlying device unless the device has requested
4343 * a delayed close (i.e. we're about to remove or fault the device).
4344 * Otherwise, we keep accessible but invalid devices open forever.
4345 * We don't call vdev_close() itself, because that implies some extra
4346 * checks (offline, etc) that we don't want here. This is limited to
4347 * leaf devices, because otherwise closing the device will affect other
4350 if (!vd
->vdev_delayed_close
&& vdev_is_dead(vd
) &&
4351 vd
->vdev_ops
->vdev_op_leaf
)
4352 vd
->vdev_ops
->vdev_op_close(vd
);
4354 if (vd
->vdev_removed
&&
4355 state
== VDEV_STATE_CANT_OPEN
&&
4356 (aux
== VDEV_AUX_OPEN_FAILED
|| vd
->vdev_checkremove
)) {
4358 * If the previous state is set to VDEV_STATE_REMOVED, then this
4359 * device was previously marked removed and someone attempted to
4360 * reopen it. If this failed due to a nonexistent device, then
4361 * keep the device in the REMOVED state. We also let this be if
4362 * it is one of our special test online cases, which is only
4363 * attempting to online the device and shouldn't generate an FMA
4366 vd
->vdev_state
= VDEV_STATE_REMOVED
;
4367 vd
->vdev_stat
.vs_aux
= VDEV_AUX_NONE
;
4368 } else if (state
== VDEV_STATE_REMOVED
) {
4369 vd
->vdev_removed
= B_TRUE
;
4370 } else if (state
== VDEV_STATE_CANT_OPEN
) {
4372 * If we fail to open a vdev during an import or recovery, we
4373 * mark it as "not available", which signifies that it was
4374 * never there to begin with. Failure to open such a device
4375 * is not considered an error.
4377 if ((spa_load_state(spa
) == SPA_LOAD_IMPORT
||
4378 spa_load_state(spa
) == SPA_LOAD_RECOVER
) &&
4379 vd
->vdev_ops
->vdev_op_leaf
)
4380 vd
->vdev_not_present
= 1;
4383 * Post the appropriate ereport. If the 'prevstate' field is
4384 * set to something other than VDEV_STATE_UNKNOWN, it indicates
4385 * that this is part of a vdev_reopen(). In this case, we don't
4386 * want to post the ereport if the device was already in the
4387 * CANT_OPEN state beforehand.
4389 * If the 'checkremove' flag is set, then this is an attempt to
4390 * online the device in response to an insertion event. If we
4391 * hit this case, then we have detected an insertion event for a
4392 * faulted or offline device that wasn't in the removed state.
4393 * In this scenario, we don't post an ereport because we are
4394 * about to replace the device, or attempt an online with
4395 * vdev_forcefault, which will generate the fault for us.
4397 if ((vd
->vdev_prevstate
!= state
|| vd
->vdev_forcefault
) &&
4398 !vd
->vdev_not_present
&& !vd
->vdev_checkremove
&&
4399 vd
!= spa
->spa_root_vdev
) {
4403 case VDEV_AUX_OPEN_FAILED
:
4404 class = FM_EREPORT_ZFS_DEVICE_OPEN_FAILED
;
4406 case VDEV_AUX_CORRUPT_DATA
:
4407 class = FM_EREPORT_ZFS_DEVICE_CORRUPT_DATA
;
4409 case VDEV_AUX_NO_REPLICAS
:
4410 class = FM_EREPORT_ZFS_DEVICE_NO_REPLICAS
;
4412 case VDEV_AUX_BAD_GUID_SUM
:
4413 class = FM_EREPORT_ZFS_DEVICE_BAD_GUID_SUM
;
4415 case VDEV_AUX_TOO_SMALL
:
4416 class = FM_EREPORT_ZFS_DEVICE_TOO_SMALL
;
4418 case VDEV_AUX_BAD_LABEL
:
4419 class = FM_EREPORT_ZFS_DEVICE_BAD_LABEL
;
4421 case VDEV_AUX_BAD_ASHIFT
:
4422 class = FM_EREPORT_ZFS_DEVICE_BAD_ASHIFT
;
4425 class = FM_EREPORT_ZFS_DEVICE_UNKNOWN
;
4428 zfs_ereport_post(class, spa
, vd
, NULL
, NULL
,
4432 /* Erase any notion of persistent removed state */
4433 vd
->vdev_removed
= B_FALSE
;
4435 vd
->vdev_removed
= B_FALSE
;
4439 * Notify ZED of any significant state-change on a leaf vdev.
4442 if (vd
->vdev_ops
->vdev_op_leaf
) {
4443 /* preserve original state from a vdev_reopen() */
4444 if ((vd
->vdev_prevstate
!= VDEV_STATE_UNKNOWN
) &&
4445 (vd
->vdev_prevstate
!= vd
->vdev_state
) &&
4446 (save_state
<= VDEV_STATE_CLOSED
))
4447 save_state
= vd
->vdev_prevstate
;
4449 /* filter out state change due to initial vdev_open */
4450 if (save_state
> VDEV_STATE_CLOSED
)
4451 zfs_post_state_change(spa
, vd
, save_state
);
4454 if (!isopen
&& vd
->vdev_parent
)
4455 vdev_propagate_state(vd
->vdev_parent
);
4459 vdev_children_are_offline(vdev_t
*vd
)
4461 ASSERT(!vd
->vdev_ops
->vdev_op_leaf
);
4463 for (uint64_t i
= 0; i
< vd
->vdev_children
; i
++) {
4464 if (vd
->vdev_child
[i
]->vdev_state
!= VDEV_STATE_OFFLINE
)
4472 * Check the vdev configuration to ensure that it's capable of supporting
4473 * a root pool. We do not support partial configuration.
4476 vdev_is_bootable(vdev_t
*vd
)
4478 if (!vd
->vdev_ops
->vdev_op_leaf
) {
4479 const char *vdev_type
= vd
->vdev_ops
->vdev_op_type
;
4481 if (strcmp(vdev_type
, VDEV_TYPE_MISSING
) == 0 ||
4482 strcmp(vdev_type
, VDEV_TYPE_INDIRECT
) == 0) {
4487 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
4488 if (!vdev_is_bootable(vd
->vdev_child
[c
]))
4495 vdev_is_concrete(vdev_t
*vd
)
4497 vdev_ops_t
*ops
= vd
->vdev_ops
;
4498 if (ops
== &vdev_indirect_ops
|| ops
== &vdev_hole_ops
||
4499 ops
== &vdev_missing_ops
|| ops
== &vdev_root_ops
) {
4507 * Determine if a log device has valid content. If the vdev was
4508 * removed or faulted in the MOS config then we know that
4509 * the content on the log device has already been written to the pool.
4512 vdev_log_state_valid(vdev_t
*vd
)
4514 if (vd
->vdev_ops
->vdev_op_leaf
&& !vd
->vdev_faulted
&&
4518 for (int c
= 0; c
< vd
->vdev_children
; c
++)
4519 if (vdev_log_state_valid(vd
->vdev_child
[c
]))
4526 * Expand a vdev if possible.
4529 vdev_expand(vdev_t
*vd
, uint64_t txg
)
4531 ASSERT(vd
->vdev_top
== vd
);
4532 ASSERT(spa_config_held(vd
->vdev_spa
, SCL_ALL
, RW_WRITER
) == SCL_ALL
);
4533 ASSERT(vdev_is_concrete(vd
));
4535 vdev_set_deflate_ratio(vd
);
4537 if ((vd
->vdev_asize
>> vd
->vdev_ms_shift
) > vd
->vdev_ms_count
&&
4538 vdev_is_concrete(vd
)) {
4539 vdev_metaslab_group_create(vd
);
4540 VERIFY(vdev_metaslab_init(vd
, txg
) == 0);
4541 vdev_config_dirty(vd
);
4549 vdev_split(vdev_t
*vd
)
4551 vdev_t
*cvd
, *pvd
= vd
->vdev_parent
;
4553 vdev_remove_child(pvd
, vd
);
4554 vdev_compact_children(pvd
);
4556 cvd
= pvd
->vdev_child
[0];
4557 if (pvd
->vdev_children
== 1) {
4558 vdev_remove_parent(cvd
);
4559 cvd
->vdev_splitting
= B_TRUE
;
4561 vdev_propagate_state(cvd
);
4565 vdev_deadman(vdev_t
*vd
, char *tag
)
4567 for (int c
= 0; c
< vd
->vdev_children
; c
++) {
4568 vdev_t
*cvd
= vd
->vdev_child
[c
];
4570 vdev_deadman(cvd
, tag
);
4573 if (vd
->vdev_ops
->vdev_op_leaf
) {
4574 vdev_queue_t
*vq
= &vd
->vdev_queue
;
4576 mutex_enter(&vq
->vq_lock
);
4577 if (avl_numnodes(&vq
->vq_active_tree
) > 0) {
4578 spa_t
*spa
= vd
->vdev_spa
;
4582 zfs_dbgmsg("slow vdev: %s has %d active IOs",
4583 vd
->vdev_path
, avl_numnodes(&vq
->vq_active_tree
));
4586 * Look at the head of all the pending queues,
4587 * if any I/O has been outstanding for longer than
4588 * the spa_deadman_synctime invoke the deadman logic.
4590 fio
= avl_first(&vq
->vq_active_tree
);
4591 delta
= gethrtime() - fio
->io_timestamp
;
4592 if (delta
> spa_deadman_synctime(spa
))
4593 zio_deadman(fio
, tag
);
4595 mutex_exit(&vq
->vq_lock
);
4600 vdev_set_deferred_resilver(spa_t
*spa
, vdev_t
*vd
)
4602 for (uint64_t i
= 0; i
< vd
->vdev_children
; i
++)
4603 vdev_set_deferred_resilver(spa
, vd
->vdev_child
[i
]);
4605 if (!vd
->vdev_ops
->vdev_op_leaf
|| !vdev_writeable(vd
) ||
4606 range_tree_is_empty(vd
->vdev_dtl
[DTL_MISSING
])) {
4610 vd
->vdev_resilver_deferred
= B_TRUE
;
4611 spa
->spa_resilver_deferred
= B_TRUE
;
4614 #if defined(_KERNEL)
4615 EXPORT_SYMBOL(vdev_fault
);
4616 EXPORT_SYMBOL(vdev_degrade
);
4617 EXPORT_SYMBOL(vdev_online
);
4618 EXPORT_SYMBOL(vdev_offline
);
4619 EXPORT_SYMBOL(vdev_clear
);
4621 module_param(vdev_max_ms_count
, int, 0644);
4622 MODULE_PARM_DESC(vdev_max_ms_count
,
4623 "Target number of metaslabs per top-level vdev");
4625 module_param(vdev_min_ms_count
, int, 0644);
4626 MODULE_PARM_DESC(vdev_min_ms_count
,
4627 "Minimum number of metaslabs per top-level vdev");
4629 module_param(vdev_ms_count_limit
, int, 0644);
4630 MODULE_PARM_DESC(vdev_ms_count_limit
,
4631 "Practical upper limit of total metaslabs per top-level vdev");
4633 module_param(zfs_delays_per_second
, uint
, 0644);
4634 MODULE_PARM_DESC(zfs_delays_per_second
, "Rate limit delay events to this many "
4635 "IO delays per second");
4637 module_param(zfs_checksums_per_second
, uint
, 0644);
4638 MODULE_PARM_DESC(zfs_checksums_per_second
, "Rate limit checksum events "
4639 "to this many checksum errors per second (do not set below zed"
4642 module_param(zfs_scan_ignore_errors
, int, 0644);
4643 MODULE_PARM_DESC(zfs_scan_ignore_errors
,
4644 "Ignore errors during resilver/scrub");
4646 module_param(vdev_validate_skip
, int, 0644);
4647 MODULE_PARM_DESC(vdev_validate_skip
,
4648 "Bypass vdev_validate()");