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