]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c
MFC r334844, r336180, r336458
[FreeBSD/FreeBSD.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / vdev_mirror.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25
26 /*
27  * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
28  */
29
30 #include <sys/zfs_context.h>
31 #include <sys/spa.h>
32 #include <sys/spa_impl.h>
33 #include <sys/dsl_pool.h>
34 #include <sys/dsl_scan.h>
35 #include <sys/vdev_impl.h>
36 #include <sys/zio.h>
37 #include <sys/abd.h>
38 #include <sys/fs/zfs.h>
39
40 /*
41  * Virtual device vector for mirroring.
42  */
43
44 typedef struct mirror_child {
45         vdev_t          *mc_vd;
46         uint64_t        mc_offset;
47         int             mc_error;
48         int             mc_load;
49         uint8_t         mc_tried;
50         uint8_t         mc_skipped;
51         uint8_t         mc_speculative;
52 } mirror_child_t;
53
54 typedef struct mirror_map {
55         int             *mm_preferred;
56         int             mm_preferred_cnt;
57         int             mm_children;
58         boolean_t       mm_resilvering;
59         boolean_t       mm_root;
60         mirror_child_t  mm_child[];
61 } mirror_map_t;
62
63 static int vdev_mirror_shift = 21;
64
65 #ifdef _KERNEL
66 SYSCTL_DECL(_vfs_zfs_vdev);
67 static SYSCTL_NODE(_vfs_zfs_vdev, OID_AUTO, mirror, CTLFLAG_RD, 0,
68     "ZFS VDEV Mirror");
69 #endif
70
71 /*
72  * The load configuration settings below are tuned by default for
73  * the case where all devices are of the same rotational type.
74  *
75  * If there is a mixture of rotating and non-rotating media, setting
76  * non_rotating_seek_inc to 0 may well provide better results as it
77  * will direct more reads to the non-rotating vdevs which are more
78  * likely to have a higher performance.
79  */
80
81 /* Rotating media load calculation configuration. */
82 static int rotating_inc = 0;
83 #ifdef _KERNEL
84 SYSCTL_INT(_vfs_zfs_vdev_mirror, OID_AUTO, rotating_inc, CTLFLAG_RWTUN,
85     &rotating_inc, 0, "Rotating media load increment for non-seeking I/O's");
86 #endif
87
88 static int rotating_seek_inc = 5;
89 #ifdef _KERNEL
90 SYSCTL_INT(_vfs_zfs_vdev_mirror, OID_AUTO, rotating_seek_inc, CTLFLAG_RWTUN,
91     &rotating_seek_inc, 0, "Rotating media load increment for seeking I/O's");
92 #endif
93
94 static int rotating_seek_offset = 1 * 1024 * 1024;
95 #ifdef _KERNEL
96 SYSCTL_INT(_vfs_zfs_vdev_mirror, OID_AUTO, rotating_seek_offset, CTLFLAG_RWTUN,
97     &rotating_seek_offset, 0, "Offset in bytes from the last I/O which "
98     "triggers a reduced rotating media seek increment");
99 #endif
100
101 /* Non-rotating media load calculation configuration. */
102 static int non_rotating_inc = 0;
103 #ifdef _KERNEL
104 SYSCTL_INT(_vfs_zfs_vdev_mirror, OID_AUTO, non_rotating_inc, CTLFLAG_RWTUN,
105     &non_rotating_inc, 0,
106     "Non-rotating media load increment for non-seeking I/O's");
107 #endif
108
109 static int non_rotating_seek_inc = 1;
110 #ifdef _KERNEL
111 SYSCTL_INT(_vfs_zfs_vdev_mirror, OID_AUTO, non_rotating_seek_inc, CTLFLAG_RWTUN,
112     &non_rotating_seek_inc, 0,
113     "Non-rotating media load increment for seeking I/O's");
114 #endif
115
116
117 static inline size_t
118 vdev_mirror_map_size(int children)
119 {
120         return (offsetof(mirror_map_t, mm_child[children]) +
121             sizeof(int) * children);
122 }
123
124 static inline mirror_map_t *
125 vdev_mirror_map_alloc(int children, boolean_t resilvering, boolean_t root)
126 {
127         mirror_map_t *mm;
128
129         mm = kmem_zalloc(vdev_mirror_map_size(children), KM_SLEEP);
130         mm->mm_children = children;
131         mm->mm_resilvering = resilvering;
132         mm->mm_root = root;
133         mm->mm_preferred = (int *)((uintptr_t)mm + 
134             offsetof(mirror_map_t, mm_child[children]));
135
136         return mm;
137 }
138
139 static void
140 vdev_mirror_map_free(zio_t *zio)
141 {
142         mirror_map_t *mm = zio->io_vsd;
143
144         kmem_free(mm, vdev_mirror_map_size(mm->mm_children));
145 }
146
147 static const zio_vsd_ops_t vdev_mirror_vsd_ops = {
148         vdev_mirror_map_free,
149         zio_vsd_default_cksum_report
150 };
151
152 static int
153 vdev_mirror_load(mirror_map_t *mm, vdev_t *vd, uint64_t zio_offset)
154 {
155         uint64_t lastoffset;
156         int load;
157
158         /* All DVAs have equal weight at the root. */
159         if (mm->mm_root)
160                 return (INT_MAX);
161
162         /*
163          * We don't return INT_MAX if the device is resilvering i.e.
164          * vdev_resilver_txg != 0 as when tested performance was slightly
165          * worse overall when resilvering with compared to without.
166          */
167
168         /* Standard load based on pending queue length. */
169         load = vdev_queue_length(vd);
170         lastoffset = vdev_queue_lastoffset(vd);
171
172         if (vd->vdev_rotation_rate == VDEV_RATE_NON_ROTATING) {
173                 /* Non-rotating media. */
174                 if (lastoffset == zio_offset)
175                         return (load + non_rotating_inc);
176
177                 /*
178                  * Apply a seek penalty even for non-rotating devices as
179                  * sequential I/O'a can be aggregated into fewer operations
180                  * on the device, thus avoiding unnecessary per-command
181                  * overhead and boosting performance.
182                  */
183                 return (load + non_rotating_seek_inc);
184         }
185
186         /* Rotating media I/O's which directly follow the last I/O. */
187         if (lastoffset == zio_offset)
188                 return (load + rotating_inc);
189
190         /*
191          * Apply half the seek increment to I/O's within seek offset
192          * of the last I/O queued to this vdev as they should incure less
193          * of a seek increment.
194          */
195         if (ABS(lastoffset - zio_offset) < rotating_seek_offset)
196                 return (load + (rotating_seek_inc / 2));
197
198         /* Apply the full seek increment to all other I/O's. */
199         return (load + rotating_seek_inc);
200 }
201
202
203 static mirror_map_t *
204 vdev_mirror_map_init(zio_t *zio)
205 {
206         mirror_map_t *mm = NULL;
207         mirror_child_t *mc;
208         vdev_t *vd = zio->io_vd;
209         int c;
210
211         if (vd == NULL) {
212                 dva_t *dva = zio->io_bp->blk_dva;
213                 spa_t *spa = zio->io_spa;
214                 dva_t dva_copy[SPA_DVAS_PER_BP];
215
216                 c = BP_GET_NDVAS(zio->io_bp);
217
218                 /*
219                  * If we do not trust the pool config, some DVAs might be
220                  * invalid or point to vdevs that do not exist. We skip them.
221                  */
222                 if (!spa_trust_config(spa)) {
223                         ASSERT3U(zio->io_type, ==, ZIO_TYPE_READ);
224                         int j = 0;
225                         for (int i = 0; i < c; i++) {
226                                 if (zfs_dva_valid(spa, &dva[i], zio->io_bp))
227                                         dva_copy[j++] = dva[i];
228                         }
229                         if (j == 0) {
230                                 zio->io_vsd = NULL;
231                                 zio->io_error = ENXIO;
232                                 return (NULL);
233                         }
234                         if (j < c) {
235                                 dva = dva_copy;
236                                 c = j;
237                         }
238                 }
239
240                 mm = vdev_mirror_map_alloc(c, B_FALSE, B_TRUE);
241
242                 for (c = 0; c < mm->mm_children; c++) {
243                         mc = &mm->mm_child[c];
244                         mc->mc_vd = vdev_lookup_top(spa, DVA_GET_VDEV(&dva[c]));
245                         mc->mc_offset = DVA_GET_OFFSET(&dva[c]);
246                 }
247         } else {
248                 /*
249                  * If we are resilvering, then we should handle scrub reads
250                  * differently; we shouldn't issue them to the resilvering
251                  * device because it might not have those blocks.
252                  *
253                  * We are resilvering iff:
254                  * 1) We are a replacing vdev (ie our name is "replacing-1" or
255                  *    "spare-1" or something like that), and
256                  * 2) The pool is currently being resilvered.
257                  *
258                  * We cannot simply check vd->vdev_resilver_txg, because it's
259                  * not set in this path.
260                  *
261                  * Nor can we just check our vdev_ops; there are cases (such as
262                  * when a user types "zpool replace pool odev spare_dev" and
263                  * spare_dev is in the spare list, or when a spare device is
264                  * automatically used to replace a DEGRADED device) when
265                  * resilvering is complete but both the original vdev and the
266                  * spare vdev remain in the pool.  That behavior is intentional.
267                  * It helps implement the policy that a spare should be
268                  * automatically removed from the pool after the user replaces
269                  * the device that originally failed.
270                  *
271                  * If a spa load is in progress, then spa_dsl_pool may be
272                  * uninitialized.  But we shouldn't be resilvering during a spa
273                  * load anyway.
274                  */
275                 boolean_t replacing = (vd->vdev_ops == &vdev_replacing_ops ||
276                     vd->vdev_ops == &vdev_spare_ops) &&
277                     spa_load_state(vd->vdev_spa) == SPA_LOAD_NONE &&
278                     dsl_scan_resilvering(vd->vdev_spa->spa_dsl_pool);           
279                 mm = vdev_mirror_map_alloc(vd->vdev_children, replacing,
280                     B_FALSE);
281                 for (c = 0; c < mm->mm_children; c++) {
282                         mc = &mm->mm_child[c];
283                         mc->mc_vd = vd->vdev_child[c];
284                         mc->mc_offset = zio->io_offset;
285                 }
286         }
287
288         zio->io_vsd = mm;
289         zio->io_vsd_ops = &vdev_mirror_vsd_ops;
290         return (mm);
291 }
292
293 static int
294 vdev_mirror_open(vdev_t *vd, uint64_t *asize, uint64_t *max_asize,
295     uint64_t *logical_ashift, uint64_t *physical_ashift)
296 {
297         int numerrors = 0;
298         int lasterror = 0;
299
300         if (vd->vdev_children == 0) {
301                 vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
302                 return (SET_ERROR(EINVAL));
303         }
304
305         vdev_open_children(vd);
306
307         for (int c = 0; c < vd->vdev_children; c++) {
308                 vdev_t *cvd = vd->vdev_child[c];
309
310                 if (cvd->vdev_open_error) {
311                         lasterror = cvd->vdev_open_error;
312                         numerrors++;
313                         continue;
314                 }
315
316                 *asize = MIN(*asize - 1, cvd->vdev_asize - 1) + 1;
317                 *max_asize = MIN(*max_asize - 1, cvd->vdev_max_asize - 1) + 1;
318                 *logical_ashift = MAX(*logical_ashift, cvd->vdev_ashift);
319                 *physical_ashift = MAX(*physical_ashift,
320                     cvd->vdev_physical_ashift);
321         }
322
323         if (numerrors == vd->vdev_children) {
324                 if (vdev_children_are_offline(vd))
325                         vd->vdev_stat.vs_aux = VDEV_AUX_CHILDREN_OFFLINE;
326                 else
327                         vd->vdev_stat.vs_aux = VDEV_AUX_NO_REPLICAS;
328                 return (lasterror);
329         }
330
331         return (0);
332 }
333
334 static void
335 vdev_mirror_close(vdev_t *vd)
336 {
337         for (int c = 0; c < vd->vdev_children; c++)
338                 vdev_close(vd->vdev_child[c]);
339 }
340
341 static void
342 vdev_mirror_child_done(zio_t *zio)
343 {
344         mirror_child_t *mc = zio->io_private;
345
346         mc->mc_error = zio->io_error;
347         mc->mc_tried = 1;
348         mc->mc_skipped = 0;
349 }
350
351 static void
352 vdev_mirror_scrub_done(zio_t *zio)
353 {
354         mirror_child_t *mc = zio->io_private;
355
356         if (zio->io_error == 0) {
357                 zio_t *pio;
358                 zio_link_t *zl = NULL;
359
360                 mutex_enter(&zio->io_lock);
361                 while ((pio = zio_walk_parents(zio, &zl)) != NULL) {
362                         mutex_enter(&pio->io_lock);
363                         ASSERT3U(zio->io_size, >=, pio->io_size);
364                         abd_copy(pio->io_abd, zio->io_abd, pio->io_size);
365                         mutex_exit(&pio->io_lock);
366                 }
367                 mutex_exit(&zio->io_lock);
368         }
369         abd_free(zio->io_abd);
370
371         mc->mc_error = zio->io_error;
372         mc->mc_tried = 1;
373         mc->mc_skipped = 0;
374 }
375
376 /*
377  * Check the other, lower-index DVAs to see if they're on the same
378  * vdev as the child we picked.  If they are, use them since they
379  * are likely to have been allocated from the primary metaslab in
380  * use at the time, and hence are more likely to have locality with
381  * single-copy data.
382  */
383 static int
384 vdev_mirror_dva_select(zio_t *zio, int p)
385 {
386         dva_t *dva = zio->io_bp->blk_dva;
387         mirror_map_t *mm = zio->io_vsd;
388         int preferred;
389         int c;
390
391         preferred = mm->mm_preferred[p];
392         for (p-- ; p >= 0; p--) {
393                 c = mm->mm_preferred[p];
394                 if (DVA_GET_VDEV(&dva[c]) == DVA_GET_VDEV(&dva[preferred]))
395                         preferred = c;
396         }
397         return (preferred);
398 }
399
400 static int
401 vdev_mirror_preferred_child_randomize(zio_t *zio)
402 {
403         mirror_map_t *mm = zio->io_vsd;
404         int p;
405
406         if (mm->mm_root) {
407                 p = spa_get_random(mm->mm_preferred_cnt);
408                 return (vdev_mirror_dva_select(zio, p));
409         }
410
411         /*
412          * To ensure we don't always favour the first matching vdev,
413          * which could lead to wear leveling issues on SSD's, we
414          * use the I/O offset as a pseudo random seed into the vdevs
415          * which have the lowest load.
416          */
417         p = (zio->io_offset >> vdev_mirror_shift) % mm->mm_preferred_cnt;
418         return (mm->mm_preferred[p]);
419 }
420
421 /*
422  * Try to find a vdev whose DTL doesn't contain the block we want to read
423  * prefering vdevs based on determined load.
424  *
425  * If we can't, try the read on any vdev we haven't already tried.
426  */
427 static int
428 vdev_mirror_child_select(zio_t *zio)
429 {
430         mirror_map_t *mm = zio->io_vsd;
431         uint64_t txg = zio->io_txg;
432         int c, lowest_load;
433
434         ASSERT(zio->io_bp == NULL || BP_PHYSICAL_BIRTH(zio->io_bp) == txg);
435
436         lowest_load = INT_MAX;
437         mm->mm_preferred_cnt = 0;
438         for (c = 0; c < mm->mm_children; c++) {
439                 mirror_child_t *mc;
440
441                 mc = &mm->mm_child[c];
442                 if (mc->mc_tried || mc->mc_skipped)
443                         continue;
444
445                 if (!vdev_readable(mc->mc_vd)) {
446                         mc->mc_error = SET_ERROR(ENXIO);
447                         mc->mc_tried = 1;       /* don't even try */
448                         mc->mc_skipped = 1;
449                         continue;
450                 }
451
452                 if (vdev_dtl_contains(mc->mc_vd, DTL_MISSING, txg, 1)) {
453                         mc->mc_error = SET_ERROR(ESTALE);
454                         mc->mc_skipped = 1;
455                         mc->mc_speculative = 1;
456                         continue;
457                 }
458
459                 mc->mc_load = vdev_mirror_load(mm, mc->mc_vd, mc->mc_offset);
460                 if (mc->mc_load > lowest_load)
461                         continue;
462
463                 if (mc->mc_load < lowest_load) {
464                         lowest_load = mc->mc_load;
465                         mm->mm_preferred_cnt = 0;
466                 }
467                 mm->mm_preferred[mm->mm_preferred_cnt] = c;
468                 mm->mm_preferred_cnt++;
469         }
470
471         if (mm->mm_preferred_cnt == 1) {
472                 vdev_queue_register_lastoffset(
473                     mm->mm_child[mm->mm_preferred[0]].mc_vd, zio);
474                 return (mm->mm_preferred[0]);
475         }
476
477         if (mm->mm_preferred_cnt > 1) {
478                 int c = vdev_mirror_preferred_child_randomize(zio);
479
480                 vdev_queue_register_lastoffset(mm->mm_child[c].mc_vd, zio);
481                 return (c);
482         }
483
484         /*
485          * Every device is either missing or has this txg in its DTL.
486          * Look for any child we haven't already tried before giving up.
487          */
488         for (c = 0; c < mm->mm_children; c++) {
489                 if (!mm->mm_child[c].mc_tried) {
490                         vdev_queue_register_lastoffset(mm->mm_child[c].mc_vd,
491                             zio);
492                         return (c);
493                 }
494         }
495
496         /*
497          * Every child failed.  There's no place left to look.
498          */
499         return (-1);
500 }
501
502 static void
503 vdev_mirror_io_start(zio_t *zio)
504 {
505         mirror_map_t *mm;
506         mirror_child_t *mc;
507         int c, children;
508
509         mm = vdev_mirror_map_init(zio);
510
511         if (mm == NULL) {
512                 ASSERT(!spa_trust_config(zio->io_spa));
513                 ASSERT(zio->io_type == ZIO_TYPE_READ);
514                 zio_execute(zio);
515                 return;
516         }
517
518         if (zio->io_type == ZIO_TYPE_READ) {
519                 if ((zio->io_flags & ZIO_FLAG_SCRUB) && !mm->mm_resilvering &&
520                     mm->mm_children > 1) {
521                         /*
522                          * For scrubbing reads we need to allocate a read
523                          * buffer for each child and issue reads to all
524                          * children.  If any child succeeds, it will copy its
525                          * data into zio->io_data in vdev_mirror_scrub_done.
526                          */
527                         for (c = 0; c < mm->mm_children; c++) {
528                                 mc = &mm->mm_child[c];
529                                 zio_nowait(zio_vdev_child_io(zio, zio->io_bp,
530                                     mc->mc_vd, mc->mc_offset,
531                                     abd_alloc_sametype(zio->io_abd,
532                                     zio->io_size), zio->io_size,
533                                     zio->io_type, zio->io_priority, 0,
534                                     vdev_mirror_scrub_done, mc));
535                         }
536                         zio_execute(zio);
537                         return;
538                 }
539                 /*
540                  * For normal reads just pick one child.
541                  */
542                 c = vdev_mirror_child_select(zio);
543                 children = (c >= 0);
544         } else {
545                 ASSERT(zio->io_type == ZIO_TYPE_WRITE ||
546                     zio->io_type == ZIO_TYPE_FREE);
547
548                 /*
549                  * Writes and frees go to all children.
550                  */
551                 c = 0;
552                 children = mm->mm_children;
553         }
554
555         while (children--) {
556                 mc = &mm->mm_child[c];
557                 zio_nowait(zio_vdev_child_io(zio, zio->io_bp,
558                     mc->mc_vd, mc->mc_offset, zio->io_abd, zio->io_size,
559                     zio->io_type, zio->io_priority, 0,
560                     vdev_mirror_child_done, mc));
561                 c++;
562         }
563
564         zio_execute(zio);
565 }
566
567 static int
568 vdev_mirror_worst_error(mirror_map_t *mm)
569 {
570         int error[2] = { 0, 0 };
571
572         for (int c = 0; c < mm->mm_children; c++) {
573                 mirror_child_t *mc = &mm->mm_child[c];
574                 int s = mc->mc_speculative;
575                 error[s] = zio_worst_error(error[s], mc->mc_error);
576         }
577
578         return (error[0] ? error[0] : error[1]);
579 }
580
581 static void
582 vdev_mirror_io_done(zio_t *zio)
583 {
584         mirror_map_t *mm = zio->io_vsd;
585         mirror_child_t *mc;
586         int c;
587         int good_copies = 0;
588         int unexpected_errors = 0;
589
590         if (mm == NULL)
591                 return;
592
593         for (c = 0; c < mm->mm_children; c++) {
594                 mc = &mm->mm_child[c];
595
596                 if (mc->mc_error) {
597                         if (!mc->mc_skipped)
598                                 unexpected_errors++;
599                 } else if (mc->mc_tried) {
600                         good_copies++;
601                 }
602         }
603
604         if (zio->io_type == ZIO_TYPE_WRITE) {
605                 /*
606                  * XXX -- for now, treat partial writes as success.
607                  *
608                  * Now that we support write reallocation, it would be better
609                  * to treat partial failure as real failure unless there are
610                  * no non-degraded top-level vdevs left, and not update DTLs
611                  * if we intend to reallocate.
612                  */
613                 /* XXPOLICY */
614                 if (good_copies != mm->mm_children) {
615                         /*
616                          * Always require at least one good copy.
617                          *
618                          * For ditto blocks (io_vd == NULL), require
619                          * all copies to be good.
620                          *
621                          * XXX -- for replacing vdevs, there's no great answer.
622                          * If the old device is really dead, we may not even
623                          * be able to access it -- so we only want to
624                          * require good writes to the new device.  But if
625                          * the new device turns out to be flaky, we want
626                          * to be able to detach it -- which requires all
627                          * writes to the old device to have succeeded.
628                          */
629                         if (good_copies == 0 || zio->io_vd == NULL)
630                                 zio->io_error = vdev_mirror_worst_error(mm);
631                 }
632                 return;
633         } else if (zio->io_type == ZIO_TYPE_FREE) {
634                 return;
635         }
636
637         ASSERT(zio->io_type == ZIO_TYPE_READ);
638
639         /*
640          * If we don't have a good copy yet, keep trying other children.
641          */
642         /* XXPOLICY */
643         if (good_copies == 0 && (c = vdev_mirror_child_select(zio)) != -1) {
644                 ASSERT(c >= 0 && c < mm->mm_children);
645                 mc = &mm->mm_child[c];
646                 zio_vdev_io_redone(zio);
647                 zio_nowait(zio_vdev_child_io(zio, zio->io_bp,
648                     mc->mc_vd, mc->mc_offset, zio->io_abd, zio->io_size,
649                     ZIO_TYPE_READ, zio->io_priority, 0,
650                     vdev_mirror_child_done, mc));
651                 return;
652         }
653
654         /* XXPOLICY */
655         if (good_copies == 0) {
656                 zio->io_error = vdev_mirror_worst_error(mm);
657                 ASSERT(zio->io_error != 0);
658         }
659
660         if (good_copies && spa_writeable(zio->io_spa) &&
661             (unexpected_errors ||
662             (zio->io_flags & ZIO_FLAG_RESILVER) ||
663             ((zio->io_flags & ZIO_FLAG_SCRUB) && mm->mm_resilvering))) {
664                 /*
665                  * Use the good data we have in hand to repair damaged children.
666                  */
667                 for (c = 0; c < mm->mm_children; c++) {
668                         /*
669                          * Don't rewrite known good children.
670                          * Not only is it unnecessary, it could
671                          * actually be harmful: if the system lost
672                          * power while rewriting the only good copy,
673                          * there would be no good copies left!
674                          */
675                         mc = &mm->mm_child[c];
676
677                         if (mc->mc_error == 0) {
678                                 if (mc->mc_tried)
679                                         continue;
680                                 if (!(zio->io_flags & ZIO_FLAG_SCRUB) &&
681                                     !vdev_dtl_contains(mc->mc_vd, DTL_PARTIAL,
682                                     zio->io_txg, 1))
683                                         continue;
684                                 mc->mc_error = SET_ERROR(ESTALE);
685                         }
686
687                         zio_nowait(zio_vdev_child_io(zio, zio->io_bp,
688                             mc->mc_vd, mc->mc_offset,
689                             zio->io_abd, zio->io_size,
690                             ZIO_TYPE_WRITE, ZIO_PRIORITY_ASYNC_WRITE,
691                             ZIO_FLAG_IO_REPAIR | (unexpected_errors ?
692                             ZIO_FLAG_SELF_HEAL : 0), NULL, NULL));
693                 }
694         }
695 }
696
697 static void
698 vdev_mirror_state_change(vdev_t *vd, int faulted, int degraded)
699 {
700         if (faulted == vd->vdev_children) {
701                 if (vdev_children_are_offline(vd)) {
702                         vdev_set_state(vd, B_FALSE, VDEV_STATE_OFFLINE,
703                             VDEV_AUX_CHILDREN_OFFLINE);
704                 } else {
705                         vdev_set_state(vd, B_FALSE, VDEV_STATE_CANT_OPEN,
706                             VDEV_AUX_NO_REPLICAS);
707                 }
708         } else if (degraded + faulted != 0) {
709                 vdev_set_state(vd, B_FALSE, VDEV_STATE_DEGRADED, VDEV_AUX_NONE);
710         } else {
711                 vdev_set_state(vd, B_FALSE, VDEV_STATE_HEALTHY, VDEV_AUX_NONE);
712         }
713 }
714
715 vdev_ops_t vdev_mirror_ops = {
716         vdev_mirror_open,
717         vdev_mirror_close,
718         vdev_default_asize,
719         vdev_mirror_io_start,
720         vdev_mirror_io_done,
721         vdev_mirror_state_change,
722         NULL,
723         NULL,
724         NULL,
725         NULL,
726         VDEV_TYPE_MIRROR,       /* name of this vdev type */
727         B_FALSE                 /* not a leaf vdev */
728 };
729
730 vdev_ops_t vdev_replacing_ops = {
731         vdev_mirror_open,
732         vdev_mirror_close,
733         vdev_default_asize,
734         vdev_mirror_io_start,
735         vdev_mirror_io_done,
736         vdev_mirror_state_change,
737         NULL,
738         NULL,
739         NULL,
740         NULL,
741         VDEV_TYPE_REPLACING,    /* name of this vdev type */
742         B_FALSE                 /* not a leaf vdev */
743 };
744
745 vdev_ops_t vdev_spare_ops = {
746         vdev_mirror_open,
747         vdev_mirror_close,
748         vdev_default_asize,
749         vdev_mirror_io_start,
750         vdev_mirror_io_done,
751         vdev_mirror_state_change,
752         NULL,
753         NULL,
754         NULL,
755         NULL,
756         VDEV_TYPE_SPARE,        /* name of this vdev type */
757         B_FALSE                 /* not a leaf vdev */
758 };