diff options
author | lling <none@none> | 2006-01-18 19:34:00 -0800 |
---|---|---|
committer | lling <none@none> | 2006-01-18 19:34:00 -0800 |
commit | b12a1c38fc215cc54fa6014069fd2b8dbb496646 (patch) | |
tree | cdb14f308885b43eb50e055196988d4f1ad7974d /usr/src/lib/libzfs/common/libzfs_impl.h | |
parent | ba1637f8b78b432c41b36839c92aecf1f5f9fafb (diff) | |
download | illumos-joyent-b12a1c38fc215cc54fa6014069fd2b8dbb496646.tar.gz |
6364129 need to unmount any child datasets before doing the rollback
6364126 cannot rollback when a child filesystem is created after a snapshot is taken
6350233 Cannot rename filesystem|volume while it has dependent clones
Diffstat (limited to 'usr/src/lib/libzfs/common/libzfs_impl.h')
-rw-r--r-- | usr/src/lib/libzfs/common/libzfs_impl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/src/lib/libzfs/common/libzfs_impl.h b/usr/src/lib/libzfs/common/libzfs_impl.h index c9e51de33b..cb1400b1b0 100644 --- a/usr/src/lib/libzfs/common/libzfs_impl.h +++ b/usr/src/lib/libzfs/common/libzfs_impl.h @@ -20,7 +20,7 @@ * CDDL HEADER END */ /* - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -82,6 +82,7 @@ typedef struct prop_changelist prop_changelist_t; int changelist_prefix(prop_changelist_t *); int changelist_postfix(prop_changelist_t *); void changelist_rename(prop_changelist_t *, const char *, const char *); +void changelist_remove(zfs_handle_t *, prop_changelist_t *); void changelist_free(prop_changelist_t *); prop_changelist_t *changelist_gather(zfs_handle_t *, zfs_prop_t, int); int changelist_unshare(prop_changelist_t *); |