diff options
author | eschrock <none@none> | 2007-01-08 11:15:07 -0800 |
---|---|---|
committer | eschrock <none@none> | 2007-01-08 11:15:07 -0800 |
commit | 39c23413b8df94a95f67b34cfd4a4dfc3fd0b48d (patch) | |
tree | eea889e04fa3d21b9bc5fe702a3eef1fc0148ebc /usr/src/common/zfs/zfs_prop.c | |
parent | 3dba6097f91d71408b4a7c824521f8f0687ab6ff (diff) | |
download | illumos-joyent-39c23413b8df94a95f67b34cfd4a4dfc3fd0b48d.tar.gz |
6393525 vdev_reopen() should verify that it's still the same device
6414648 zfs allows overlapping devices to be added
6435943 assertion failed: spare != 0L, file: ../../common/fs/zfs/spa_misc.c
6436000 import of actively spared device returns EBUSY
6478316 nfs/server doesn't respect auto_enable setting
6483675 want a private property to return number of clones
6485728 zpool iostat should flush output periodically
6494072 A device which was set as spare disk is not detach
6497563 zfs double-spared an already-spared disk on reboot
6503724 adding spare that is in use in another pool should be allowed
6505225 zpool(1M) can give misleading error when removing active spare
Diffstat (limited to 'usr/src/common/zfs/zfs_prop.c')
-rw-r--r-- | usr/src/common/zfs/zfs_prop.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/common/zfs/zfs_prop.c b/usr/src/common/zfs/zfs_prop.c index 96c2c046f9..b06f11990a 100644 --- a/usr/src/common/zfs/zfs_prop.c +++ b/usr/src/common/zfs/zfs_prop.c @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -167,6 +167,8 @@ static prop_desc_t zfs_prop_table[ZFS_NPROP_ALL] = { ZFS_TYPE_ANY, NULL, "NAME", B_FALSE }, { "iscsioptions", prop_type_string, 0, NULL, prop_inherit, ZFS_TYPE_VOLUME, NULL, "ISCSIOPTIONS", B_FALSE }, + { "numclones", prop_type_number, 0, NULL, prop_readonly, + ZFS_TYPE_SNAPSHOT, NULL, NULL, B_FALSE }, }; zfs_proptype_t |