Deleted Added
full compact
libzfs_impl.h (226676) libzfs_impl.h (226705)
1/*
2 * CDDL HEADER SART
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 146 unchanged lines hidden (view full) ---

155
156/*
157 * Use this changelist_gather() flag to force attempting mounts
158 * on each change node regardless of whether or not it is currently
159 * mounted.
160 */
161#define CL_GATHER_MOUNT_ALWAYS 0x01
162/*
1/*
2 * CDDL HEADER SART
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 146 unchanged lines hidden (view full) ---

155
156/*
157 * Use this changelist_gather() flag to force attempting mounts
158 * on each change node regardless of whether or not it is currently
159 * mounted.
160 */
161#define CL_GATHER_MOUNT_ALWAYS 0x01
162/*
163 * Use this changelist_gather() flag to prevent unmounting of legacy
164 * file systems. Useful when renaming legacy file systems, where there is
165 * no need to unmount them.
163 * Use this changelist_gather() flag to prevent unmounting of file systems.
166 */
164 */
167#define CL_GATHER_KEEP_LEGACY 0x02
165#define CL_GATHER_DONT_UNMOUNT 0x02
168
169typedef struct prop_changelist prop_changelist_t;
170
171int zcmd_alloc_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, size_t);
172int zcmd_write_src_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
173int zcmd_write_conf_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
174int zcmd_expand_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *);
175int zcmd_read_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t **);

--- 82 unchanged lines hidden ---
166
167typedef struct prop_changelist prop_changelist_t;
168
169int zcmd_alloc_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, size_t);
170int zcmd_write_src_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
171int zcmd_write_conf_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
172int zcmd_expand_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *);
173int zcmd_read_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t **);

--- 82 unchanged lines hidden ---