diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libzfs_core/libzfs_core.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libzfs_core/libzfs_core.c b/lib/libzfs_core/libzfs_core.c index 7a71b7a54..ce33b2153 100644 --- a/lib/libzfs_core/libzfs_core.c +++ b/lib/libzfs_core/libzfs_core.c @@ -322,6 +322,7 @@ lzc_rename(const char *source, const char *target) error = errno; return (error); } + int lzc_destroy(const char *fsname) { @@ -1024,7 +1025,8 @@ lzc_receive_with_header(const char *snapname, nvlist_t *props, * The 'errors' nvlist contains an entry for each unapplied received * property. Callers are responsible for freeing this nvlist. */ -int lzc_receive_one(const char *snapname, nvlist_t *props, +int +lzc_receive_one(const char *snapname, nvlist_t *props, const char *origin, boolean_t force, boolean_t resumable, boolean_t raw, int input_fd, const dmu_replay_record_t *begin_record, int cleanup_fd, uint64_t *read_bytes, uint64_t *errflags, uint64_t *action_handle, @@ -1043,7 +1045,8 @@ int lzc_receive_one(const char *snapname, nvlist_t *props, * exclude ('zfs receive -x') properties. Callers are responsible for freeing * this nvlist */ -int lzc_receive_with_cmdprops(const char *snapname, nvlist_t *props, +int +lzc_receive_with_cmdprops(const char *snapname, nvlist_t *props, nvlist_t *cmdprops, uint8_t *wkeydata, uint_t wkeylen, const char *origin, boolean_t force, boolean_t resumable, boolean_t raw, int input_fd, const dmu_replay_record_t *begin_record, int cleanup_fd, |