From: Yuri Pankov Date: Thu, 7 Mar 2013 01:57:09 +0000 (-0800) Subject: Illumos #3517 X-Git-Tag: zfs-0.6.3~221 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7011fb6004b2227ff9e89894ed69ab83d36c1696;p=zfs Illumos #3517 3517 importing pool with autoreplace=on and "hole" vdevs crashes syseventd Reviewed by: Albert Lee Reviewed by: Jeffry Molanus Reviewed by: George Wilson Approved by: Christopher Siden References: https://www.illumos.org/issues/3517 illumos/illumos-gate@efb4a871d8fd510a833bdca610528dde5ed69e42 Ported-by: Richard Yao Signed-off-by: Brian Behlendorf Issue #1775 --- diff --git a/module/zfs/spa.c b/module/zfs/spa.c index b400896c2..76daaf627 100644 --- a/module/zfs/spa.c +++ b/module/zfs/spa.c @@ -21,8 +21,8 @@ /* * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. - * Copyright 2011 Nexenta Systems, Inc. All rights reserved. * Copyright (c) 2012 by Delphix. All rights reserved. + * Copyright 2013 Nexenta Systems, Inc. All rights reserved. */ /* @@ -1597,7 +1597,8 @@ spa_check_removed(vdev_t *vd) for (c = 0; c < vd->vdev_children; c++) spa_check_removed(vd->vdev_child[c]); - if (vd->vdev_ops->vdev_op_leaf && vdev_is_dead(vd)) { + if (vd->vdev_ops->vdev_op_leaf && vdev_is_dead(vd) && + !vd->vdev_ishole) { zfs_ereport_post(FM_EREPORT_RESOURCE_AUTOREPLACE, vd->vdev_spa, vd, NULL, 0, 0); spa_event_notify(vd->vdev_spa, vd, FM_EREPORT_ZFS_DEVICE_CHECK);