/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Copyright (c) 2013 by Delphix. All rights reserved.
*/
#include <sys/zfs_context.h>
#include <sys/vdev_impl.h>
/*
* Virtual device vector for the pool's root vdev.
*/
/*
* We should be able to tolerate one failure with absolutely no damage
* to our metadata. Two failures will take out space maps, a bunch of
* indirect block trees, meta dnodes, dnodes, etc. Probably not a happy
* place to live. When we get smarter, we can liberalize this policy.
* e.g. If we haven't lost two consecutive top-level vdevs, then we are
* future guesswork more accurate.
*/
static int
{
return (numerrors > 0);
}
static int
{
int lasterror = 0;
int numerrors = 0;
if (vd->vdev_children == 0) {
}
for (int c = 0; c < vd->vdev_children; c++) {
numerrors++;
}
}
return (lasterror);
}
*asize = 0;
*max_asize = 0;
*ashift = 0;
return (0);
}
static void
{
for (int c = 0; c < vd->vdev_children; c++)
}
static void
{
} else if (degraded) {
} else {
}
}
NULL, /* io_start - not applicable to the root */
NULL, /* io_done - not applicable to the root */
NULL,
NULL,
VDEV_TYPE_ROOT, /* name of this vdev type */
B_FALSE /* not a leaf vdev */
};