usr/src/uts/common/fs/zfs/vdev_disk.c
author Jeff Bonwick <Jeff.Bonwick@Sun.COM>
Thu, 29 Apr 2010 13:37:53 -0700
changeset 12285 d736d62dcca2
parent 12247 5bcd281629f8
child 13570 3411fd5f1589
permissions -rw-r--r--
6944833 Avoid prefetching dbufs in dmu_sync() path
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
     5
 * Common Development and Distribution License (the "License").
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    21
/*
12208
008d9e6b6072 6931570 Add flash devices' VID/PID to disk table to advertising 4K physical sector size.
bo zhou - Sun Microsystems - Beijing China <Bo.Zhou@Sun.COM>
parents: 11958
diff changeset
    22
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
#include <sys/zfs_context.h>
11958
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    26
#include <sys/spa_impl.h>
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
    27
#include <sys/refcount.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
#include <sys/vdev_disk.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <sys/vdev_impl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
#include <sys/fs/zfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/zio.h>
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
    32
#include <sys/sunldi.h>
6976
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
    33
#include <sys/fm/fs/zfs.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
 * Virtual device vector for disks.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
extern ldi_ident_t zfs_li;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
typedef struct vdev_disk_buf {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
	buf_t	vdb_buf;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
	zio_t	*vdb_io;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
} vdev_disk_buf_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
11958
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    46
static void
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    47
vdev_disk_hold(vdev_t *vd)
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    48
{
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    49
	ddi_devid_t devid;
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    50
	char *minor;
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    51
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    52
	ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    53
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    54
	/*
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    55
	 * We must have a pathname, and it must be absolute.
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    56
	 */
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    57
	if (vd->vdev_path == NULL || vd->vdev_path[0] != '/')
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    58
		return;
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    59
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    60
	/*
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    61
	 * Only prefetch path and devid info if the device has
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    62
	 * never been opened.
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    63
	 */
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    64
	if (vd->vdev_tsd != NULL)
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    65
		return;
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    66
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    67
	if (vd->vdev_wholedisk == -1ULL) {
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    68
		size_t len = strlen(vd->vdev_path) + 3;
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    69
		char *buf = kmem_alloc(len, KM_SLEEP);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    70
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    71
		(void) snprintf(buf, len, "%ss0", vd->vdev_path);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    72
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    73
		(void) ldi_vp_from_name(buf, &vd->vdev_name_vp);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    74
		kmem_free(buf, len);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    75
	}
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    76
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    77
	if (vd->vdev_name_vp == NULL)
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    78
		(void) ldi_vp_from_name(vd->vdev_path, &vd->vdev_name_vp);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    79
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    80
	if (vd->vdev_devid != NULL &&
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    81
	    ddi_devid_str_decode(vd->vdev_devid, &devid, &minor) == 0) {
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    82
		(void) ldi_vp_from_devid(devid, minor, &vd->vdev_devid_vp);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    83
		ddi_devid_str_free(minor);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    84
		ddi_devid_free(devid);
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    85
	}
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    86
}
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    87
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    88
static void
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    89
vdev_disk_rele(vdev_t *vd)
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    90
{
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    91
	ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    92
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    93
	if (vd->vdev_name_vp) {
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    94
		VN_RELE_ASYNC(vd->vdev_name_vp,
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    95
		    dsl_pool_vnrele_taskq(vd->vdev_spa->spa_dsl_pool));
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    96
		vd->vdev_name_vp = NULL;
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    97
	}
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    98
	if (vd->vdev_devid_vp) {
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
    99
		VN_RELE_ASYNC(vd->vdev_devid_vp,
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
   100
		    dsl_pool_vnrele_taskq(vd->vdev_spa->spa_dsl_pool));
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
   101
		vd->vdev_devid_vp = NULL;
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
   102
	}
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
   103
}
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
   104
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   105
static int
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   106
vdev_disk_open(vdev_t *vd, uint64_t *psize, uint64_t *ashift)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   107
{
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   108
	spa_t *spa = vd->vdev_spa;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
	vdev_disk_t *dvd;
12208
008d9e6b6072 6931570 Add flash devices' VID/PID to disk table to advertising 4K physical sector size.
bo zhou - Sun Microsystems - Beijing China <Bo.Zhou@Sun.COM>
parents: 11958
diff changeset
   110
	struct dk_minfo_ext dkmext;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   111
	int error;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   112
	dev_t dev;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   113
	int otyp;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   114
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
	 * We must have a pathname, and it must be absolute.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   117
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   118
	if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
		vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   120
		return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   121
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
10850
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   123
	/*
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   124
	 * Reopen the device if it's not currently open. Otherwise,
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   125
	 * just update the physical size of the device.
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   126
	 */
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   127
	if (vd->vdev_tsd != NULL) {
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   128
		ASSERT(vd->vdev_reopening);
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   129
		dvd = vd->vdev_tsd;
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   130
		goto skip_open;
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   131
	}
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   132
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   133
	dvd = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   134
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   135
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
	 * When opening a disk device, we want to preserve the user's original
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
	 * intent.  We always want to open the device by the path the user gave
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   138
	 * us, even if it is one of multiple paths to the save device.  But we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   139
	 * also want to be able to survive disks being removed/recabled.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   140
	 * Therefore the sequence of opening devices is:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   141
	 *
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   142
	 * 1. Try opening the device by path.  For legacy pools without the
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   143
	 *    'whole_disk' property, attempt to fix the path by appending 's0'.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   144
	 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   145
	 * 2. If the devid of the device matches the stored value, return
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   146
	 *    success.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   147
	 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   148
	 * 3. Otherwise, the device may have moved.  Try opening the device
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   149
	 *    by the devid instead.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   150
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   151
	if (vd->vdev_devid != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   152
		if (ddi_devid_str_decode(vd->vdev_devid, &dvd->vd_devid,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   153
		    &dvd->vd_minor) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   154
			vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   155
			return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   156
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   157
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   158
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   159
	error = EINVAL;		/* presume failure */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   160
10850
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   161
	if (vd->vdev_path != NULL) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   162
		ddi_devid_t devid;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   163
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   164
		if (vd->vdev_wholedisk == -1ULL) {
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   165
			size_t len = strlen(vd->vdev_path) + 3;
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   166
			char *buf = kmem_alloc(len, KM_SLEEP);
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   167
			ldi_handle_t lh;
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   168
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   169
			(void) snprintf(buf, len, "%ss0", vd->vdev_path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   170
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   171
			if (ldi_open_by_name(buf, spa_mode(spa), kcred,
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   172
			    &lh, zfs_li) == 0) {
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   173
				spa_strfree(vd->vdev_path);
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   174
				vd->vdev_path = buf;
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   175
				vd->vdev_wholedisk = 1ULL;
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   176
				(void) ldi_close(lh, spa_mode(spa), kcred);
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   177
			} else {
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   178
				kmem_free(buf, len);
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   179
			}
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   180
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   181
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   182
		error = ldi_open_by_name(vd->vdev_path, spa_mode(spa), kcred,
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   183
		    &dvd->vd_lh, zfs_li);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   184
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   185
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   186
		 * Compare the devid to the stored value.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   187
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   188
		if (error == 0 && vd->vdev_devid != NULL &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   189
		    ldi_get_devid(dvd->vd_lh, &devid) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   190
			if (ddi_devid_compare(devid, dvd->vd_devid) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   191
				error = EINVAL;
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   192
				(void) ldi_close(dvd->vd_lh, spa_mode(spa),
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   193
				    kcred);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   194
				dvd->vd_lh = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   195
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   196
			ddi_devid_free(devid);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   197
		}
1171
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   198
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   199
		/*
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   200
		 * If we succeeded in opening the device, but 'vdev_wholedisk'
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   201
		 * is not yet set, then this must be a slice.
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   202
		 */
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   203
		if (error == 0 && vd->vdev_wholedisk == -1ULL)
b501e9f31cab 6344272 re-think how whole disks are stored
eschrock
parents: 789
diff changeset
   204
			vd->vdev_wholedisk = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   205
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   206
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   207
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   208
	 * If we were unable to open by path, or the devid check fails, open by
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   209
	 * devid instead.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   210
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   211
	if (error != 0 && vd->vdev_devid != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   212
		error = ldi_open_by_devid(dvd->vd_devid, dvd->vd_minor,
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   213
		    spa_mode(spa), kcred, &dvd->vd_lh, zfs_li);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   214
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   215
	/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   216
	 * If all else fails, then try opening by physical path (if available)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   217
	 * or the logical path (if we failed due to the devid check).  While not
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   218
	 * as reliable as the devid, this will give us something, and the higher
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   219
	 * level vdev validation will prevent us from opening the wrong device.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   220
	 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   221
	if (error) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   222
		if (vd->vdev_physpath != NULL &&
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8241
diff changeset
   223
		    (dev = ddi_pathname_to_dev_t(vd->vdev_physpath)) != NODEV)
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   224
			error = ldi_open_by_dev(&dev, OTYP_BLK, spa_mode(spa),
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   225
			    kcred, &dvd->vd_lh, zfs_li);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   226
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   227
		/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   228
		 * Note that we don't support the legacy auto-wholedisk support
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   229
		 * as above.  This hasn't been used in a very long time and we
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   230
		 * don't need to propagate its oddities to this edge condition.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   231
		 */
10850
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   232
		if (error && vd->vdev_path != NULL)
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   233
			error = ldi_open_by_name(vd->vdev_path, spa_mode(spa),
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   234
			    kcred, &dvd->vd_lh, zfs_li);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   235
	}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   236
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   237
	if (error) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   238
		vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   239
		return (error);
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   240
	}
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   241
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   242
	/*
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   243
	 * Once a device is opened, verify that the physical device path (if
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   244
	 * available) is up to date.
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   245
	 */
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   246
	if (ldi_get_dev(dvd->vd_lh, &dev) == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   247
	    ldi_get_otyp(dvd->vd_lh, &otyp) == 0) {
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   248
		char *physpath, *minorname;
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   249
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   250
		physpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   251
		minorname = NULL;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   252
		if (ddi_dev_pathname(dev, otyp, physpath) == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   253
		    ldi_get_minor_name(dvd->vd_lh, &minorname) == 0 &&
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   254
		    (vd->vdev_physpath == NULL ||
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   255
		    strcmp(vd->vdev_physpath, physpath) != 0)) {
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   256
			if (vd->vdev_physpath)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   257
				spa_strfree(vd->vdev_physpath);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   258
			(void) strlcat(physpath, ":", MAXPATHLEN);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   259
			(void) strlcat(physpath, minorname, MAXPATHLEN);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   260
			vd->vdev_physpath = spa_strdup(physpath);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   261
		}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   262
		if (minorname)
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   263
			kmem_free(minorname, strlen(minorname) + 1);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   264
		kmem_free(physpath, MAXPATHLEN);
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   265
	}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   266
10850
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   267
skip_open:
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   268
	/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   269
	 * Determine the actual size of the device.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   270
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   271
	if (ldi_get_size(dvd->vd_lh, psize) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   272
		vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   273
		return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   274
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   275
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   276
	/*
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   277
	 * If we own the whole disk, try to enable disk write caching.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   278
	 * We ignore errors because it's OK if we can't do it.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   279
	 */
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   280
	if (vd->vdev_wholedisk == 1) {
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   281
		int wce = 1;
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   282
		(void) ldi_ioctl(dvd->vd_lh, DKIOCSETWCE, (intptr_t)&wce,
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   283
		    FKIOCTL, kcred, NULL);
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   284
	}
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   285
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   286
	/*
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   287
	 * Determine the device's minimum transfer size.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   288
	 * If the ioctl isn't supported, assume DEV_BSIZE.
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   289
	 */
12208
008d9e6b6072 6931570 Add flash devices' VID/PID to disk table to advertising 4K physical sector size.
bo zhou - Sun Microsystems - Beijing China <Bo.Zhou@Sun.COM>
parents: 11958
diff changeset
   290
	if (ldi_ioctl(dvd->vd_lh, DKIOCGMEDIAINFOEXT, (intptr_t)&dkmext,
1732
9e3ae798af31 6280668 pluggable block allocation policy
bonwick
parents: 1544
diff changeset
   291
	    FKIOCTL, kcred, NULL) != 0)
12208
008d9e6b6072 6931570 Add flash devices' VID/PID to disk table to advertising 4K physical sector size.
bo zhou - Sun Microsystems - Beijing China <Bo.Zhou@Sun.COM>
parents: 11958
diff changeset
   292
		dkmext.dki_pbsize = DEV_BSIZE;
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   293
12208
008d9e6b6072 6931570 Add flash devices' VID/PID to disk table to advertising 4K physical sector size.
bo zhou - Sun Microsystems - Beijing China <Bo.Zhou@Sun.COM>
parents: 11958
diff changeset
   294
	*ashift = highbit(MAX(dkmext.dki_pbsize, SPA_MINBLOCKSIZE)) - 1;
1489
fa842259660e 6322205 Enable disk write cache if ZFS owns the disk
webaker
parents: 1171
diff changeset
   295
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   296
	/*
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   297
	 * Clear the nowritecache bit, so that on a vdev_reopen() we will
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   298
	 * try again.
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   299
	 */
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   300
	vd->vdev_nowritecache = B_FALSE;
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   301
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   302
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   303
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   304
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   305
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   306
vdev_disk_close(vdev_t *vd)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   307
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   308
	vdev_disk_t *dvd = vd->vdev_tsd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   309
10850
bb29ac73664d 6840704 osol_0906 PV guests sometimes hang at login prompt
George Wilson <George.Wilson@Sun.COM>
parents: 10614
diff changeset
   310
	if (vd->vdev_reopening || dvd == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   311
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   312
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   313
	if (dvd->vd_minor != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   314
		ddi_devid_str_free(dvd->vd_minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   315
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   316
	if (dvd->vd_devid != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   317
		ddi_devid_free(dvd->vd_devid);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   318
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   319
	if (dvd->vd_lh != NULL)
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   320
		(void) ldi_close(dvd->vd_lh, spa_mode(vd->vdev_spa), kcred);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   321
12247
5bcd281629f8 6911420 ZFS device removal detection should work with SCSAv3
George Wilson <George.Wilson@Sun.COM>
parents: 12208
diff changeset
   322
	vd->vdev_delayed_close = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   323
	kmem_free(dvd, sizeof (vdev_disk_t));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   324
	vd->vdev_tsd = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   325
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   326
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   327
int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   328
vdev_disk_physio(ldi_handle_t vd_lh, caddr_t data, size_t size,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   329
    uint64_t offset, int flags)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   330
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   331
	buf_t *bp;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   332
	int error = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   333
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   334
	if (vd_lh == NULL)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   335
		return (EINVAL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   336
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   337
	ASSERT(flags & B_READ || flags & B_WRITE);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   338
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   339
	bp = getrbuf(KM_SLEEP);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   340
	bp->b_flags = flags | B_BUSY | B_NOCACHE | B_FAILFAST;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   341
	bp->b_bcount = size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   342
	bp->b_un.b_addr = (void *)data;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   343
	bp->b_lblkno = lbtodb(offset);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   344
	bp->b_bufsize = size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   345
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   346
	error = ldi_strategy(vd_lh, bp);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   347
	ASSERT(error == 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   348
	if ((error = biowait(bp)) == 0 && bp->b_resid != 0)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   349
		error = EIO;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   350
	freerbuf(bp);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   351
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   352
	return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   353
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   354
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   355
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   356
vdev_disk_io_intr(buf_t *bp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   357
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   358
	vdev_disk_buf_t *vdb = (vdev_disk_buf_t *)bp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   359
	zio_t *zio = vdb->vdb_io;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   360
6976
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   361
	/*
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   362
	 * The rest of the zio stack only deals with EIO, ECKSUM, and ENXIO.
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   363
	 * Rather than teach the rest of the stack about other error
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   364
	 * possibilities (EFAULT, etc), we normalize the error value here.
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   365
	 */
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   366
	zio->io_error = (geterror(bp) != 0 ? EIO : 0);
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   367
cae5f06df471 PSARC 2008/388 Short circuit for vdev probe failure
eschrock
parents: 6673
diff changeset
   368
	if (zio->io_error == 0 && bp->b_resid != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   369
		zio->io_error = EIO;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   370
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   371
	kmem_free(vdb, sizeof (vdev_disk_buf_t));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   372
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   373
	zio_interrupt(zio);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   374
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   375
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   376
static void
7762
067dd33ef32c 6754498 assertion failure in dbuf_leaf_sync() - and test coverage gap in ztest
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7754
diff changeset
   377
vdev_disk_ioctl_free(zio_t *zio)
067dd33ef32c 6754498 assertion failure in dbuf_leaf_sync() - and test coverage gap in ztest
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7754
diff changeset
   378
{
067dd33ef32c 6754498 assertion failure in dbuf_leaf_sync() - and test coverage gap in ztest
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7754
diff changeset
   379
	kmem_free(zio->io_vsd, sizeof (struct dk_callback));
067dd33ef32c 6754498 assertion failure in dbuf_leaf_sync() - and test coverage gap in ztest
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7754
diff changeset
   380
}
067dd33ef32c 6754498 assertion failure in dbuf_leaf_sync() - and test coverage gap in ztest
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7754
diff changeset
   381
10614
4f397871da47 PSARC 2009/497 zfs checksum ereport payload additions
Jonathan Adams <Jonathan.Adams@Sun.COM>
parents: 10575
diff changeset
   382
static const zio_vsd_ops_t vdev_disk_vsd_ops = {
4f397871da47 PSARC 2009/497 zfs checksum ereport payload additions
Jonathan Adams <Jonathan.Adams@Sun.COM>
parents: 10575
diff changeset
   383
	vdev_disk_ioctl_free,
4f397871da47 PSARC 2009/497 zfs checksum ereport payload additions
Jonathan Adams <Jonathan.Adams@Sun.COM>
parents: 10575
diff changeset
   384
	zio_vsd_default_cksum_report
4f397871da47 PSARC 2009/497 zfs checksum ereport payload additions
Jonathan Adams <Jonathan.Adams@Sun.COM>
parents: 10575
diff changeset
   385
};
4f397871da47 PSARC 2009/497 zfs checksum ereport payload additions
Jonathan Adams <Jonathan.Adams@Sun.COM>
parents: 10575
diff changeset
   386
7762
067dd33ef32c 6754498 assertion failure in dbuf_leaf_sync() - and test coverage gap in ztest
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7754
diff changeset
   387
static void
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   388
vdev_disk_ioctl_done(void *zio_arg, int error)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   389
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   390
	zio_t *zio = zio_arg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   391
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   392
	zio->io_error = error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   393
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   394
	zio_interrupt(zio);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   395
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   396
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   397
static int
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   398
vdev_disk_io_start(zio_t *zio)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   399
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   400
	vdev_t *vd = zio->io_vd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   401
	vdev_disk_t *dvd = vd->vdev_tsd;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   402
	vdev_disk_buf_t *vdb;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   403
	struct dk_callback *dkc;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   404
	buf_t *bp;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   405
	int error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   406
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   407
	if (zio->io_type == ZIO_TYPE_IOCTL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   408
		/* XXPOLICY */
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   409
		if (!vdev_readable(vd)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   410
			zio->io_error = ENXIO;
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   411
			return (ZIO_PIPELINE_CONTINUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   412
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   413
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   414
		switch (zio->io_cmd) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   415
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   416
		case DKIOCFLUSHWRITECACHE:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   417
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 1773
diff changeset
   418
			if (zfs_nocacheflush)
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 1773
diff changeset
   419
				break;
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 1773
diff changeset
   420
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   421
			if (vd->vdev_nowritecache) {
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   422
				zio->io_error = ENOTSUP;
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   423
				break;
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   424
			}
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   425
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   426
			zio->io_vsd = dkc = kmem_alloc(sizeof (*dkc), KM_SLEEP);
10614
4f397871da47 PSARC 2009/497 zfs checksum ereport payload additions
Jonathan Adams <Jonathan.Adams@Sun.COM>
parents: 10575
diff changeset
   427
			zio->io_vsd_ops = &vdev_disk_vsd_ops;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   428
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   429
			dkc->dkc_callback = vdev_disk_ioctl_done;
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   430
			dkc->dkc_flag = FLUSH_VOLATILE;
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   431
			dkc->dkc_cookie = zio;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   432
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   433
			error = ldi_ioctl(dvd->vd_lh, zio->io_cmd,
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   434
			    (uintptr_t)dkc, FKIOCTL, kcred, NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   435
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   436
			if (error == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   437
				/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   438
				 * The ioctl will be done asychronously,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   439
				 * and will call vdev_disk_ioctl_done()
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   440
				 * upon completion.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   441
				 */
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   442
				return (ZIO_PIPELINE_STOP);
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   443
			}
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   444
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   445
			if (error == ENOTSUP || error == ENOTTY) {
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   446
				/*
4455
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   447
				 * If we get ENOTSUP or ENOTTY, we know that
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   448
				 * no future attempts will ever succeed.
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   449
				 * In this case we set a persistent bit so
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   450
				 * that we don't bother with the ioctl in the
122ee9c0f54c 6456223 system hang after test suite run on usb disk
mishra
parents: 4451
diff changeset
   451
				 * future.
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   452
				 */
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   453
				vd->vdev_nowritecache = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   454
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   455
			zio->io_error = error;
1773
d6e4f2855c14 6407791 bringover into ZFS results in s. files newer than extracted source
eschrock
parents: 1732
diff changeset
   456
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   457
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   458
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   459
		default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   460
			zio->io_error = ENOTSUP;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   461
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   462
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   463
		return (ZIO_PIPELINE_CONTINUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   464
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   465
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   466
	vdb = kmem_alloc(sizeof (vdev_disk_buf_t), KM_SLEEP);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   467
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   468
	vdb->vdb_io = zio;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   469
	bp = &vdb->vdb_buf;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   470
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   471
	bioinit(bp);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   472
	bp->b_flags = B_BUSY | B_NOCACHE |
9725
0bf7402e8022 6843014 ZFS B_FAILFAST handling is broken
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9616
diff changeset
   473
	    (zio->io_type == ZIO_TYPE_READ ? B_READ : B_WRITE);
0bf7402e8022 6843014 ZFS B_FAILFAST handling is broken
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9616
diff changeset
   474
	if (!(zio->io_flags & (ZIO_FLAG_IO_RETRY | ZIO_FLAG_TRYHARD)))
0bf7402e8022 6843014 ZFS B_FAILFAST handling is broken
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9616
diff changeset
   475
		bp->b_flags |= B_FAILFAST;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   476
	bp->b_bcount = zio->io_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   477
	bp->b_un.b_addr = zio->io_data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   478
	bp->b_lblkno = lbtodb(zio->io_offset);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   479
	bp->b_bufsize = zio->io_size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   480
	bp->b_iodone = (int (*)())vdev_disk_io_intr;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   481
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   482
	/* ldi_strategy() will return non-zero only on programming errors */
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   483
	VERIFY(ldi_strategy(dvd->vd_lh, bp) == 0);
5530
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   484
4ed96167d864 6354519 stack overflow in zfs due to zio pipeline
bonwick
parents: 5369
diff changeset
   485
	return (ZIO_PIPELINE_STOP);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   486
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   487
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   488
static void
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   489
vdev_disk_io_done(zio_t *zio)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   490
{
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   491
	vdev_t *vd = zio->io_vd;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1489
diff changeset
   492
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   493
	/*
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   494
	 * If the device returned EIO, then attempt a DKIOCSTATE ioctl to see if
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   495
	 * the device has been removed.  If this is the case, then we trigger an
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   496
	 * asynchronous removal of the device. Otherwise, probe the device and
5369
27c1235ef9a4 6621355 panic in vdev_disk_io_start when trying to write to a faulted device
gw25295
parents: 5329
diff changeset
   497
	 * make sure it's still accessible.
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   498
	 */
10575
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   499
	if (zio->io_error == EIO && !vd->vdev_remove_wanted) {
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   500
		vdev_disk_t *dvd = vd->vdev_tsd;
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   501
		int state = DKIO_NONE;
5329
33cb98223b2d PSARC 2007/567 zpool failmode property
gw25295
parents: 5065
diff changeset
   502
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   503
		if (ldi_ioctl(dvd->vd_lh, DKIOCSTATE, (intptr_t)&state,
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7687
diff changeset
   504
		    FKIOCTL, kcred, NULL) == 0 && state != DKIO_INSERTED) {
10575
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   505
			/*
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   506
			 * We post the resource as soon as possible, instead of
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   507
			 * when the async removal actually happens, because the
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   508
			 * DE is using this information to discard previous I/O
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   509
			 * errors.
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   510
			 */
2a8816c5173b 6882196 resource.* events shouldn't be posted during spa_tryimport()
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 9988
diff changeset
   511
			zfs_post_remove(zio->io_spa, vd);
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   512
			vd->vdev_remove_wanted = B_TRUE;
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   513
			spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
12247
5bcd281629f8 6911420 ZFS device removal detection should work with SCSAv3
George Wilson <George.Wilson@Sun.COM>
parents: 12208
diff changeset
   514
		} else if (!vd->vdev_delayed_close) {
5bcd281629f8 6911420 ZFS device removal detection should work with SCSAv3
George Wilson <George.Wilson@Sun.COM>
parents: 12208
diff changeset
   515
			vd->vdev_delayed_close = B_TRUE;
4451
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   516
		}
24fbf2d7a5d7 PSARC 2007/197 ZFS hotplug
eschrock
parents: 2986
diff changeset
   517
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   518
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   519
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   520
vdev_ops_t vdev_disk_ops = {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   521
	vdev_disk_open,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
	vdev_disk_close,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   523
	vdev_default_asize,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   524
	vdev_disk_io_start,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   525
	vdev_disk_io_done,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   526
	NULL,
11958
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
   527
	vdev_disk_hold,
575ffe1e978d 6923585 deadlock while booting OpenSolaris build 132 from mirrored rpool with removed submirror
George Wilson <George.Wilson@Sun.COM>
parents: 10850
diff changeset
   528
	vdev_disk_rele,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   529
	VDEV_TYPE_DISK,		/* name of this vdev type */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   530
	B_TRUE			/* leaf vdev */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   531
};
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   532
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   533
/*
7147
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   534
 * Given the root disk device devid or pathname, read the label from
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   535
 * the device, and construct a configuration nvlist.
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   536
 */
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   537
int
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   538
vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   539
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   540
	ldi_handle_t vd_lh;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   541
	vdev_label_t *label;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   542
	uint64_t s, size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   543
	int l;
7147
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   544
	ddi_devid_t tmpdevid;
7687
1132fbaf0c27 6750475 can't boot off a mirrored root with a failed disk
Lin Ling <Lin.Ling@Sun.COM>
parents: 7553
diff changeset
   545
	int error = -1;
7147
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   546
	char *minor_name;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   547
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   548
	/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   549
	 * Read the device label and build the nvlist.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   550
	 */
7687
1132fbaf0c27 6750475 can't boot off a mirrored root with a failed disk
Lin Ling <Lin.Ling@Sun.COM>
parents: 7553
diff changeset
   551
	if (devid != NULL && ddi_devid_str_decode(devid, &tmpdevid,
7147
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   552
	    &minor_name) == 0) {
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   553
		error = ldi_open_by_devid(tmpdevid, minor_name,
8241
5a60f16123ba 6328632 zpool offline is a bit too conservative
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7762
diff changeset
   554
		    FREAD, kcred, &vd_lh, zfs_li);
7147
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   555
		ddi_devid_free(tmpdevid);
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   556
		ddi_devid_str_free(minor_name);
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   557
	}
1e1d75c88283 6704717 ZFS mirrored root doesn't live up to expectations
taylor
parents: 6976
diff changeset
   558
7687
1132fbaf0c27 6750475 can't boot off a mirrored root with a failed disk
Lin Ling <Lin.Ling@Sun.COM>
parents: 7553
diff changeset
   559
	if (error && (error = ldi_open_by_name(devpath, FREAD, kcred, &vd_lh,
1132fbaf0c27 6750475 can't boot off a mirrored root with a failed disk
Lin Ling <Lin.Ling@Sun.COM>
parents: 7553
diff changeset
   560
	    zfs_li)))
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   561
		return (error);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   562
6673
be079d6124af 6697301 deadlock between ZFS and devfs can hang system
eschrock
parents: 6615
diff changeset
   563
	if (ldi_get_size(vd_lh, &s)) {
be079d6124af 6697301 deadlock between ZFS and devfs can hang system
eschrock
parents: 6615
diff changeset
   564
		(void) ldi_close(vd_lh, FREAD, kcred);
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   565
		return (EIO);
6673
be079d6124af 6697301 deadlock between ZFS and devfs can hang system
eschrock
parents: 6615
diff changeset
   566
	}
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   567
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   568
	size = P2ALIGN_TYPED(s, sizeof (vdev_label_t), uint64_t);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   569
	label = kmem_alloc(sizeof (vdev_label_t), KM_SLEEP);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   570
9616
b12e6357efad 6820274 grub could do a better job of finding a menu.lst file
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8876
diff changeset
   571
	*config = NULL;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   572
	for (l = 0; l < VDEV_LABELS; l++) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   573
		uint64_t offset, state, txg = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   574
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   575
		/* read vdev label */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   576
		offset = vdev_label_offset(size, l, 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   577
		if (vdev_disk_physio(vd_lh, (caddr_t)label,
8876
59d2e67b4b65 6803822 Reboot after replacement of system disk in a ZFS mirror drops to grub> prompt
Lin Ling <Lin.Ling@Sun.COM>
parents: 8269
diff changeset
   578
		    VDEV_SKIP_SIZE + VDEV_PHYS_SIZE, offset, B_READ) != 0)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   579
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   580
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   581
		if (nvlist_unpack(label->vl_vdev_phys.vp_nvlist,
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   582
		    sizeof (label->vl_vdev_phys.vp_nvlist), config, 0) != 0) {
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   583
			*config = NULL;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   584
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   585
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   586
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   587
		if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_STATE,
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   588
		    &state) != 0 || state >= POOL_STATE_DESTROYED) {
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   589
			nvlist_free(*config);
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   590
			*config = NULL;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   591
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   592
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   593
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   594
		if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_TXG,
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   595
		    &txg) != 0 || txg == 0) {
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   596
			nvlist_free(*config);
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   597
			*config = NULL;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   598
			continue;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   599
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   600
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   601
		break;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   602
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   603
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   604
	kmem_free(label, sizeof (vdev_label_t));
6673
be079d6124af 6697301 deadlock between ZFS and devfs can hang system
eschrock
parents: 6615
diff changeset
   605
	(void) ldi_close(vd_lh, FREAD, kcred);
9616
b12e6357efad 6820274 grub could do a better job of finding a menu.lst file
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8876
diff changeset
   606
	if (*config == NULL)
b12e6357efad 6820274 grub could do a better job of finding a menu.lst file
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8876
diff changeset
   607
		error = EIDRM;
6673
be079d6124af 6697301 deadlock between ZFS and devfs can hang system
eschrock
parents: 6615
diff changeset
   608
7539
e3f4b4b9f982 6724326 better "can't mountroot" message
Lin Ling <Lin.Ling@Sun.COM>
parents: 7147
diff changeset
   609
	return (error);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5530
diff changeset
   610
}