diff options
author | George Wilson <[email protected]> | 2012-07-11 13:02:44 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-07-11 13:33:31 -0700 |
commit | c7f2d69de397b02cc803f541dd2d405e0c284e76 (patch) | |
tree | a82bc0cff470a814cb5fb8a1d05c6fdb17934988 /include/sys | |
parent | 3541dc6d02592bd0939ea2d35b50c2bbdcc4cd0e (diff) |
Illumos #1949, #1953
1949 crash during reguid causes stale config
1953 allow and unallow missing from zpool history since removal of pyzfs
Reviewed by: Adam Leventhal <[email protected]>
Reviewed by: Matt Ahrens <[email protected]>
Reviewed by: Eric Schrock <[email protected]>
Reviewed by: Bill Pijewski <[email protected]>
Reviewed by: Richard Lowe <[email protected]>
Reviewed by: Garrett D'Amore <[email protected]>
Reviewed by: Dan McDonald <[email protected]>
Reviewed by: Steve Gonczi <[email protected]>
Approved by: Eric Schrock <[email protected]>
References:
https://www.illumos.org/issues/1949
https://www.illumos.org/issues/1953
Ported by: Brian Behlendorf <[email protected]>
Closes #665
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/vdev.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sys/vdev.h b/include/sys/vdev.h index dd5842a36..50dbe695c 100644 --- a/include/sys/vdev.h +++ b/include/sys/vdev.h @@ -20,6 +20,7 @@ */ /* * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012 by Delphix. All rights reserved. */ #ifndef _SYS_VDEV_H @@ -48,7 +49,7 @@ extern int zfs_nocacheflush; extern int vdev_open(vdev_t *); extern void vdev_open_children(vdev_t *); extern boolean_t vdev_uses_zvols(vdev_t *); -extern int vdev_validate(vdev_t *); +extern int vdev_validate(vdev_t *, boolean_t); extern void vdev_close(vdev_t *); extern int vdev_create(vdev_t *, uint64_t txg, boolean_t isreplace); extern void vdev_reopen(vdev_t *); |