aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorнаб <[email protected]>2021-05-15 11:53:14 +0200
committerBrian Behlendorf <[email protected]>2021-06-03 13:17:55 -0700
commit739cfb965b00e9cc3155c4a0d6c24bd779b1a245 (patch)
tree16a02e6478c8e5fdff12455afb28dafc95bd0b3b
parente00aae4be2b5f126eb67ff3cdfd1b8e09e99fc0b (diff)
libzfs: convert to -fvisibility=hidden
Also mark all printf-like funxions in libzfs_impl.h as printf-like and add --no-show-locs to storeabi, in hopes diffs will make more sense in future This removes these symbols from libzfs: D nfs_only T SHA256Init T SHA2Final T SHA2Init T SHA2Update T SHA384Init T SHA512Init D share_all_proto D smb_only T zfs_is_shared_proto W zpool_mount_datasets W zpool_unmount_datasets Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Matthew Ahrens <[email protected]> Reviewed-by: John Kennedy <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #12048
-rw-r--r--cmd/zhack/zhack.c3
-rw-r--r--config/Abigail.am2
-rw-r--r--include/cityhash.h4
-rw-r--r--include/libzfs.h512
-rw-r--r--include/libzutil.h71
-rw-r--r--include/sys/fs/zfs.h63
-rw-r--r--include/sys/zfs_sysfs.h4
-rw-r--r--include/sys/zio_checksum.h7
-rw-r--r--include/zfeature_common.h17
-rw-r--r--include/zfs_comutil.h17
-rw-r--r--include/zfs_deleg.h10
-rw-r--r--include/zfs_fletcher.h49
-rw-r--r--include/zfs_namecheck.h28
-rw-r--r--include/zfs_prop.h50
-rw-r--r--lib/libzfs/Makefile.am1
-rw-r--r--lib/libzfs/libzfs.abi10533
-rw-r--r--lib/libzfs/libzfs_changelist.c2
-rw-r--r--lib/libzfs/libzfs_impl.h101
-rw-r--r--lib/libzfs/libzfs_mount.c13
19 files changed, 5491 insertions, 5996 deletions
diff --git a/cmd/zhack/zhack.c b/cmd/zhack/zhack.c
index 08263120c..c1017ec23 100644
--- a/cmd/zhack/zhack.c
+++ b/cmd/zhack/zhack.c
@@ -48,10 +48,9 @@
#include <sys/zio_compress.h>
#include <sys/zfeature.h>
#include <sys/dmu_tx.h>
+#include <zfeature_common.h>
#include <libzutil.h>
-extern boolean_t zfeature_checks_disable;
-
const char cmdname[] = "zhack";
static importargs_t g_importargs;
static char *g_pool;
diff --git a/config/Abigail.am b/config/Abigail.am
index 599f61194..0a74741b4 100644
--- a/config/Abigail.am
+++ b/config/Abigail.am
@@ -25,5 +25,5 @@ checkabi:
storeabi:
cd .libs ; \
for lib in $(lib_LTLIBRARIES) ; do \
- abidw $${lib%.la}.so > ../$${lib%.la}.abi ; \
+ abidw --no-show-locs $${lib%.la}.so > ../$${lib%.la}.abi ; \
done
diff --git a/include/cityhash.h b/include/cityhash.h
index 33c3b7bc2..3b2d1e84b 100644
--- a/include/cityhash.h
+++ b/include/cityhash.h
@@ -24,7 +24,7 @@
*/
#ifndef _SYS_CITYHASH_H
-#define _SYS_CITYHASH_H
+#define _SYS_CITYHASH_H extern __attribute__((visibility("default")))
#include <sys/zfs_context.h>
@@ -32,7 +32,7 @@
extern "C" {
#endif
-uint64_t cityhash4(uint64_t, uint64_t, uint64_t, uint64_t);
+_SYS_CITYHASH_H uint64_t cityhash4(uint64_t, uint64_t, uint64_t, uint64_t);
#ifdef __cplusplus
}
diff --git a/include/libzfs.h b/include/libzfs.h
index 344d2146f..9ef280636 100644
--- a/include/libzfs.h
+++ b/include/libzfs.h
@@ -32,7 +32,7 @@
*/
#ifndef _LIBZFS_H
-#define _LIBZFS_H
+#define _LIBZFS_H extern __attribute__((visibility("default")))
#include <assert.h>
#include <libnvpair.h>
@@ -196,64 +196,64 @@ typedef struct zfs_handle zfs_handle_t;
typedef struct zpool_handle zpool_handle_t;
typedef struct libzfs_handle libzfs_handle_t;
-extern int zpool_wait(zpool_handle_t *, zpool_wait_activity_t);
-extern int zpool_wait_status(zpool_handle_t *, zpool_wait_activity_t,
+_LIBZFS_H int zpool_wait(zpool_handle_t *, zpool_wait_activity_t);
+_LIBZFS_H int zpool_wait_status(zpool_handle_t *, zpool_wait_activity_t,
boolean_t *, boolean_t *);
/*
* Library initialization
*/
-extern libzfs_handle_t *libzfs_init(void);
-extern void libzfs_fini(libzfs_handle_t *);
+_LIBZFS_H libzfs_handle_t *libzfs_init(void);
+_LIBZFS_H void libzfs_fini(libzfs_handle_t *);
-extern libzfs_handle_t *zpool_get_handle(zpool_handle_t *);
-extern libzfs_handle_t *zfs_get_handle(zfs_handle_t *);
+_LIBZFS_H libzfs_handle_t *zpool_get_handle(zpool_handle_t *);
+_LIBZFS_H libzfs_handle_t *zfs_get_handle(zfs_handle_t *);
-extern void libzfs_print_on_error(libzfs_handle_t *, boolean_t);
+_LIBZFS_H void libzfs_print_on_error(libzfs_handle_t *, boolean_t);
-extern void zfs_save_arguments(int argc, char **, char *, int);
-extern int zpool_log_history(libzfs_handle_t *, const char *);
+_LIBZFS_H void zfs_save_arguments(int argc, char **, char *, int);
+_LIBZFS_H int zpool_log_history(libzfs_handle_t *, const char *);
-extern int libzfs_errno(libzfs_handle_t *);
-extern const char *libzfs_error_init(int);
-extern const char *libzfs_error_action(libzfs_handle_t *);
-extern const char *libzfs_error_description(libzfs_handle_t *);
-extern int zfs_standard_error(libzfs_handle_t *, int, const char *);
-extern void libzfs_mnttab_init(libzfs_handle_t *);
-extern void libzfs_mnttab_fini(libzfs_handle_t *);
-extern void libzfs_mnttab_cache(libzfs_handle_t *, boolean_t);
-extern int libzfs_mnttab_find(libzfs_handle_t *, const char *,
+_LIBZFS_H int libzfs_errno(libzfs_handle_t *);
+_LIBZFS_H const char *libzfs_error_init(int);
+_LIBZFS_H const char *libzfs_error_action(libzfs_handle_t *);
+_LIBZFS_H const char *libzfs_error_description(libzfs_handle_t *);
+_LIBZFS_H int zfs_standard_error(libzfs_handle_t *, int, const char *);
+_LIBZFS_H void libzfs_mnttab_init(libzfs_handle_t *);
+_LIBZFS_H void libzfs_mnttab_fini(libzfs_handle_t *);
+_LIBZFS_H void libzfs_mnttab_cache(libzfs_handle_t *, boolean_t);
+_LIBZFS_H int libzfs_mnttab_find(libzfs_handle_t *, const char *,
struct mnttab *);
-extern void libzfs_mnttab_add(libzfs_handle_t *, const char *,
+_LIBZFS_H void libzfs_mnttab_add(libzfs_handle_t *, const char *,
const char *, const char *);
-extern void libzfs_mnttab_remove(libzfs_handle_t *, const char *);
+_LIBZFS_H void libzfs_mnttab_remove(libzfs_handle_t *, const char *);
/*
* Basic handle functions
*/
-extern zpool_handle_t *zpool_open(libzfs_handle_t *, const char *);
-extern zpool_handle_t *zpool_open_canfail(libzfs_handle_t *, const char *);
-extern void zpool_close(zpool_handle_t *);
-extern const char *zpool_get_name(zpool_handle_t *);
-extern int zpool_get_state(zpool_handle_t *);
-extern const char *zpool_state_to_name(vdev_state_t, vdev_aux_t);
-extern const char *zpool_pool_state_to_name(pool_state_t);
-extern void zpool_free_handles(libzfs_handle_t *);
+_LIBZFS_H zpool_handle_t *zpool_open(libzfs_handle_t *, const char *);
+_LIBZFS_H zpool_handle_t *zpool_open_canfail(libzfs_handle_t *, const char *);
+_LIBZFS_H void zpool_close(zpool_handle_t *);
+_LIBZFS_H const char *zpool_get_name(zpool_handle_t *);
+_LIBZFS_H int zpool_get_state(zpool_handle_t *);
+_LIBZFS_H const char *zpool_state_to_name(vdev_state_t, vdev_aux_t);
+_LIBZFS_H const char *zpool_pool_state_to_name(pool_state_t);
+_LIBZFS_H void zpool_free_handles(libzfs_handle_t *);
/*
* Iterate over all active pools in the system.
*/
typedef int (*zpool_iter_f)(zpool_handle_t *, void *);
-extern int zpool_iter(libzfs_handle_t *, zpool_iter_f, void *);
-extern boolean_t zpool_skip_pool(const char *);
+_LIBZFS_H int zpool_iter(libzfs_handle_t *, zpool_iter_f, void *);
+_LIBZFS_H boolean_t zpool_skip_pool(const char *);
/*
* Functions to create and destroy pools
*/
-extern int zpool_create(libzfs_handle_t *, const char *, nvlist_t *,
+_LIBZFS_H int zpool_create(libzfs_handle_t *, const char *, nvlist_t *,
nvlist_t *, nvlist_t *);
-extern int zpool_destroy(zpool_handle_t *, const char *);
-extern int zpool_add(zpool_handle_t *, nvlist_t *);
+_LIBZFS_H int zpool_destroy(zpool_handle_t *, const char *);
+_LIBZFS_H int zpool_add(zpool_handle_t *, nvlist_t *);
typedef struct splitflags {
/* do not split, but return the config that would be split off */
@@ -281,57 +281,60 @@ typedef struct trimflags {
/*
* Functions to manipulate pool and vdev state
*/
-extern int zpool_scan(zpool_handle_t *, pool_scan_func_t, pool_scrub_cmd_t);
-extern int zpool_initialize(zpool_handle_t *, pool_initialize_func_t,
+_LIBZFS_H int zpool_scan(zpool_handle_t *, pool_scan_func_t, pool_scrub_cmd_t);
+_LIBZFS_H int zpool_initialize(zpool_handle_t *, pool_initialize_func_t,
nvlist_t *);
-extern int zpool_initialize_wait(zpool_handle_t *, pool_initialize_func_t,
+_LIBZFS_H int zpool_initialize_wait(zpool_handle_t *, pool_initialize_func_t,
nvlist_t *);
-extern int zpool_trim(zpool_handle_t *, pool_trim_func_t, nvlist_t *,
+_LIBZFS_H int zpool_trim(zpool_handle_t *, pool_trim_func_t, nvlist_t *,
trimflags_t *);
-extern int zpool_clear(zpool_handle_t *, const char *, nvlist_t *);
-extern int zpool_reguid(zpool_handle_t *);
-extern int zpool_reopen_one(zpool_handle_t *, void *);
+_LIBZFS_H int zpool_clear(zpool_handle_t *, const char *, nvlist_t *);
+_LIBZFS_H int zpool_reguid(zpool_handle_t *);
+_LIBZFS_H int zpool_reopen_one(zpool_handle_t *, void *);
-extern int zpool_sync_one(zpool_handle_t *, void *);
+_LIBZFS_H int zpool_sync_one(zpool_handle_t *, void *);
-extern int zpool_vdev_online(zpool_handle_t *, const char *, int,
+_LIBZFS_H int zpool_vdev_online(zpool_handle_t *, const char *, int,
vdev_state_t *);
-extern int zpool_vdev_offline(zpool_handle_t *, const char *, boolean_t);
-extern int zpool_vdev_attach(zpool_handle_t *, const char *,
+_LIBZFS_H int zpool_vdev_offline(zpool_handle_t *, const char *, boolean_t);
+_LIBZFS_H int zpool_vdev_attach(zpool_handle_t *, const char *,
const char *, nvlist_t *, int, boolean_t);
-extern int zpool_vdev_detach(zpool_handle_t *, const char *);
-extern int zpool_vdev_remove(zpool_handle_t *, const char *);
-extern int zpool_vdev_remove_cancel(zpool_handle_t *);
-extern int zpool_vdev_indirect_size(zpool_handle_t *, const char *, uint64_t *);
-extern int zpool_vdev_split(zpool_handle_t *, char *, nvlist_t **, nvlist_t *,
- splitflags_t);
-
-extern int zpool_vdev_fault(zpool_handle_t *, uint64_t, vdev_aux_t);
-extern int zpool_vdev_degrade(zpool_handle_t *, uint64_t, vdev_aux_t);
-extern int zpool_vdev_clear(zpool_handle_t *, uint64_t);
-
-extern nvlist_t *zpool_find_vdev(zpool_handle_t *, const char *, boolean_t *,
+_LIBZFS_H int zpool_vdev_detach(zpool_handle_t *, const char *);
+_LIBZFS_H int zpool_vdev_remove(zpool_handle_t *, const char *);
+_LIBZFS_H int zpool_vdev_remove_cancel(zpool_handle_t *);
+_LIBZFS_H int zpool_vdev_indirect_size(zpool_handle_t *, const char *,
+ uint64_t *);
+_LIBZFS_H int zpool_vdev_split(zpool_handle_t *, char *, nvlist_t **,
+ nvlist_t *, splitflags_t);
+
+_LIBZFS_H int zpool_vdev_fault(zpool_handle_t *, uint64_t, vdev_aux_t);
+_LIBZFS_H int zpool_vdev_degrade(zpool_handle_t *, uint64_t, vdev_aux_t);
+_LIBZFS_H int zpool_vdev_clear(zpool_handle_t *, uint64_t);
+
+_LIBZFS_H nvlist_t *zpool_find_vdev(zpool_handle_t *, const char *, boolean_t *,
boolean_t *, boolean_t *);
-extern nvlist_t *zpool_find_vdev_by_physpath(zpool_handle_t *, const char *,
+_LIBZFS_H nvlist_t *zpool_find_vdev_by_physpath(zpool_handle_t *, const char *,
boolean_t *, boolean_t *, boolean_t *);
-extern int zpool_label_disk(libzfs_handle_t *, zpool_handle_t *, const char *);
-extern uint64_t zpool_vdev_path_to_guid(zpool_handle_t *zhp, const char *path);
+_LIBZFS_H int zpool_label_disk(libzfs_handle_t *, zpool_handle_t *,
+ const char *);
+_LIBZFS_H uint64_t zpool_vdev_path_to_guid(zpool_handle_t *zhp,
+ const char *path);
-const char *zpool_get_state_str(zpool_handle_t *);
+_LIBZFS_H const char *zpool_get_state_str(zpool_handle_t *);
/*
* Functions to manage pool properties
*/
-extern int zpool_set_prop(zpool_handle_t *, const char *, const char *);
-extern int zpool_get_prop(zpool_handle_t *, zpool_prop_t, char *,
+_LIBZFS_H int zpool_set_prop(zpool_handle_t *, const char *, const char *);
+_LIBZFS_H int zpool_get_prop(zpool_handle_t *, zpool_prop_t, char *,
size_t proplen, zprop_source_t *, boolean_t literal);
-extern uint64_t zpool_get_prop_int(zpool_handle_t *, zpool_prop_t,
+_LIBZFS_H uint64_t zpool_get_prop_int(zpool_handle_t *, zpool_prop_t,
zprop_source_t *);
-extern int zpool_props_refresh(zpool_handle_t *);
+_LIBZFS_H int zpool_props_refresh(zpool_handle_t *);
-extern const char *zpool_prop_to_name(zpool_prop_t);
-extern const char *zpool_prop_values(zpool_prop_t);
+_LIBZFS_H const char *zpool_prop_to_name(zpool_prop_t);
+_LIBZFS_H const char *zpool_prop_values(zpool_prop_t);
/*
* Pool health statistics.
@@ -401,36 +404,36 @@ typedef enum {
ZPOOL_STATUS_OK
} zpool_status_t;
-extern zpool_status_t zpool_get_status(zpool_handle_t *, char **,
+_LIBZFS_H zpool_status_t zpool_get_status(zpool_handle_t *, char **,
zpool_errata_t *);
-extern zpool_status_t zpool_import_status(nvlist_t *, char **,
+_LIBZFS_H zpool_status_t zpool_import_status(nvlist_t *, char **,
zpool_errata_t *);
/*
* Statistics and configuration functions.
*/
-extern nvlist_t *zpool_get_config(zpool_handle_t *, nvlist_t **);
-extern nvlist_t *zpool_get_features(zpool_handle_t *);
-extern int zpool_refresh_stats(zpool_handle_t *, boolean_t *);
-extern int zpool_get_errlog(zpool_handle_t *, nvlist_t **);
+_LIBZFS_H nvlist_t *zpool_get_config(zpool_handle_t *, nvlist_t **);
+_LIBZFS_H nvlist_t *zpool_get_features(zpool_handle_t *);
+_LIBZFS_H int zpool_refresh_stats(zpool_handle_t *, boolean_t *);
+_LIBZFS_H int zpool_get_errlog(zpool_handle_t *, nvlist_t **);
/*
* Import and export functions
*/
-extern int zpool_export(zpool_handle_t *, boolean_t, const char *);
-extern int zpool_export_force(zpool_handle_t *, const char *);
-extern int zpool_import(libzfs_handle_t *, nvlist_t *, const char *,
+_LIBZFS_H int zpool_export(zpool_handle_t *, boolean_t, const char *);
+_LIBZFS_H int zpool_export_force(zpool_handle_t *, const char *);
+_LIBZFS_H int zpool_import(libzfs_handle_t *, nvlist_t *, const char *,
char *altroot);
-extern int zpool_import_props(libzfs_handle_t *, nvlist_t *, const char *,
+_LIBZFS_H int zpool_import_props(libzfs_handle_t *, nvlist_t *, const char *,
nvlist_t *, int);
-extern void zpool_print_unsup_feat(nvlist_t *config);
+_LIBZFS_H void zpool_print_unsup_feat(nvlist_t *config);
/*
* Miscellaneous pool functions
*/
struct zfs_cmd;
-extern const char *zfs_history_event_names[];
+_LIBZFS_H const char *zfs_history_event_names[];
typedef enum {
VDEV_NAME_PATH = 1 << 0,
@@ -439,39 +442,39 @@ typedef enum {
VDEV_NAME_TYPE_ID = 1 << 3,
} vdev_name_t;
-extern char *zpool_vdev_name(libzfs_handle_t *, zpool_handle_t *, nvlist_t *,
+_LIBZFS_H char *zpool_vdev_name(libzfs_handle_t *, zpool_handle_t *, nvlist_t *,
int name_flags);
-extern int zpool_upgrade(zpool_handle_t *, uint64_t);
-extern int zpool_get_history(zpool_handle_t *, nvlist_t **, uint64_t *,
+_LIBZFS_H int zpool_upgrade(zpool_handle_t *, uint64_t);
+_LIBZFS_H int zpool_get_history(zpool_handle_t *, nvlist_t **, uint64_t *,
boolean_t *);
-extern int zpool_events_next(libzfs_handle_t *, nvlist_t **, int *, unsigned,
+_LIBZFS_H int zpool_events_next(libzfs_handle_t *, nvlist_t **, int *, unsigned,
int);
-extern int zpool_events_clear(libzfs_handle_t *, int *);
-extern int zpool_events_seek(libzfs_handle_t *, uint64_t, int);
-extern void zpool_obj_to_path_ds(zpool_handle_t *, uint64_t, uint64_t, char *,
- size_t);
-extern void zpool_obj_to_path(zpool_handle_t *, uint64_t, uint64_t, char *,
+_LIBZFS_H int zpool_events_clear(libzfs_handle_t *, int *);
+_LIBZFS_H int zpool_events_seek(libzfs_handle_t *, uint64_t, int);
+_LIBZFS_H void zpool_obj_to_path_ds(zpool_handle_t *, uint64_t, uint64_t,
+ char *, size_t);
+_LIBZFS_H void zpool_obj_to_path(zpool_handle_t *, uint64_t, uint64_t, char *,
size_t);
-extern int zfs_ioctl(libzfs_handle_t *, int, struct zfs_cmd *);
-extern int zpool_get_physpath(zpool_handle_t *, char *, size_t);
-extern void zpool_explain_recover(libzfs_handle_t *, const char *, int,
+_LIBZFS_H int zfs_ioctl(libzfs_handle_t *, int, struct zfs_cmd *);
+_LIBZFS_H int zpool_get_physpath(zpool_handle_t *, char *, size_t);
+_LIBZFS_H void zpool_explain_recover(libzfs_handle_t *, const char *, int,
nvlist_t *);
-extern int zpool_checkpoint(zpool_handle_t *);
-extern int zpool_discard_checkpoint(zpool_handle_t *);
-extern boolean_t zpool_is_draid_spare(const char *);
+_LIBZFS_H int zpool_checkpoint(zpool_handle_t *);
+_LIBZFS_H int zpool_discard_checkpoint(zpool_handle_t *);
+_LIBZFS_H boolean_t zpool_is_draid_spare(const char *);
/*
* Basic handle manipulations. These functions do not create or destroy the
* underlying datasets, only the references to them.
*/
-extern zfs_handle_t *zfs_open(libzfs_handle_t *, const char *, int);
-extern zfs_handle_t *zfs_handle_dup(zfs_handle_t *);
-extern void zfs_close(zfs_handle_t *);
-extern zfs_type_t zfs_get_type(const zfs_handle_t *);
-extern zfs_type_t zfs_get_underlying_type(const zfs_handle_t *);
-extern const char *zfs_get_name(const zfs_handle_t *);
-extern zpool_handle_t *zfs_get_pool_handle(const zfs_handle_t *);
-extern const char *zfs_get_pool_name(const zfs_handle_t *);
+_LIBZFS_H zfs_handle_t *zfs_open(libzfs_handle_t *, const char *, int);
+_LIBZFS_H zfs_handle_t *zfs_handle_dup(zfs_handle_t *);
+_LIBZFS_H void zfs_close(zfs_handle_t *);
+_LIBZFS_H zfs_type_t zfs_get_type(const zfs_handle_t *);
+_LIBZFS_H zfs_type_t zfs_get_underlying_type(const zfs_handle_t *);
+_LIBZFS_H const char *zfs_get_name(const zfs_handle_t *);
+_LIBZFS_H zpool_handle_t *zfs_get_pool_handle(const zfs_handle_t *);
+_LIBZFS_H const char *zfs_get_pool_name(const zfs_handle_t *);
/*
* Property management functions. Some functions are shared with the kernel,
@@ -481,58 +484,60 @@ extern const char *zfs_get_pool_name(const zfs_handle_t *);
/*
* zfs dataset property management
*/
-extern const char *zfs_prop_default_string(zfs_prop_t);
-extern uint64_t zfs_prop_default_numeric(zfs_prop_t);
-extern const char *zfs_prop_column_name(zfs_prop_t);
-extern boolean_t zfs_prop_align_right(zfs_prop_t);
+_LIBZFS_H const char *zfs_prop_default_string(zfs_prop_t);
+_LIBZFS_H uint64_t zfs_prop_default_numeric(zfs_prop_t);
+_LIBZFS_H const char *zfs_prop_column_name(zfs_prop_t);
+_LIBZFS_H boolean_t zfs_prop_align_right(zfs_prop_t);
-extern nvlist_t *zfs_valid_proplist(libzfs_handle_t *, zfs_type_t, nvlist_t *,
- uint64_t, zfs_handle_t *, zpool_handle_t *, boolean_t, const char *);
+_LIBZFS_H nvlist_t *zfs_valid_proplist(libzfs_handle_t *, zfs_type_t,
+ nvlist_t *, uint64_t, zfs_handle_t *, zpool_handle_t *, boolean_t,
+ const char *);
-extern const char *zfs_prop_to_name(zfs_prop_t);
-extern int zfs_prop_set(zfs_handle_t *, const char *, const char *);
-extern int zfs_prop_set_list(zfs_handle_t *, nvlist_t *);
-extern int zfs_prop_get(zfs_handle_t *, zfs_prop_t, char *, size_t,
+_LIBZFS_H const char *zfs_prop_to_name(zfs_prop_t);
+_LIBZFS_H int zfs_prop_set(zfs_handle_t *, const char *, const char *);
+_LIBZFS_H int zfs_prop_set_list(zfs_handle_t *, nvlist_t *);
+_LIBZFS_H int zfs_prop_get(zfs_handle_t *, zfs_prop_t, char *, size_t,
zprop_source_t *, char *, size_t, boolean_t);
-extern int zfs_prop_get_recvd(zfs_handle_t *, const char *, char *, size_t,
+_LIBZFS_H int zfs_prop_get_recvd(zfs_handle_t *, const char *, char *, size_t,
boolean_t);
-extern int zfs_prop_get_numeric(zfs_handle_t *, zfs_prop_t, uint64_t *,
+_LIBZFS_H int zfs_prop_get_numeric(zfs_handle_t *, zfs_prop_t, uint64_t *,
zprop_source_t *, char *, size_t);
-extern int zfs_prop_get_userquota_int(zfs_handle_t *zhp, const char *propname,
- uint64_t *propvalue);
-extern int zfs_prop_get_userquota(zfs_handle_t *zhp, const char *propname,
+_LIBZFS_H int zfs_prop_get_userquota_int(zfs_handle_t *zhp,
+ const char *propname, uint64_t *propvalue);
+_LIBZFS_H int zfs_prop_get_userquota(zfs_handle_t *zhp, const char *propname,
char *propbuf, int proplen, boolean_t literal);
-extern int zfs_prop_get_written_int(zfs_handle_t *zhp, const char *propname,
+_LIBZFS_H int zfs_prop_get_written_int(zfs_handle_t *zhp, const char *propname,
uint64_t *propvalue);
-extern int zfs_prop_get_written(zfs_handle_t *zhp, const char *propname,
+_LIBZFS_H int zfs_prop_get_written(zfs_handle_t *zhp, const char *propname,
char *propbuf, int proplen, boolean_t literal);
-extern int zfs_prop_get_feature(zfs_handle_t *zhp, const char *propname,
+_LIBZFS_H int zfs_prop_get_feature(zfs_handle_t *zhp, const char *propname,
char *buf, size_t len);
-extern uint64_t getprop_uint64(zfs_handle_t *, zfs_prop_t, char **);
-extern uint64_t zfs_prop_get_int(zfs_handle_t *, zfs_prop_t);
-extern int zfs_prop_inherit(zfs_handle_t *, const char *, boolean_t);
-extern const char *zfs_prop_values(zfs_prop_t);
-extern int zfs_prop_is_string(zfs_prop_t prop);
-extern nvlist_t *zfs_get_all_props(zfs_handle_t *);
-extern nvlist_t *zfs_get_user_props(zfs_handle_t *);
-extern nvlist_t *zfs_get_recvd_props(zfs_handle_t *);
-extern nvlist_t *zfs_get_clones_nvl(zfs_handle_t *);
-
-extern int zfs_wait_status(zfs_handle_t *, zfs_wait_activity_t,
+_LIBZFS_H uint64_t getprop_uint64(zfs_handle_t *, zfs_prop_t, char **);
+_LIBZFS_H uint64_t zfs_prop_get_int(zfs_handle_t *, zfs_prop_t);
+_LIBZFS_H int zfs_prop_inherit(zfs_handle_t *, const char *, boolean_t);
+_LIBZFS_H const char *zfs_prop_values(zfs_prop_t);
+_LIBZFS_H int zfs_prop_is_string(zfs_prop_t prop);
+_LIBZFS_H nvlist_t *zfs_get_all_props(zfs_handle_t *);
+_LIBZFS_H nvlist_t *zfs_get_user_props(zfs_handle_t *);
+_LIBZFS_H nvlist_t *zfs_get_recvd_props(zfs_handle_t *);
+_LIBZFS_H nvlist_t *zfs_get_clones_nvl(zfs_handle_t *);
+
+_LIBZFS_H int zfs_wait_status(zfs_handle_t *, zfs_wait_activity_t,
boolean_t *, boolean_t *);
/*
* zfs encryption management
*/
-extern int zfs_crypto_get_encryption_root(zfs_handle_t *, boolean_t *, char *);
-extern int zfs_crypto_create(libzfs_handle_t *, char *, nvlist_t *, nvlist_t *,
- boolean_t stdin_available, uint8_t **, uint_t *);
-extern int zfs_crypto_clone_check(libzfs_handle_t *, zfs_handle_t *, char *,
+_LIBZFS_H int zfs_crypto_get_encryption_root(zfs_handle_t *, boolean_t *,
+ char *);
+_LIBZFS_H int zfs_crypto_create(libzfs_handle_t *, char *, nvlist_t *,
+ nvlist_t *, boolean_t stdin_available, uint8_t **, uint_t *);
+_LIBZFS_H int zfs_crypto_clone_check(libzfs_handle_t *, zfs_handle_t *, char *,
nvlist_t *);
-extern int zfs_crypto_attempt_load_keys(libzfs_handle_t *, char *);
-extern int zfs_crypto_load_key(zfs_handle_t *, boolean_t, char *);
-extern int zfs_crypto_unload_key(zfs_handle_t *);
-extern int zfs_crypto_rewrap(zfs_handle_t *, nvlist_t *, boolean_t);
+_LIBZFS_H int zfs_crypto_attempt_load_keys(libzfs_handle_t *, char *);
+_LIBZFS_H int zfs_crypto_load_key(zfs_handle_t *, boolean_t, char *);
+_LIBZFS_H int zfs_crypto_unload_key(zfs_handle_t *);
+_LIBZFS_H int zfs_crypto_rewrap(zfs_handle_t *, nvlist_t *, boolean_t);
typedef struct zprop_list {
int pl_prop;
@@ -544,9 +549,9 @@ typedef struct zprop_list {
boolean_t pl_fixed;
} zprop_list_t;
-extern int zfs_expand_proplist(zfs_handle_t *, zprop_list_t **, boolean_t,
+_LIBZFS_H int zfs_expand_proplist(zfs_handle_t *, zprop_list_t **, boolean_t,
boolean_t);
-extern void zfs_prune_proplist(zfs_handle_t *, uint8_t *);
+_LIBZFS_H void zfs_prune_proplist(zfs_handle_t *, uint8_t *);
#define ZFS_MOUNTPOINT_NONE "none"
#define ZFS_MOUNTPOINT_LEGACY "legacy"
@@ -561,22 +566,23 @@ extern void zfs_prune_proplist(zfs_handle_t *, uint8_t *);
/*
* zpool property management
*/
-extern int zpool_expand_proplist(zpool_handle_t *, zprop_list_t **, boolean_t);
-extern int zpool_prop_get_feature(zpool_handle_t *, const char *, char *,
+_LIBZFS_H int zpool_expand_proplist(zpool_handle_t *, zprop_list_t **,
+ boolean_t);
+_LIBZFS_H int zpool_prop_get_feature(zpool_handle_t *, const char *, char *,
size_t);
-extern const char *zpool_prop_default_string(zpool_prop_t);
-extern uint64_t zpool_prop_default_numeric(zpool_prop_t);
-extern const char *zpool_prop_column_name(zpool_prop_t);
-extern boolean_t zpool_prop_align_right(zpool_prop_t);
+_LIBZFS_H const char *zpool_prop_default_string(zpool_prop_t);
+_LIBZFS_H uint64_t zpool_prop_default_numeric(zpool_prop_t);
+_LIBZFS_H const char *zpool_prop_column_name(zpool_prop_t);
+_LIBZFS_H boolean_t zpool_prop_align_right(zpool_prop_t);
/*
* Functions shared by zfs and zpool property management.
*/
-extern int zprop_iter(zprop_func func, void *cb, boolean_t show_all,
+_LIBZFS_H int zprop_iter(zprop_func func, void *cb, boolean_t show_all,
boolean_t ordered, zfs_type_t type);
-extern int zprop_get_list(libzfs_handle_t *, char *, zprop_list_t **,
+_LIBZFS_H int zprop_get_list(libzfs_handle_t *, char *, zprop_list_t **,
zfs_type_t);
-extern void zprop_free_list(zprop_list_t *);
+_LIBZFS_H void zprop_free_list(zprop_list_t *);
#define ZFS_GET_NCOLS 5
@@ -603,7 +609,7 @@ typedef struct zprop_get_cbdata {
zfs_type_t cb_type;
} zprop_get_cbdata_t;
-void zprop_print_one_property(const char *, zprop_get_cbdata_t *,
+_LIBZFS_H void zprop_print_one_property(const char *, zprop_get_cbdata_t *,
const char *, const char *, zprop_source_t, const char *,
const char *);
@@ -611,17 +617,19 @@ void zprop_print_one_property(const char *, zprop_get_cbdata_t *,
* Iterator functions.
*/
typedef int (*zfs_iter_f)(zfs_handle_t *, void *);
-extern int zfs_iter_root(libzfs_handle_t *, zfs_iter_f, void *);
-extern int zfs_iter_children(zfs_handle_t *, zfs_iter_f, void *);
-extern int zfs_iter_dependents(zfs_handle_t *, boolean_t, zfs_iter_f, void *);
-extern int zfs_iter_filesystems(zfs_handle_t *, zfs_iter_f, void *);
-extern int zfs_iter_snapshots(zfs_handle_t *, boolean_t, zfs_iter_f, void *,
+_LIBZFS_H int zfs_iter_root(libzfs_handle_t *, zfs_iter_f, void *);
+_LIBZFS_H int zfs_iter_children(zfs_handle_t *, zfs_iter_f, void *);
+_LIBZFS_H int zfs_iter_dependents(zfs_handle_t *, boolean_t, zfs_iter_f,
+ void *);
+_LIBZFS_H int zfs_iter_filesystems(zfs_handle_t *, zfs_iter_f, void *);
+_LIBZFS_H int zfs_iter_snapshots(zfs_handle_t *, boolean_t, zfs_iter_f, void *,
uint64_t, uint64_t);
-extern int zfs_iter_snapshots_sorted(zfs_handle_t *, zfs_iter_f, void *,
+_LIBZFS_H int zfs_iter_snapshots_sorted(zfs_handle_t *, zfs_iter_f, void *,
uint64_t, uint64_t);
-extern int zfs_iter_snapspec(zfs_handle_t *, const char *, zfs_iter_f, void *);
-extern int zfs_iter_bookmarks(zfs_handle_t *, zfs_iter_f, void *);
-extern int zfs_iter_mounted(zfs_handle_t *, zfs_iter_f, void *);
+_LIBZFS_H int zfs_iter_snapspec(zfs_handle_t *, const char *, zfs_iter_f,
+ void *);
+_LIBZFS_H int zfs_iter_bookmarks(zfs_handle_t *, zfs_iter_f, void *);
+_LIBZFS_H int zfs_iter_mounted(zfs_handle_t *, zfs_iter_f, void *);
typedef struct get_all_cb {
zfs_handle_t **cb_handles;
@@ -629,24 +637,25 @@ typedef struct get_all_cb {
size_t cb_used;
} get_all_cb_t;
-void zfs_foreach_mountpoint(libzfs_handle_t *, zfs_handle_t **, size_t,
- zfs_iter_f, void *, boolean_t);
-void libzfs_add_handle(get_all_cb_t *, zfs_handle_t *);
+_LIBZFS_H void zfs_foreach_mountpoint(libzfs_handle_t *, zfs_handle_t **,
+ size_t, zfs_iter_f, void *, boolean_t);
+_LIBZFS_H void libzfs_add_handle(get_all_cb_t *, zfs_handle_t *);
/*
* Functions to create and destroy datasets.
*/
-extern int zfs_create(libzfs_handle_t *, const char *, zfs_type_t,
+_LIBZFS_H int zfs_create(libzfs_handle_t *, const char *, zfs_type_t,
nvlist_t *);
-extern int zfs_create_ancestors(libzfs_handle_t *, const char *);
-extern int zfs_destroy(zfs_handle_t *, boolean_t);
-extern int zfs_destroy_snaps(zfs_handle_t *, char *, boolean_t);
-extern int zfs_destroy_snaps_nvl(libzfs_handle_t *, nvlist_t *, boolean_t);
-extern int zfs_clone(zfs_handle_t *, const char *, nvlist_t *);
-extern int zfs_snapshot(libzfs_handle_t *, const char *, boolean_t, nvlist_t *);
-extern int zfs_snapshot_nvl(libzfs_handle_t *hdl, nvlist_t *snaps,
+_LIBZFS_H int zfs_create_ancestors(libzfs_handle_t *, const char *);
+_LIBZFS_H int zfs_destroy(zfs_handle_t *, boolean_t);
+_LIBZFS_H int zfs_destroy_snaps(zfs_handle_t *, char *, boolean_t);
+_LIBZFS_H int zfs_destroy_snaps_nvl(libzfs_handle_t *, nvlist_t *, boolean_t);
+_LIBZFS_H int zfs_clone(zfs_handle_t *, const char *, nvlist_t *);
+_LIBZFS_H int zfs_snapshot(libzfs_handle_t *, const char *, boolean_t,
+ nvlist_t *);
+_LIBZFS_H int zfs_snapshot_nvl(libzfs_handle_t *hdl, nvlist_t *snaps,
nvlist_t *props);
-extern int zfs_rollback(zfs_handle_t *, zfs_handle_t *, boolean_t);
+_LIBZFS_H int zfs_rollback(zfs_handle_t *, zfs_handle_t *, boolean_t);
typedef struct renameflags {
/* recursive rename */
@@ -659,7 +668,7 @@ typedef struct renameflags {
int forceunmount : 1;
} renameflags_t;
-extern int zfs_rename(zfs_handle_t *, const char *, renameflags_t);
+_LIBZFS_H int zfs_rename(zfs_handle_t *, const char *, renameflags_t);
typedef struct sendflags {
/* Amount of extra information to print. */
@@ -716,34 +725,35 @@ typedef struct sendflags {
typedef boolean_t (snapfilter_cb_t)(zfs_handle_t *, void *);
-extern int zfs_send(zfs_handle_t *, const char *, const char *,
+_LIBZFS_H int zfs_send(zfs_handle_t *, const char *, const char *,
sendflags_t *, int, snapfilter_cb_t, void *, nvlist_t **);
-extern int zfs_send_one(zfs_handle_t *, const char *, int, sendflags_t *,
+_LIBZFS_H int zfs_send_one(zfs_handle_t *, const char *, int, sendflags_t *,
const char *);
-extern int zfs_send_progress(zfs_handle_t *, int, uint64_t *, uint64_t *);
-extern int zfs_send_resume(libzfs_handle_t *, sendflags_t *, int outfd,
+_LIBZFS_H int zfs_send_progress(zfs_handle_t *, int, uint64_t *, uint64_t *);
+_LIBZFS_H int zfs_send_resume(libzfs_handle_t *, sendflags_t *, int outfd,
const char *);
-extern int zfs_send_saved(zfs_handle_t *, sendflags_t *, int, const char *);
-extern nvlist_t *zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl,
+_LIBZFS_H int zfs_send_saved(zfs_handle_t *, sendflags_t *, int, const char *);
+_LIBZFS_H nvlist_t *zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl,
const char *token);
-extern int zfs_promote(zfs_handle_t *);
-extern int zfs_hold(zfs_handle_t *, const char *, const char *,
+_LIBZFS_H int zfs_promote(zfs_handle_t *);
+_LIBZFS_H int zfs_hold(zfs_handle_t *, const char *, const char *,
boolean_t, int);
-extern int zfs_hold_nvl(zfs_handle_t *, int, nvlist_t *);
-extern int zfs_release(zfs_handle_t *, const char *, const char *, boolean_t);
-extern int zfs_get_holds(zfs_handle_t *, nvlist_t **);
-extern uint64_t zvol_volsize_to_reservation(zpool_handle_t *, uint64_t,
+_LIBZFS_H int zfs_hold_nvl(zfs_handle_t *, int, nvlist_t *);
+_LIBZFS_H int zfs_release(zfs_handle_t *, const char *, const char *,
+ boolean_t);
+_LIBZFS_H int zfs_get_holds(zfs_handle_t *, nvlist_t **);
+_LIBZFS_H uint64_t zvol_volsize_to_reservation(zpool_handle_t *, uint64_t,
nvlist_t *);
typedef int (*zfs_userspace_cb_t)(void *arg, const char *domain,
uid_t rid, uint64_t space);
-extern int zfs_userspace(zfs_handle_t *, zfs_userquota_prop_t,
+_LIBZFS_H int zfs_userspace(zfs_handle_t *, zfs_userquota_prop_t,
zfs_userspace_cb_t, void *);
-extern int zfs_get_fsacl(zfs_handle_t *, nvlist_t **);
-extern int zfs_set_fsacl(zfs_handle_t *, boolean_t, nvlist_t *);
+_LIBZFS_H int zfs_get_fsacl(zfs_handle_t *, nvlist_t **);
+_LIBZFS_H int zfs_set_fsacl(zfs_handle_t *, boolean_t, nvlist_t *);
typedef struct recvflags {
/* print informational messages (ie, -v was specified) */
@@ -792,7 +802,7 @@ typedef struct recvflags {
boolean_t forceunmount;
} recvflags_t;
-extern int zfs_receive(libzfs_handle_t *, const char *, nvlist_t *,
+_LIBZFS_H int zfs_receive(libzfs_handle_t *, const char *, nvlist_t *,
recvflags_t *, int, avl_tree_t *);
typedef enum diff_flags {
@@ -801,71 +811,71 @@ typedef enum diff_flags {
ZFS_DIFF_CLASSIFY = 0x4
} diff_flags_t;
-extern int zfs_show_diffs(zfs_handle_t *, int, const char *, const char *,
+_LIBZFS_H int zfs_show_diffs(zfs_handle_t *, int, const char *, const char *,
int);
/*
* Miscellaneous functions.
*/
-extern const char *zfs_type_to_name(zfs_type_t);
-extern void zfs_refresh_properties(zfs_handle_t *);
-extern int zfs_name_valid(const char *, zfs_type_t);
-extern zfs_handle_t *zfs_path_to_zhandle(libzfs_handle_t *, const char *,
+_LIBZFS_H const char *zfs_type_to_name(zfs_type_t);
+_LIBZFS_H void zfs_refresh_properties(zfs_handle_t *);
+_LIBZFS_H int zfs_name_valid(const char *, zfs_type_t);
+_LIBZFS_H zfs_handle_t *zfs_path_to_zhandle(libzfs_handle_t *, const char *,
zfs_type_t);
-extern int zfs_parent_name(zfs_handle_t *, char *, size_t);
-extern boolean_t zfs_dataset_exists(libzfs_handle_t *, const char *,
+_LIBZFS_H int zfs_parent_name(zfs_handle_t *, char *, size_t);
+_LIBZFS_H boolean_t zfs_dataset_exists(libzfs_handle_t *, const char *,
zfs_type_t);
-extern int zfs_spa_version(zfs_handle_t *, int *);
-extern boolean_t zfs_bookmark_exists(const char *path);
+_LIBZFS_H int zfs_spa_version(zfs_handle_t *, int *);
+_LIBZFS_H boolean_t zfs_bookmark_exists(const char *path);
/*
* Mount support functions.
*/
-extern boolean_t is_mounted(libzfs_handle_t *, const char *special, char **);
-extern boolean_t zfs_is_mounted(zfs_handle_t *, char **);
-extern int zfs_mount(zfs_handle_t *, const char *, int);
-extern int zfs_mount_at(zfs_handle_t *, const char *, int, const char *);
-extern int zfs_unmount(zfs_handle_t *, const char *, int);
-extern int zfs_unmountall(zfs_handle_t *, int);
-extern int zfs_mount_delegation_check(void);
+_LIBZFS_H boolean_t is_mounted(libzfs_handle_t *, const char *special, char **);
+_LIBZFS_H boolean_t zfs_is_mounted(zfs_handle_t *, char **);
+_LIBZFS_H int zfs_mount(zfs_handle_t *, const char *, int);
+_LIBZFS_H int zfs_mount_at(zfs_handle_t *, const char *, int, const char *);
+_LIBZFS_H int zfs_unmount(zfs_handle_t *, const char *, int);
+_LIBZFS_H int zfs_unmountall(zfs_handle_t *, int);
+_LIBZFS_H int zfs_mount_delegation_check(void);
#if defined(__linux__)
-extern int zfs_parse_mount_options(char *mntopts, unsigned long *mntflags,
+_LIBZFS_H int zfs_parse_mount_options(char *mntopts, unsigned long *mntflags,
unsigned long *zfsflags, int sloppy, char *badopt, char *mtabopt);
-extern void zfs_adjust_mount_options(zfs_handle_t *zhp, const char *mntpoint,
+_LIBZFS_H void zfs_adjust_mount_options(zfs_handle_t *zhp, const char *mntpoint,
char *mntopts, char *mtabopt);
#endif
/*
* Share support functions.
*/
-extern boolean_t zfs_is_shared(zfs_handle_t *);
-extern int zfs_share(zfs_handle_t *);
-extern int zfs_unshare(zfs_handle_t *);
+_LIBZFS_H boolean_t zfs_is_shared(zfs_handle_t *);
+_LIBZFS_H int zfs_share(zfs_handle_t *);
+_LIBZFS_H int zfs_unshare(zfs_handle_t *);
/*
* Protocol-specific share support functions.
*/
-extern boolean_t zfs_is_shared_nfs(zfs_handle_t *, char **);
-extern boolean_t zfs_is_shared_smb(zfs_handle_t *, char **);
-extern int zfs_share_nfs(zfs_handle_t *);
-extern int zfs_share_smb(zfs_handle_t *);
-extern int zfs_shareall(zfs_handle_t *);
-extern int zfs_unshare_nfs(zfs_handle_t *, const char *);
-extern int zfs_unshare_smb(zfs_handle_t *, const char *);
-extern int zfs_unshareall_nfs(zfs_handle_t *);
-extern int zfs_unshareall_smb(zfs_handle_t *);
-extern int zfs_unshareall_bypath(zfs_handle_t *, const char *);
-extern int zfs_unshareall_bytype(zfs_handle_t *, const char *, const char *);
-extern int zfs_unshareall(zfs_handle_t *);
-extern int zfs_deleg_share_nfs(libzfs_handle_t *, char *, char *, char *,
+_LIBZFS_H boolean_t zfs_is_shared_nfs(zfs_handle_t *, char **);
+_LIBZFS_H boolean_t zfs_is_shared_smb(zfs_handle_t *, char **);
+_LIBZFS_H int zfs_share_nfs(zfs_handle_t *);
+_LIBZFS_H int zfs_share_smb(zfs_handle_t *);
+_LIBZFS_H int zfs_shareall(zfs_handle_t *);
+_LIBZFS_H int zfs_unshare_nfs(zfs_handle_t *, const char *);
+_LIBZFS_H int zfs_unshare_smb(zfs_handle_t *, const char *);
+_LIBZFS_H int zfs_unshareall_nfs(zfs_handle_t *);
+_LIBZFS_H int zfs_unshareall_smb(zfs_handle_t *);
+_LIBZFS_H int zfs_unshareall_bypath(zfs_handle_t *, const char *);
+_LIBZFS_H int zfs_unshareall_bytype(zfs_handle_t *, const char *, const char *);
+_LIBZFS_H int zfs_unshareall(zfs_handle_t *);
+_LIBZFS_H int zfs_deleg_share_nfs(libzfs_handle_t *, char *, char *, char *,
void *, void *, int, zfs_share_op_t);
-extern void zfs_commit_nfs_shares(void);
-extern void zfs_commit_smb_shares(void);
-extern void zfs_commit_all_shares(void);
-extern void zfs_commit_shares(const char *);
+_LIBZFS_H void zfs_commit_nfs_shares(void);
+_LIBZFS_H void zfs_commit_smb_shares(void);
+_LIBZFS_H void zfs_commit_all_shares(void);
+_LIBZFS_H void zfs_commit_shares(const char *);
-extern int zfs_nicestrtonum(libzfs_handle_t *, const char *, uint64_t *);
+_LIBZFS_H int zfs_nicestrtonum(libzfs_handle_t *, const char *, uint64_t *);
/*
* Utility functions to run an external process.
@@ -874,51 +884,52 @@ extern int zfs_nicestrtonum(libzfs_handle_t *, const char *, uint64_t *);
#define STDERR_VERBOSE 0x02
#define NO_DEFAULT_PATH 0x04 /* Don't use $PATH to lookup the command */
-int libzfs_run_process(const char *, char **, int);
-int libzfs_run_process_get_stdout(const char *, char *[], char *[],
- char **[], int *);
-int libzfs_run_process_get_stdout_nopath(const char *, char *[], char *[],
+_LIBZFS_H int libzfs_run_process(const char *, char **, int);
+_LIBZFS_H int libzfs_run_process_get_stdout(const char *, char *[], char *[],
char **[], int *);
+_LIBZFS_H int libzfs_run_process_get_stdout_nopath(const char *, char *[],
+ char *[], char **[], int *);
-void libzfs_free_str_array(char **, int);
+_LIBZFS_H void libzfs_free_str_array(char **, int);
-int libzfs_envvar_is_set(char *);
+_LIBZFS_H int libzfs_envvar_is_set(char *);
/*
* Utility functions for zfs version
*/
-extern void zfs_version_userland(char *, int);
-extern int zfs_version_kernel(char *, int);
-extern int zfs_version_print(void);
+_LIBZFS_H void zfs_version_userland(char *, int);
+_LIBZFS_H int zfs_version_kernel(char *, int);
+_LIBZFS_H int zfs_version_print(void);
/*
* Given a device or file, determine if it is part of a pool.
*/
-extern int zpool_in_use(libzfs_handle_t *, int, pool_state_t *, char **,
+_LIBZFS_H int zpool_in_use(libzfs_handle_t *, int, pool_state_t *, char **,
boolean_t *);
/*
* Label manipulation.
*/
-extern int zpool_clear_label(int);
-extern int zpool_set_bootenv(zpool_handle_t *, const nvlist_t *);
-extern int zpool_get_bootenv(zpool_handle_t *, nvlist_t **);
+_LIBZFS_H int zpool_clear_label(int);
+_LIBZFS_H int zpool_set_bootenv(zpool_handle_t *, const nvlist_t *);
+_LIBZFS_H int zpool_get_bootenv(zpool_handle_t *, nvlist_t **);
/*
* Management interfaces for SMB ACL files
*/
-int zfs_smb_acl_add(libzfs_handle_t *, char *, char *, char *);
-int zfs_smb_acl_remove(libzfs_handle_t *, char *, char *, char *);
-int zfs_smb_acl_purge(libzfs_handle_t *, char *, char *);
-int zfs_smb_acl_rename(libzfs_handle_t *, char *, char *, char *, char *);
+_LIBZFS_H int zfs_smb_acl_add(libzfs_handle_t *, char *, char *, char *);
+_LIBZFS_H int zfs_smb_acl_remove(libzfs_handle_t *, char *, char *, char *);
+_LIBZFS_H int zfs_smb_acl_purge(libzfs_handle_t *, char *, char *);
+_LIBZFS_H int zfs_smb_acl_rename(libzfs_handle_t *, char *, char *, char *,
+ char *);
/*
* Enable and disable datasets within a pool by mounting/unmounting and
* sharing/unsharing them.
*/
-extern int zpool_enable_datasets(zpool_handle_t *, const char *, int);
-extern int zpool_disable_datasets(zpool_handle_t *, boolean_t);
+_LIBZFS_H int zpool_enable_datasets(zpool_handle_t *, const char *, int);
+_LIBZFS_H int zpool_disable_datasets(zpool_handle_t *, boolean_t);
/*
* Parse a features file for -o compatibility
@@ -931,7 +942,7 @@ typedef enum {
ZPOOL_COMPATIBILITY_NOFILES
} zpool_compat_status_t;
-extern zpool_compat_status_t zpool_load_compat(const char *,
+_LIBZFS_H zpool_compat_status_t zpool_load_compat(const char *,
boolean_t *, char *, size_t);
#ifdef __FreeBSD__
@@ -939,12 +950,13 @@ extern zpool_compat_status_t zpool_load_compat(const char *,
/*
* Attach/detach the given filesystem to/from the given jail.
*/
-extern int zfs_jail(zfs_handle_t *zhp, int jailid, int attach);
+_LIBZFS_H int zfs_jail(zfs_handle_t *zhp, int jailid, int attach);
/*
* Set loader options for next boot.
*/
-extern int zpool_nextboot(libzfs_handle_t *, uint64_t, uint64_t, const char *);
+_LIBZFS_H int zpool_nextboot(libzfs_handle_t *, uint64_t, uint64_t,
+ const char *);
#endif /* __FreeBSD__ */
diff --git a/include/libzutil.h b/include/libzutil.h
index 82a802678..5b0927961 100644
--- a/include/libzutil.h
+++ b/include/libzutil.h
@@ -24,7 +24,7 @@
*/
#ifndef _LIBZUTIL_H
-#define _LIBZUTIL_H
+#define _LIBZUTIL_H extern __attribute__((visibility("default")))
#include <sys/nvpair.h>
#include <sys/fs/zfs.h>
@@ -56,8 +56,8 @@ typedef const struct pool_config_ops {
/*
* An instance of pool_config_ops_t is expected in the caller's binary.
*/
-extern const pool_config_ops_t libzfs_config_ops;
-extern const pool_config_ops_t libzpool_config_ops;
+_LIBZUTIL_H const pool_config_ops_t libzfs_config_ops;
+_LIBZUTIL_H const pool_config_ops_t libzpool_config_ops;
typedef struct importargs {
char **path; /* a list of paths to search */
@@ -70,21 +70,21 @@ typedef struct importargs {
nvlist_t *policy; /* load policy (max txg, rewind, etc.) */
} importargs_t;
-extern nvlist_t *zpool_search_import(void *, importargs_t *,
- const pool_config_ops_t *);
-extern int zpool_find_config(void *, const char *, nvlist_t **, importargs_t *,
+_LIBZUTIL_H nvlist_t *zpool_search_import(void *, importargs_t *,
const pool_config_ops_t *);
+_LIBZUTIL_H int zpool_find_config(void *, const char *, nvlist_t **,
+ importargs_t *, const pool_config_ops_t *);
-extern const char * const * zpool_default_search_paths(size_t *count);
-extern int zpool_read_label(int, nvlist_t **, int *);
-extern int zpool_label_disk_wait(const char *, int);
+_LIBZUTIL_H const char * const * zpool_default_search_paths(size_t *count);
+_LIBZUTIL_H int zpool_read_label(int, nvlist_t **, int *);
+_LIBZUTIL_H int zpool_label_disk_wait(const char *, int);
struct udev_device;
-extern int zfs_device_get_devid(struct udev_device *, char *, size_t);
-extern int zfs_device_get_physical(struct udev_device *, char *, size_t);
+_LIBZUTIL_H int zfs_device_get_devid(struct udev_device *, char *, size_t);
+_LIBZUTIL_H int zfs_device_get_physical(struct udev_device *, char *, size_t);
-extern void update_vdev_config_dev_strs(nvlist_t *);
+_LIBZUTIL_H void update_vdev_config_dev_strs(nvlist_t *);
/*
* Default device paths
@@ -93,23 +93,24 @@ extern void update_vdev_config_dev_strs(nvlist_t *);
#define UDISK_ROOT "/dev/disk"
#define ZVOL_ROOT "/dev/zvol"
-extern int zfs_append_partition(char *path, size_t max_len);
-extern int zfs_resolve_shortname(const char *name, char *path, size_t pathlen);
+_LIBZUTIL_H int zfs_append_partition(char *path, size_t max_len);
+_LIBZUTIL_H int zfs_resolve_shortname(const char *name, char *path,
+ size_t pathlen);
-extern char *zfs_strip_partition(char *);
-extern char *zfs_strip_path(char *);
+_LIBZUTIL_H char *zfs_strip_partition(char *);
+_LIBZUTIL_H char *zfs_strip_path(char *);
-extern int zfs_strcmp_pathname(const char *, const char *, int);
+_LIBZUTIL_H int zfs_strcmp_pathname(const char *, const char *, int);
-extern boolean_t zfs_dev_is_dm(const char *);
-extern boolean_t zfs_dev_is_whole_disk(const char *);
-extern int zfs_dev_flush(int);
-extern char *zfs_get_underlying_path(const char *);
-extern char *zfs_get_enclosure_sysfs_path(const char *);
+_LIBZUTIL_H boolean_t zfs_dev_is_dm(const char *);
+_LIBZUTIL_H boolean_t zfs_dev_is_whole_disk(const char *);
+_LIBZUTIL_H int zfs_dev_flush(int);
+_LIBZUTIL_H char *zfs_get_underlying_path(const char *);
+_LIBZUTIL_H char *zfs_get_enclosure_sysfs_path(const char *);
-extern boolean_t is_mpath_whole_disk(const char *);
+_LIBZUTIL_H boolean_t is_mpath_whole_disk(const char *);
-extern boolean_t zfs_isnumber(const char *);
+_LIBZUTIL_H boolean_t zfs_isnumber(const char *);
/*
* Formats for iostat numbers. Examples: "12K", "30ms", "4B", "2321234", "-".
@@ -131,21 +132,21 @@ enum zfs_nicenum_format {
/*
* Convert a number to a human-readable form.
*/
-extern void zfs_nicebytes(uint64_t, char *, size_t);
-extern void zfs_nicenum(uint64_t, char *, size_t);
-extern void zfs_nicenum_format(uint64_t, char *, size_t,
+_LIBZUTIL_H void zfs_nicebytes(uint64_t, char *, size_t);
+_LIBZUTIL_H void zfs_nicenum(uint64_t, char *, size_t);
+_LIBZUTIL_H void zfs_nicenum_format(uint64_t, char *, size_t,
enum zfs_nicenum_format);
-extern void zfs_nicetime(uint64_t, char *, size_t);
-extern void zfs_niceraw(uint64_t, char *, size_t);
+_LIBZUTIL_H void zfs_nicetime(uint64_t, char *, size_t);
+_LIBZUTIL_H void zfs_niceraw(uint64_t, char *, size_t);
#define nicenum(num, buf, size) zfs_nicenum(num, buf, size)
-extern void zpool_dump_ddt(const ddt_stat_t *, const ddt_histogram_t *);
-extern int zpool_history_unpack(char *, uint64_t, uint64_t *, nvlist_t ***,
+_LIBZUTIL_H void zpool_dump_ddt(const ddt_stat_t *, const ddt_histogram_t *);
+_LIBZUTIL_H int zpool_history_unpack(char *, uint64_t, uint64_t *, nvlist_t ***,
uint_t *);
struct zfs_cmd;
-int zfs_ioctl_fd(int fd, unsigned long request, struct zfs_cmd *zc);
+_LIBZUTIL_H int zfs_ioctl_fd(int fd, unsigned long request, struct zfs_cmd *zc);
/*
* List of colors to use
@@ -155,9 +156,9 @@ int zfs_ioctl_fd(int fd, unsigned long request, struct zfs_cmd *zc);
#define ANSI_RESET "\033[0m"
#define ANSI_BOLD "\033[1m"
-void color_start(char *color);
-void color_end(void);
-int printf_color(char *color, char *format, ...);
+_LIBZUTIL_H void color_start(char *color);
+_LIBZUTIL_H void color_end(void);
+_LIBZUTIL_H int printf_color(char *color, char *format, ...);
#ifdef __cplusplus
}
diff --git a/include/sys/fs/zfs.h b/include/sys/fs/zfs.h
index 254750642..5d4375059 100644
--- a/include/sys/fs/zfs.h
+++ b/include/sys/fs/zfs.h
@@ -32,7 +32,7 @@
*/
#ifndef _SYS_FS_ZFS_H
-#define _SYS_FS_ZFS_H
+#define _SYS_FS_ZFS_H extern __attribute__((visibility("default")))
#include <sys/time.h>
#include <sys/zio_priority.h>
@@ -205,7 +205,7 @@ typedef enum {
ZFS_NUM_USERQUOTA_PROPS
} zfs_userquota_prop_t;
-extern const char *zfs_userquota_prop_prefixes[ZFS_NUM_USERQUOTA_PROPS];
+_SYS_FS_ZFS_H const char *zfs_userquota_prop_prefixes[ZFS_NUM_USERQUOTA_PROPS];
/*
* Pool properties are identified by these constants and must be added to the
@@ -301,38 +301,41 @@ typedef int (*zprop_func)(int, void *);
/*
* Dataset property functions shared between libzfs and kernel.
*/
-const char *zfs_prop_default_string(zfs_prop_t);
-uint64_t zfs_prop_default_numeric(zfs_prop_t);
-boolean_t zfs_prop_readonly(zfs_prop_t);
-boolean_t zfs_prop_visible(zfs_prop_t prop);
-boolean_t zfs_prop_inheritable(zfs_prop_t);
-boolean_t zfs_prop_setonce(zfs_prop_t);
-boolean_t zfs_prop_encryption_key_param(zfs_prop_t);
-boolean_t zfs_prop_valid_keylocation(const char *, boolean_t);
-const char *zfs_prop_to_name(zfs_prop_t);
-zfs_prop_t zfs_name_to_prop(const char *);
-boolean_t zfs_prop_user(const char *);
-boolean_t zfs_prop_userquota(const char *);
-boolean_t zfs_prop_written(const char *);
-int zfs_prop_index_to_string(zfs_prop_t, uint64_t, const char **);
-int zfs_prop_string_to_index(zfs_prop_t, const char *, uint64_t *);
-uint64_t zfs_prop_random_value(zfs_prop_t, uint64_t seed);
-boolean_t zfs_prop_valid_for_type(int, zfs_type_t, boolean_t);
+_SYS_FS_ZFS_H const char *zfs_prop_default_string(zfs_prop_t);
+_SYS_FS_ZFS_H uint64_t zfs_prop_default_numeric(zfs_prop_t);
+_SYS_FS_ZFS_H boolean_t zfs_prop_readonly(zfs_prop_t);
+_SYS_FS_ZFS_H boolean_t zfs_prop_visible(zfs_prop_t prop);
+_SYS_FS_ZFS_H boolean_t zfs_prop_inheritable(zfs_prop_t);
+_SYS_FS_ZFS_H boolean_t zfs_prop_setonce(zfs_prop_t);
+_SYS_FS_ZFS_H boolean_t zfs_prop_encryption_key_param(zfs_prop_t);
+_SYS_FS_ZFS_H boolean_t zfs_prop_valid_keylocation(const char *, boolean_t);
+_SYS_FS_ZFS_H const char *zfs_prop_to_name(zfs_prop_t);
+_SYS_FS_ZFS_H zfs_prop_t zfs_name_to_prop(const char *);
+_SYS_FS_ZFS_H boolean_t zfs_prop_user(const char *);
+_SYS_FS_ZFS_H boolean_t zfs_prop_userquota(const char *);
+_SYS_FS_ZFS_H boolean_t zfs_prop_written(const char *);
+_SYS_FS_ZFS_H int zfs_prop_index_to_string(zfs_prop_t, uint64_t, const char **);
+_SYS_FS_ZFS_H int zfs_prop_string_to_index(zfs_prop_t, const char *,
+ uint64_t *);
+_SYS_FS_ZFS_H uint64_t zfs_prop_random_value(zfs_prop_t, uint64_t seed);
+_SYS_FS_ZFS_H boolean_t zfs_prop_valid_for_type(int, zfs_type_t, boolean_t);
/*
* Pool property functions shared between libzfs and kernel.
*/
-zpool_prop_t zpool_name_to_prop(const char *);
-const char *zpool_prop_to_name(zpool_prop_t);
-const char *zpool_prop_default_string(zpool_prop_t);
-uint64_t zpool_prop_default_numeric(zpool_prop_t);
-boolean_t zpool_prop_readonly(zpool_prop_t);
-boolean_t zpool_prop_setonce(zpool_prop_t);
-boolean_t zpool_prop_feature(const char *);
-boolean_t zpool_prop_unsupported(const char *);
-int zpool_prop_index_to_string(zpool_prop_t, uint64_t, const char **);
-int zpool_prop_string_to_index(zpool_prop_t, const char *, uint64_t *);
-uint64_t zpool_prop_random_value(zpool_prop_t, uint64_t seed);
+_SYS_FS_ZFS_H zpool_prop_t zpool_name_to_prop(const char *);
+_SYS_FS_ZFS_H const char *zpool_prop_to_name(zpool_prop_t);
+_SYS_FS_ZFS_H const char *zpool_prop_default_string(zpool_prop_t);
+_SYS_FS_ZFS_H uint64_t zpool_prop_default_numeric(zpool_prop_t);
+_SYS_FS_ZFS_H boolean_t zpool_prop_readonly(zpool_prop_t);
+_SYS_FS_ZFS_H boolean_t zpool_prop_setonce(zpool_prop_t);
+_SYS_FS_ZFS_H boolean_t zpool_prop_feature(const char *);
+_SYS_FS_ZFS_H boolean_t zpool_prop_unsupported(const char *);
+_SYS_FS_ZFS_H int zpool_prop_index_to_string(zpool_prop_t, uint64_t,
+ const char **);
+_SYS_FS_ZFS_H int zpool_prop_string_to_index(zpool_prop_t, const char *,
+ uint64_t *);
+_SYS_FS_ZFS_H uint64_t zpool_prop_random_value(zpool_prop_t, uint64_t seed);
/*
* Definitions for the Delegation.
diff --git a/include/sys/zfs_sysfs.h b/include/sys/zfs_sysfs.h
index 925d7ad54..14ba61fc4 100644
--- a/include/sys/zfs_sysfs.h
+++ b/include/sys/zfs_sysfs.h
@@ -23,7 +23,7 @@
*/
#ifndef _SYS_ZFS_SYSFS_H
-#define _SYS_ZFS_SYSFS_H
+#define _SYS_ZFS_SYSFS_H extern __attribute__((visibility("default")))
#ifdef _KERNEL
@@ -35,7 +35,7 @@ void zfs_sysfs_fini(void);
#define zfs_sysfs_init()
#define zfs_sysfs_fini()
-boolean_t zfs_mod_supported(const char *, const char *);
+_SYS_ZFS_SYSFS_H boolean_t zfs_mod_supported(const char *, const char *);
#endif
#define ZFS_SYSFS_POOL_PROPERTIES "properties.pool"
diff --git a/include/sys/zio_checksum.h b/include/sys/zio_checksum.h
index 45abd3bd3..9a73a6262 100644
--- a/include/sys/zio_checksum.h
+++ b/include/sys/zio_checksum.h
@@ -25,7 +25,7 @@
*/
#ifndef _SYS_ZIO_CHECKSUM_H
-#define _SYS_ZIO_CHECKSUM_H
+#define _SYS_ZIO_CHECKSUM_H extern __attribute__((visibility("default")))
#include <sys/zio.h>
#include <zfeature_common.h>
@@ -101,7 +101,8 @@ typedef struct zio_bad_cksum {
uint8_t zbc_has_cksum; /* expected/actual valid */
} zio_bad_cksum_t;
-extern zio_checksum_info_t zio_checksum_table[ZIO_CHECKSUM_FUNCTIONS];
+_SYS_ZIO_CHECKSUM_H zio_checksum_info_t
+ zio_checksum_table[ZIO_CHECKSUM_FUNCTIONS];
/*
* Checksum routines.
@@ -122,7 +123,7 @@ extern zio_checksum_t abd_checksum_edonr_byteswap;
extern zio_checksum_tmpl_init_t abd_checksum_edonr_tmpl_init;
extern zio_checksum_tmpl_free_t abd_checksum_edonr_tmpl_free;
-extern zio_abd_checksum_func_t fletcher_4_abd_ops;
+_SYS_ZIO_CHECKSUM_H zio_abd_checksum_func_t fletcher_4_abd_ops;
extern zio_checksum_t abd_fletcher_4_native;
extern zio_checksum_t abd_fletcher_4_byteswap;
diff --git a/include/zfeature_common.h b/include/zfeature_common.h
index 76dd7ed57..874cbd9ff 100644
--- a/include/zfeature_common.h
+++ b/include/zfeature_common.h
@@ -27,7 +27,7 @@
*/
#ifndef _ZFEATURE_COMMON_H
-#define _ZFEATURE_COMMON_H
+#define _ZFEATURE_COMMON_H extern __attribute__((visibility("default")))
#include <sys/fs/zfs.h>
#include <sys/inttypes.h>
@@ -116,16 +116,17 @@ typedef int (zfeature_func_t)(zfeature_info_t *, void *);
#define ZFS_FEATURE_DEBUG
-extern zfeature_info_t spa_feature_table[SPA_FEATURES];
+_ZFEATURE_COMMON_H zfeature_info_t spa_feature_table[SPA_FEATURES];
+_ZFEATURE_COMMON_H boolean_t zfeature_checks_disable;
-extern boolean_t zfeature_is_valid_guid(const char *);
+_ZFEATURE_COMMON_H boolean_t zfeature_is_valid_guid(const char *);
-extern boolean_t zfeature_is_supported(const char *);
-extern int zfeature_lookup_guid(const char *, spa_feature_t *);
-extern int zfeature_lookup_name(const char *, spa_feature_t *);
-extern boolean_t zfeature_depends_on(spa_feature_t, spa_feature_t);
+_ZFEATURE_COMMON_H boolean_t zfeature_is_supported(const char *);
+_ZFEATURE_COMMON_H int zfeature_lookup_guid(const char *, spa_feature_t *);
+_ZFEATURE_COMMON_H int zfeature_lookup_name(const char *, spa_feature_t *);
+_ZFEATURE_COMMON_H boolean_t zfeature_depends_on(spa_feature_t, spa_feature_t);
-extern void zpool_feature_init(void);
+_ZFEATURE_COMMON_H void zpool_feature_init(void);
#ifdef __cplusplus
}
diff --git a/include/zfs_comutil.h b/include/zfs_comutil.h
index 17b07d9e4..3e4716224 100644
--- a/include/zfs_comutil.h
+++ b/include/zfs_comutil.h
@@ -24,7 +24,7 @@
*/
#ifndef _ZFS_COMUTIL_H
-#define _ZFS_COMUTIL_H
+#define _ZFS_COMUTIL_H extern __attribute__((visibility("default")))
#include <sys/fs/zfs.h>
#include <sys/types.h>
@@ -33,17 +33,18 @@
extern "C" {
#endif
-extern boolean_t zfs_allocatable_devs(nvlist_t *);
-extern boolean_t zfs_special_devs(nvlist_t *, char *);
-extern void zpool_get_load_policy(nvlist_t *, zpool_load_policy_t *);
+_ZFS_COMUTIL_H boolean_t zfs_allocatable_devs(nvlist_t *);
+_ZFS_COMUTIL_H boolean_t zfs_special_devs(nvlist_t *, char *);
+_ZFS_COMUTIL_H void zpool_get_load_policy(nvlist_t *, zpool_load_policy_t *);
-extern int zfs_zpl_version_map(int spa_version);
-extern int zfs_spa_version_map(int zpl_version);
+_ZFS_COMUTIL_H int zfs_zpl_version_map(int spa_version);
+_ZFS_COMUTIL_H int zfs_spa_version_map(int zpl_version);
-extern boolean_t zfs_dataset_name_hidden(const char *);
+_ZFS_COMUTIL_H boolean_t zfs_dataset_name_hidden(const char *);
#define ZFS_NUM_LEGACY_HISTORY_EVENTS 41
-extern const char *zfs_history_event_names[ZFS_NUM_LEGACY_HISTORY_EVENTS];
+_ZFS_COMUTIL_H const char *
+ zfs_history_event_names[ZFS_NUM_LEGACY_HISTORY_EVENTS];
#ifdef __cplusplus
}
diff --git a/include/zfs_deleg.h b/include/zfs_deleg.h
index 5738b2a73..1ae08850f 100644
--- a/include/zfs_deleg.h
+++ b/include/zfs_deleg.h
@@ -25,7 +25,7 @@
*/
#ifndef _ZFS_DELEG_H
-#define _ZFS_DELEG_H
+#define _ZFS_DELEG_H extern __attribute__((visibility("default")))
#include <sys/fs/zfs.h>
@@ -85,12 +85,12 @@ typedef struct zfs_deleg_perm_tab {
zfs_deleg_note_t z_note;
} zfs_deleg_perm_tab_t;
-extern zfs_deleg_perm_tab_t zfs_deleg_perm_tab[];
+_ZFS_DELEG_H zfs_deleg_perm_tab_t zfs_deleg_perm_tab[];
-int zfs_deleg_verify_nvlist(nvlist_t *nvlist);
-void zfs_deleg_whokey(char *attr, zfs_deleg_who_type_t type,
+_ZFS_DELEG_H int zfs_deleg_verify_nvlist(nvlist_t *nvlist);
+_ZFS_DELEG_H void zfs_deleg_whokey(char *attr, zfs_deleg_who_type_t type,
char checkflag, void *data);
-const char *zfs_deleg_canonicalize_perm(const char *perm);
+_ZFS_DELEG_H const char *zfs_deleg_canonicalize_perm(const char *perm);
#ifdef __cplusplus
}
diff --git a/include/zfs_fletcher.h b/include/zfs_fletcher.h
index 9e8b2cf7c..bb356c59a 100644
--- a/include/zfs_fletcher.h
+++ b/include/zfs_fletcher.h
@@ -27,7 +27,7 @@
*/
#ifndef _ZFS_FLETCHER_H
-#define _ZFS_FLETCHER_H
+#define _ZFS_FLETCHER_H extern __attribute__((visibility("default")))
#include <sys/types.h>
#include <sys/spa_checksum.h>
@@ -48,19 +48,24 @@ extern "C" {
* checksum method is added. This method will ignore last (size % 4) bytes of
* the data buffer.
*/
-void fletcher_init(zio_cksum_t *);
-void fletcher_2_native(const void *, uint64_t, const void *, zio_cksum_t *);
-void fletcher_2_byteswap(const void *, uint64_t, const void *, zio_cksum_t *);
-void fletcher_4_native(const void *, uint64_t, const void *, zio_cksum_t *);
-int fletcher_2_incremental_native(void *, size_t, void *);
-int fletcher_2_incremental_byteswap(void *, size_t, void *);
-void fletcher_4_native_varsize(const void *, uint64_t, zio_cksum_t *);
-void fletcher_4_byteswap(const void *, uint64_t, const void *, zio_cksum_t *);
-int fletcher_4_incremental_native(void *, size_t, void *);
-int fletcher_4_incremental_byteswap(void *, size_t, void *);
-int fletcher_4_impl_set(const char *selector);
-void fletcher_4_init(void);
-void fletcher_4_fini(void);
+_ZFS_FLETCHER_H void fletcher_init(zio_cksum_t *);
+_ZFS_FLETCHER_H void fletcher_2_native(const void *, uint64_t, const void *,
+ zio_cksum_t *);
+_ZFS_FLETCHER_H void fletcher_2_byteswap(const void *, uint64_t, const void *,
+ zio_cksum_t *);
+_ZFS_FLETCHER_H void fletcher_4_native(const void *, uint64_t, const void *,
+ zio_cksum_t *);
+_ZFS_FLETCHER_H int fletcher_2_incremental_native(void *, size_t, void *);
+_ZFS_FLETCHER_H int fletcher_2_incremental_byteswap(void *, size_t, void *);
+_ZFS_FLETCHER_H void fletcher_4_native_varsize(const void *, uint64_t,
+ zio_cksum_t *);
+_ZFS_FLETCHER_H void fletcher_4_byteswap(const void *, uint64_t, const void *,
+ zio_cksum_t *);
+_ZFS_FLETCHER_H int fletcher_4_incremental_native(void *, size_t, void *);
+_ZFS_FLETCHER_H int fletcher_4_incremental_byteswap(void *, size_t, void *);
+_ZFS_FLETCHER_H int fletcher_4_impl_set(const char *selector);
+_ZFS_FLETCHER_H void fletcher_4_init(void);
+_ZFS_FLETCHER_H void fletcher_4_fini(void);
@@ -124,31 +129,31 @@ typedef struct fletcher_4_func {
const char *name;
} fletcher_4_ops_t;
-extern const fletcher_4_ops_t fletcher_4_superscalar_ops;
-extern const fletcher_4_ops_t fletcher_4_superscalar4_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_superscalar_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_superscalar4_ops;
#if defined(HAVE_SSE2)
-extern const fletcher_4_ops_t fletcher_4_sse2_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_sse2_ops;
#endif
#if defined(HAVE_SSE2) && defined(HAVE_SSSE3)
-extern const fletcher_4_ops_t fletcher_4_ssse3_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_ssse3_ops;
#endif
#if defined(HAVE_AVX) && defined(HAVE_AVX2)
-extern const fletcher_4_ops_t fletcher_4_avx2_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_avx2_ops;
#endif
#if defined(__x86_64) && defined(HAVE_AVX512F)
-extern const fletcher_4_ops_t fletcher_4_avx512f_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_avx512f_ops;
#endif
#if defined(__x86_64) && defined(HAVE_AVX512BW)
-extern const fletcher_4_ops_t fletcher_4_avx512bw_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_avx512bw_ops;
#endif
#if defined(__aarch64__)
-extern const fletcher_4_ops_t fletcher_4_aarch64_neon_ops;
+_ZFS_FLETCHER_H const fletcher_4_ops_t fletcher_4_aarch64_neon_ops;
#endif
#ifdef __cplusplus
diff --git a/include/zfs_namecheck.h b/include/zfs_namecheck.h
index 197c40b56..4739b065c 100644
--- a/include/zfs_namecheck.h
+++ b/include/zfs_namecheck.h
@@ -27,7 +27,7 @@
*/
#ifndef _ZFS_NAMECHECK_H
-#define _ZFS_NAMECHECK_H
+#define _ZFS_NAMECHECK_H extern __attribute__((visibility("default")))
#ifdef __cplusplus
extern "C" {
@@ -51,18 +51,22 @@ typedef enum {
#define ZFS_PERMSET_MAXLEN 64
-extern int zfs_max_dataset_nesting;
+_ZFS_NAMECHECK_H int zfs_max_dataset_nesting;
-int get_dataset_depth(const char *);
-int pool_namecheck(const char *, namecheck_err_t *, char *);
-int entity_namecheck(const char *, namecheck_err_t *, char *);
-int dataset_namecheck(const char *, namecheck_err_t *, char *);
-int snapshot_namecheck(const char *, namecheck_err_t *, char *);
-int bookmark_namecheck(const char *, namecheck_err_t *, char *);
-int dataset_nestcheck(const char *);
-int mountpoint_namecheck(const char *, namecheck_err_t *);
-int zfs_component_namecheck(const char *, namecheck_err_t *, char *);
-int permset_namecheck(const char *, namecheck_err_t *, char *);
+_ZFS_NAMECHECK_H int get_dataset_depth(const char *);
+_ZFS_NAMECHECK_H int pool_namecheck(const char *, namecheck_err_t *, char *);
+_ZFS_NAMECHECK_H int entity_namecheck(const char *, namecheck_err_t *, char *);
+_ZFS_NAMECHECK_H int dataset_namecheck(const char *, namecheck_err_t *, char *);
+_ZFS_NAMECHECK_H int snapshot_namecheck(const char *, namecheck_err_t *,
+ char *);
+_ZFS_NAMECHECK_H int bookmark_namecheck(const char *, namecheck_err_t *,
+ char *);
+_ZFS_NAMECHECK_H int dataset_nestcheck(const char *);
+_ZFS_NAMECHECK_H int mountpoint_namecheck(const char *, namecheck_err_t *);
+_ZFS_NAMECHECK_H int zfs_component_namecheck(const char *, namecheck_err_t *,
+ char *);
+_ZFS_NAMECHECK_H int permset_namecheck(const char *, namecheck_err_t *,
+ char *);
#ifdef __cplusplus
}
diff --git a/include/zfs_prop.h b/include/zfs_prop.h
index 89b6a2024..91b5032e7 100644
--- a/include/zfs_prop.h
+++ b/include/zfs_prop.h
@@ -24,7 +24,7 @@
*/
#ifndef _ZFS_PROP_H
-#define _ZFS_PROP_H
+#define _ZFS_PROP_H extern __attribute__((visibility("default")))
#include <sys/fs/zfs.h>
#include <sys/types.h>
@@ -87,44 +87,46 @@ typedef struct {
/*
* zfs dataset property functions
*/
-void zfs_prop_init(void);
-zprop_type_t zfs_prop_get_type(zfs_prop_t);
-boolean_t zfs_prop_delegatable(zfs_prop_t prop);
-zprop_desc_t *zfs_prop_get_table(void);
+_ZFS_PROP_H void zfs_prop_init(void);
+_ZFS_PROP_H zprop_type_t zfs_prop_get_type(zfs_prop_t);
+_ZFS_PROP_H boolean_t zfs_prop_delegatable(zfs_prop_t prop);
+_ZFS_PROP_H zprop_desc_t *zfs_prop_get_table(void);
/*
* zpool property functions
*/
-void zpool_prop_init(void);
-zprop_type_t zpool_prop_get_type(zpool_prop_t);
-zprop_desc_t *zpool_prop_get_table(void);
+_ZFS_PROP_H void zpool_prop_init(void);
+_ZFS_PROP_H zprop_type_t zpool_prop_get_type(zpool_prop_t);
+_ZFS_PROP_H zprop_desc_t *zpool_prop_get_table(void);
/*
* Common routines to initialize property tables
*/
-void zprop_register_impl(int, const char *, zprop_type_t, uint64_t,
+_ZFS_PROP_H void zprop_register_impl(int, const char *, zprop_type_t, uint64_t,
const char *, zprop_attr_t, int, const char *, const char *,
boolean_t, boolean_t, const zprop_index_t *);
-void zprop_register_string(int, const char *, const char *,
+_ZFS_PROP_H void zprop_register_string(int, const char *, const char *,
zprop_attr_t attr, int, const char *, const char *);
-void zprop_register_number(int, const char *, uint64_t, zprop_attr_t, int,
- const char *, const char *);
-void zprop_register_index(int, const char *, uint64_t, zprop_attr_t, int,
- const char *, const char *, const zprop_index_t *);
-void zprop_register_hidden(int, const char *, zprop_type_t, zprop_attr_t,
- int, const char *);
+_ZFS_PROP_H void zprop_register_number(int, const char *, uint64_t,
+ zprop_attr_t, int, const char *, const char *);
+_ZFS_PROP_H void zprop_register_index(int, const char *, uint64_t, zprop_attr_t,
+ int, const char *, const char *, const zprop_index_t *);
+_ZFS_PROP_H void zprop_register_hidden(int, const char *, zprop_type_t,
+ zprop_attr_t, int, const char *);
/*
* Common routines for zfs and zpool property management
*/
-int zprop_iter_common(zprop_func, void *, boolean_t, boolean_t, zfs_type_t);
-int zprop_name_to_prop(const char *, zfs_type_t);
-int zprop_string_to_index(int, const char *, uint64_t *, zfs_type_t);
-int zprop_index_to_string(int, uint64_t, const char **, zfs_type_t);
-uint64_t zprop_random_value(int, uint64_t, zfs_type_t);
-const char *zprop_values(int, zfs_type_t);
-size_t zprop_width(int, boolean_t *, zfs_type_t);
-boolean_t zprop_valid_for_type(int, zfs_type_t, boolean_t);
+_ZFS_PROP_H int zprop_iter_common(zprop_func, void *, boolean_t, boolean_t,
+ zfs_type_t);
+_ZFS_PROP_H int zprop_name_to_prop(const char *, zfs_type_t);
+_ZFS_PROP_H int zprop_string_to_index(int, const char *, uint64_t *,
+ zfs_type_t);
+_ZFS_PROP_H int zprop_index_to_string(int, uint64_t, const char **, zfs_type_t);
+_ZFS_PROP_H uint64_t zprop_random_value(int, uint64_t, zfs_type_t);
+_ZFS_PROP_H const char *zprop_values(int, zfs_type_t);
+_ZFS_PROP_H size_t zprop_width(int, boolean_t *, zfs_type_t);
+_ZFS_PROP_H boolean_t zprop_valid_for_type(int, zfs_type_t, boolean_t);
#ifdef __cplusplus
}
diff --git a/lib/libzfs/Makefile.am b/lib/libzfs/Makefile.am
index 9385eb1aa..e3527ffe7 100644
--- a/lib/libzfs/Makefile.am
+++ b/lib/libzfs/Makefile.am
@@ -8,6 +8,7 @@ VPATH = \
# Suppress unused but set variable warnings often due to ASSERTs
AM_CFLAGS += $(NO_UNUSED_BUT_SET_VARIABLE)
AM_CFLAGS += $(LIBCRYPTO_CFLAGS) $(ZLIB_CFLAGS)
+AM_CFLAGS += -fvisibility=hidden
pkgconfig_DATA = libzfs.pc
diff --git a/lib/libzfs/libzfs.abi b/lib/libzfs/libzfs.abi
index 74465c365..3dd8b2b14 100644
--- a/lib/libzfs/libzfs.abi
+++ b/lib/libzfs/libzfs.abi
@@ -11,31 +11,13 @@
<dependency name='libc.so.6'/>
</elf-needed>
<elf-function-symbols>
- <elf-symbol name='SHA256Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='SHA2Final' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='SHA2Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='SHA2Update' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='SHA384Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='SHA512Init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='bookmark_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_free' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_gather' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_haszonedchild' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_postfix' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_prefix' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_remove' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_rename' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='changelist_unshare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='cityhash4' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='color_end' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='color_start' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='create_parents' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='dataset_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='dataset_nestcheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='do_mount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='do_unmount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='entity_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='find_shares_object' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='fletcher_2_byteswap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='fletcher_2_incremental_byteswap' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='fletcher_2_incremental_native' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -52,8 +34,6 @@
<elf-symbol name='get_dataset_depth' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='getprop_uint64' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='is_mounted' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='is_shared' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='isa_child_of' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libshare_nfs_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libshare_smb_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_add_handle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -65,7 +45,6 @@
<elf-symbol name='libzfs_fini' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_free_str_array' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_init' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='libzfs_load_module' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_mnttab_add' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_mnttab_cache' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_mnttab_find' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -76,19 +55,11 @@
<elf-symbol name='libzfs_run_process' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_run_process_get_stdout' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_run_process_get_stdout_nopath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='libzfs_set_pipe_max' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='make_bookmark_handle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='make_dataset_handle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='make_dataset_handle_zc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='make_dataset_simple_handle_zc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='mountpoint_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='namespace_clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='no_memory' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='permset_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='pool_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='printf_color' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='register_fstype' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='remove_mountpoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='sa_commit_shares' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='sa_disable_share' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='sa_enable_share' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -96,28 +67,18 @@
<elf-symbol name='sa_is_shared' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='sa_validate_shareopts' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='snapshot_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='unshare_one' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zcmd_alloc_dst_nvlist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zcmd_expand_dst_nvlist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zcmd_free_nvlists' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zcmd_read_dst_nvlist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zcmd_write_conf_nvlist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zcmd_write_src_nvlist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfeature_depends_on' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfeature_is_supported' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfeature_is_valid_guid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfeature_lookup_guid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfeature_lookup_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_adjust_mount_options' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_alloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_allocatable_devs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_asprintf' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_bookmark_exists' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_clone' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_close' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_commit_all_shares' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_commit_nfs_shares' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_commit_proto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_commit_shares' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_commit_smb_shares' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_component_namecheck' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -138,9 +99,6 @@
<elf-symbol name='zfs_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_destroy_snaps' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_destroy_snaps_nvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_error_aux' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_error_fmt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_expand_proplist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_foreach_mountpoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_get_all_props' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -159,11 +117,9 @@
<elf-symbol name='zfs_hold' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_hold_nvl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_ioctl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_is_mountable' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_is_mounted' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_is_shared' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_is_shared_nfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_is_shared_proto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_is_shared_smb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_iter_bookmarks' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_iter_children' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -184,7 +140,6 @@
<elf-symbol name='zfs_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_parent_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_parse_mount_options' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_parse_options' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_path_to_zhandle' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_promote' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_prop_align_right' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -223,7 +178,6 @@
<elf-symbol name='zfs_prop_visible' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_prop_written' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_prune_proplist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_realloc' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_receive' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_refresh_properties' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_release' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -237,10 +191,8 @@
<elf-symbol name='zfs_send_resume_token_to_nvlist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_send_saved' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_set_fsacl' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_setprop_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_share' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_share_nfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_share_proto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_share_smb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_shareall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_show_diffs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -254,14 +206,11 @@
<elf-symbol name='zfs_spa_version_map' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_special_devs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_standard_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_standard_error_fmt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_strdup' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_type_to_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_unmount' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_unmountall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_unshare' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_unshare_nfs' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_unshare_proto' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_unshare_smb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_unshareall' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_unshareall_bypath' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -270,7 +219,6 @@
<elf-symbol name='zfs_unshareall_smb' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_userspace' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_valid_proplist' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zfs_validate_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_version_kernel' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_version_print' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfs_version_userland' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -285,7 +233,7 @@
<elf-symbol name='zpool_destroy' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_disable_datasets' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_discard_checkpoint' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_enable_datasets' type='func-type' binding='global-binding' visibility='default-visibility' alias='zpool_mount_datasets' is-defined='yes'/>
+ <elf-symbol name='zpool_enable_datasets' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_events_clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_events_next' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_events_seek' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -322,14 +270,11 @@
<elf-symbol name='zpool_label_disk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_load_compat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_log_history' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_mount_datasets' type='func-type' binding='weak-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_name_to_prop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_name_valid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_obj_to_path' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_obj_to_path_ds' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_open' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_open_canfail' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_open_silent' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_pool_state_to_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_print_unsup_feat' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_prop_align_right' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -352,18 +297,14 @@
<elf-symbol name='zpool_props_refresh' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_refresh_stats' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_reguid' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_relabel_disk' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_reopen_one' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_scan' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_set_bootenv' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_set_prop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_skip_pool' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_standard_error' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_standard_error_fmt' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_state_to_name' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_sync_one' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_trim' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zpool_unmount_datasets' type='func-type' binding='weak-binding' visibility='default-visibility' alias='zpool_disable_datasets' is-defined='yes'/>
<elf-symbol name='zpool_upgrade' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_vdev_attach' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_vdev_clear' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -380,14 +321,12 @@
<elf-symbol name='zpool_vdev_split' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_wait' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zpool_wait_status' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zprop_expand_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_free_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_get_list' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_index_to_string' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_iter' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_iter_common' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_name_to_prop' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='zprop_parse_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_print_one_property' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_random_value' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zprop_register_hidden' type='func-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -411,10 +350,6 @@
<elf-symbol name='fletcher_4_superscalar4_ops' size='64' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='fletcher_4_superscalar_ops' size='64' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='libzfs_config_ops' size='16' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='nfs_only' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='proto_table' size='48' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='share_all_proto' size='12' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
- <elf-symbol name='smb_only' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='smb_shares' size='8' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='spa_feature_table' size='1904' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
<elf-symbol name='zfeature_checks_disable' size='4' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
@@ -424,532 +359,389 @@
<elf-symbol name='zfs_userquota_prop_prefixes' size='96' type='object-type' binding='global-binding' visibility='default-visibility' is-defined='yes'/>
</elf-variable-symbols>
<abi-instr version='1.0' address-size='64' path='libzfs_changelist.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <type-decl name='int' size-in-bits='32' id='type-id-1'/>
- <class-decl name='prop_changelist' size-in-bits='448' is-struct='yes' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='75' column='1' id='type-id-2'>
- <data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='cl_prop' type-id='type-id-3' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='76' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='cl_realprop' type-id='type-id-3' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='77' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='cl_shareprop' type-id='type-id-3' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='78' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='cl_pool' type-id='type-id-4' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='79' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='cl_tree' type-id='type-id-5' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='80' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='cl_waslegacy' type-id='type-id-6' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='81' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='cl_allchildren' type-id='type-id-6' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='82' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='cl_alldependents' type-id='type-id-6' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='83' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='352'>
- <var-decl name='cl_mflags' type-id='type-id-1' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='84' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='cl_gflags' type-id='type-id-1' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='85' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='416'>
- <var-decl name='cl_haszonedchild' type-id='type-id-6' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='86' column='1'/>
- </data-member>
- </class-decl>
- <type-decl name='unnamed-enum-underlying-type' is-anonymous='yes' size-in-bits='32' alignment-in-bits='32' id='type-id-7'/>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='91' column='1' id='type-id-8'>
- <underlying-type type-id='type-id-7'/>
- <enumerator name='ZPROP_CONT' value='-2'/>
- <enumerator name='ZPROP_INVAL' value='-1'/>
- <enumerator name='ZFS_PROP_TYPE' value='0'/>
- <enumerator name='ZFS_PROP_CREATION' value='1'/>
- <enumerator name='ZFS_PROP_USED' value='2'/>
- <enumerator name='ZFS_PROP_AVAILABLE' value='3'/>
- <enumerator name='ZFS_PROP_REFERENCED' value='4'/>
- <enumerator name='ZFS_PROP_COMPRESSRATIO' value='5'/>
- <enumerator name='ZFS_PROP_MOUNTED' value='6'/>
- <enumerator name='ZFS_PROP_ORIGIN' value='7'/>
- <enumerator name='ZFS_PROP_QUOTA' value='8'/>
- <enumerator name='ZFS_PROP_RESERVATION' value='9'/>
- <enumerator name='ZFS_PROP_VOLSIZE' value='10'/>
- <enumerator name='ZFS_PROP_VOLBLOCKSIZE' value='11'/>
- <enumerator name='ZFS_PROP_RECORDSIZE' value='12'/>
- <enumerator name='ZFS_PROP_MOUNTPOINT' value='13'/>
- <enumerator name='ZFS_PROP_SHARENFS' value='14'/>
- <enumerator name='ZFS_PROP_CHECKSUM' value='15'/>
- <enumerator name='ZFS_PROP_COMPRESSION' value='16'/>
- <enumerator name='ZFS_PROP_ATIME' value='17'/>
- <enumerator name='ZFS_PROP_DEVICES' value='18'/>
- <enumerator name='ZFS_PROP_EXEC' value='19'/>
- <enumerator name='ZFS_PROP_SETUID' value='20'/>
- <enumerator name='ZFS_PROP_READONLY' value='21'/>
- <enumerator name='ZFS_PROP_ZONED' value='22'/>
- <enumerator name='ZFS_PROP_SNAPDIR' value='23'/>
- <enumerator name='ZFS_PROP_ACLMODE' value='24'/>
- <enumerator name='ZFS_PROP_ACLINHERIT' value='25'/>
- <enumerator name='ZFS_PROP_CREATETXG' value='26'/>
- <enumerator name='ZFS_PROP_NAME' value='27'/>
- <enumerator name='ZFS_PROP_CANMOUNT' value='28'/>
- <enumerator name='ZFS_PROP_ISCSIOPTIONS' value='29'/>
- <enumerator name='ZFS_PROP_XATTR' value='30'/>
- <enumerator name='ZFS_PROP_NUMCLONES' value='31'/>
- <enumerator name='ZFS_PROP_COPIES' value='32'/>
- <enumerator name='ZFS_PROP_VERSION' value='33'/>
- <enumerator name='ZFS_PROP_UTF8ONLY' value='34'/>
- <enumerator name='ZFS_PROP_NORMALIZE' value='35'/>
- <enumerator name='ZFS_PROP_CASE' value='36'/>
- <enumerator name='ZFS_PROP_VSCAN' value='37'/>
- <enumerator name='ZFS_PROP_NBMAND' value='38'/>
- <enumerator name='ZFS_PROP_SHARESMB' value='39'/>
- <enumerator name='ZFS_PROP_REFQUOTA' value='40'/>
- <enumerator name='ZFS_PROP_REFRESERVATION' value='41'/>
- <enumerator name='ZFS_PROP_GUID' value='42'/>
- <enumerator name='ZFS_PROP_PRIMARYCACHE' value='43'/>
- <enumerator name='ZFS_PROP_SECONDARYCACHE' value='44'/>
- <enumerator name='ZFS_PROP_USEDSNAP' value='45'/>
- <enumerator name='ZFS_PROP_USEDDS' value='46'/>
- <enumerator name='ZFS_PROP_USEDCHILD' value='47'/>
- <enumerator name='ZFS_PROP_USEDREFRESERV' value='48'/>
- <enumerator name='ZFS_PROP_USERACCOUNTING' value='49'/>
- <enumerator name='ZFS_PROP_STMF_SHAREINFO' value='50'/>
- <enumerator name='ZFS_PROP_DEFER_DESTROY' value='51'/>
- <enumerator name='ZFS_PROP_USERREFS' value='52'/>
- <enumerator name='ZFS_PROP_LOGBIAS' value='53'/>
- <enumerator name='ZFS_PROP_UNIQUE' value='54'/>
- <enumerator name='ZFS_PROP_OBJSETID' value='55'/>
- <enumerator name='ZFS_PROP_DEDUP' value='56'/>
- <enumerator name='ZFS_PROP_MLSLABEL' value='57'/>
- <enumerator name='ZFS_PROP_SYNC' value='58'/>
- <enumerator name='ZFS_PROP_DNODESIZE' value='59'/>
- <enumerator name='ZFS_PROP_REFRATIO' value='60'/>
- <enumerator name='ZFS_PROP_WRITTEN' value='61'/>
- <enumerator name='ZFS_PROP_CLONES' value='62'/>
- <enumerator name='ZFS_PROP_LOGICALUSED' value='63'/>
- <enumerator name='ZFS_PROP_LOGICALREFERENCED' value='64'/>
- <enumerator name='ZFS_PROP_INCONSISTENT' value='65'/>
- <enumerator name='ZFS_PROP_VOLMODE' value='66'/>
- <enumerator name='ZFS_PROP_FILESYSTEM_LIMIT' value='67'/>
- <enumerator name='ZFS_PROP_SNAPSHOT_LIMIT' value='68'/>
- <enumerator name='ZFS_PROP_FILESYSTEM_COUNT' value='69'/>
- <enumerator name='ZFS_PROP_SNAPSHOT_COUNT' value='70'/>
- <enumerator name='ZFS_PROP_SNAPDEV' value='71'/>
- <enumerator name='ZFS_PROP_ACLTYPE' value='72'/>
- <enumerator name='ZFS_PROP_SELINUX_CONTEXT' value='73'/>
- <enumerator name='ZFS_PROP_SELINUX_FSCONTEXT' value='74'/>
- <enumerator name='ZFS_PROP_SELINUX_DEFCONTEXT' value='75'/>
- <enumerator name='ZFS_PROP_SELINUX_ROOTCONTEXT' value='76'/>
- <enumerator name='ZFS_PROP_RELATIME' value='77'/>
- <enumerator name='ZFS_PROP_REDUNDANT_METADATA' value='78'/>
- <enumerator name='ZFS_PROP_OVERLAY' value='79'/>
- <enumerator name='ZFS_PROP_PREV_SNAP' value='80'/>
- <enumerator name='ZFS_PROP_RECEIVE_RESUME_TOKEN' value='81'/>
- <enumerator name='ZFS_PROP_ENCRYPTION' value='82'/>
- <enumerator name='ZFS_PROP_KEYLOCATION' value='83'/>
- <enumerator name='ZFS_PROP_KEYFORMAT' value='84'/>
- <enumerator name='ZFS_PROP_PBKDF2_SALT' value='85'/>
- <enumerator name='ZFS_PROP_PBKDF2_ITERS' value='86'/>
- <enumerator name='ZFS_PROP_ENCRYPTION_ROOT' value='87'/>
- <enumerator name='ZFS_PROP_KEY_GUID' value='88'/>
- <enumerator name='ZFS_PROP_KEYSTATUS' value='89'/>
- <enumerator name='ZFS_PROP_REMAPTXG' value='90'/>
- <enumerator name='ZFS_PROP_SPECIAL_SMALL_BLOCKS' value='91'/>
- <enumerator name='ZFS_PROP_IVSET_GUID' value='92'/>
- <enumerator name='ZFS_PROP_REDACTED' value='93'/>
- <enumerator name='ZFS_PROP_REDACT_SNAPS' value='94'/>
- <enumerator name='ZFS_NUM_PROPS' value='95'/>
- </enum-decl>
- <typedef-decl name='zfs_prop_t' type-id='type-id-8' filepath='../../include/sys/fs/zfs.h' line='190' column='1' id='type-id-3'/>
- <class-decl name='uu_avl_pool' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-9'/>
- <typedef-decl name='uu_avl_pool_t' type-id='type-id-9' filepath='../../include/libuutil.h' line='259' column='1' id='type-id-10'/>
- <pointer-type-def type-id='type-id-10' size-in-bits='64' id='type-id-4'/>
- <class-decl name='uu_avl' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-11'/>
- <typedef-decl name='uu_avl_t' type-id='type-id-11' filepath='../../include/libuutil.h' line='260' column='1' id='type-id-12'/>
- <pointer-type-def type-id='type-id-12' size-in-bits='64' id='type-id-5'/>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../lib/libspl/include/sys/stdtypes.h' line='26' column='1' id='type-id-13'>
- <underlying-type type-id='type-id-7'/>
- <enumerator name='B_FALSE' value='0'/>
- <enumerator name='B_TRUE' value='1'/>
- </enum-decl>
- <typedef-decl name='boolean_t' type-id='type-id-13' filepath='../../lib/libspl/include/sys/stdtypes.h' line='29' column='1' id='type-id-6'/>
- <typedef-decl name='prop_changelist_t' type-id='type-id-2' filepath='../../include/libzfs_impl.h' line='173' column='1' id='type-id-14'/>
- <pointer-type-def type-id='type-id-14' size-in-bits='64' id='type-id-15'/>
- <function-decl name='changelist_prefix' mangled-name='changelist_prefix' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_prefix'>
- <parameter type-id='type-id-15' name='clp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='96' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <class-decl name='uu_avl_walk' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-16'/>
- <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-17'/>
- <pointer-type-def type-id='type-id-11' size-in-bits='64' id='type-id-18'/>
- <type-decl name='unsigned int' size-in-bits='32' id='type-id-19'/>
- <function-decl name='uu_avl_walk_start' filepath='../../include/libuutil.h' line='338' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-17'/>
- </function-decl>
- <type-decl name='void' id='type-id-20'/>
- <pointer-type-def type-id='type-id-20' size-in-bits='64' id='type-id-21'/>
- <function-decl name='uu_avl_walk_next' filepath='../../include/libuutil.h' line='339' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-17'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='getzoneid' filepath='../../include/sys/zfs_context.h' line='732' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-1'/>
+ <class-decl name='uu_avl_walk' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1'/>
+ <pointer-type-def type-id='type-id-1' size-in-bits='64' id='type-id-2'/>
+ <class-decl name='uu_avl' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-3'/>
+ <pointer-type-def type-id='type-id-3' size-in-bits='64' id='type-id-4'/>
+ <type-decl name='unsigned int' size-in-bits='32' id='type-id-5'/>
+ <function-decl name='uu_avl_walk_start' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-2'/>
+ </function-decl>
+ <type-decl name='void' id='type-id-6'/>
+ <pointer-type-def type-id='type-id-6' size-in-bits='64' id='type-id-7'/>
+ <function-decl name='uu_avl_walk_next' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-2'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <type-decl name='int' size-in-bits='32' id='type-id-8'/>
+ <function-decl name='getzoneid' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='zfs_handle' size-in-bits='4928' is-struct='yes' visibility='default' filepath='../../include/libzfs_impl.h' line='76' column='1' id='type-id-22'>
+ <class-decl name='zfs_handle' size-in-bits='4928' is-struct='yes' visibility='default' id='type-id-9'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zfs_hdl' type-id='type-id-23' visibility='default' filepath='../../include/libzfs_impl.h' line='77' column='1'/>
+ <var-decl name='zfs_hdl' type-id='type-id-10' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='zpool_hdl' type-id='type-id-24' visibility='default' filepath='../../include/libzfs_impl.h' line='78' column='1'/>
+ <var-decl name='zpool_hdl' type-id='type-id-11' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='zfs_name' type-id='type-id-25' visibility='default' filepath='../../include/libzfs_impl.h' line='79' column='1'/>
+ <var-decl name='zfs_name' type-id='type-id-12' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2176'>
- <var-decl name='zfs_type' type-id='type-id-26' visibility='default' filepath='../../include/libzfs_impl.h' line='80' column='1'/>
+ <var-decl name='zfs_type' type-id='type-id-13' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2208'>
- <var-decl name='zfs_head_type' type-id='type-id-26' visibility='default' filepath='../../include/libzfs_impl.h' line='81' column='1'/>
+ <var-decl name='zfs_head_type' type-id='type-id-13' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2240'>
- <var-decl name='zfs_dmustats' type-id='type-id-27' visibility='default' filepath='../../include/libzfs_impl.h' line='82' column='1'/>
+ <var-decl name='zfs_dmustats' type-id='type-id-14' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='4544'>
- <var-decl name='zfs_props' type-id='type-id-28' visibility='default' filepath='../../include/libzfs_impl.h' line='83' column='1'/>
+ <var-decl name='zfs_props' type-id='type-id-15' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='4608'>
- <var-decl name='zfs_user_props' type-id='type-id-28' visibility='default' filepath='../../include/libzfs_impl.h' line='84' column='1'/>
+ <var-decl name='zfs_user_props' type-id='type-id-15' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='4672'>
- <var-decl name='zfs_recvd_props' type-id='type-id-28' visibility='default' filepath='../../include/libzfs_impl.h' line='85' column='1'/>
+ <var-decl name='zfs_recvd_props' type-id='type-id-15' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='4736'>
- <var-decl name='zfs_mntcheck' type-id='type-id-6' visibility='default' filepath='../../include/libzfs_impl.h' line='86' column='1'/>
+ <var-decl name='zfs_mntcheck' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='4800'>
- <var-decl name='zfs_mntopts' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='87' column='1'/>
+ <var-decl name='zfs_mntopts' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='4864'>
- <var-decl name='zfs_props_table' type-id='type-id-30' visibility='default' filepath='../../include/libzfs_impl.h' line='88' column='1'/>
+ <var-decl name='zfs_props_table' type-id='type-id-18' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='libzfs_handle' size-in-bits='18240' is-struct='yes' visibility='default' filepath='../../include/libzfs_impl.h' line='48' column='1' id='type-id-31'>
+ <class-decl name='libzfs_handle' size-in-bits='18240' is-struct='yes' visibility='default' id='type-id-19'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='libzfs_error' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='49' column='1'/>
+ <var-decl name='libzfs_error' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='libzfs_fd' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='50' column='1'/>
+ <var-decl name='libzfs_fd' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='libzfs_pool_handles' type-id='type-id-24' visibility='default' filepath='../../include/libzfs_impl.h' line='51' column='1'/>
+ <var-decl name='libzfs_pool_handles' type-id='type-id-11' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='libzfs_ns_avlpool' type-id='type-id-4' visibility='default' filepath='../../include/libzfs_impl.h' line='52' column='1'/>
+ <var-decl name='libzfs_ns_avlpool' type-id='type-id-20' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='libzfs_ns_avl' type-id='type-id-5' visibility='default' filepath='../../include/libzfs_impl.h' line='53' column='1'/>
+ <var-decl name='libzfs_ns_avl' type-id='type-id-21' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='libzfs_ns_gen' type-id='type-id-32' visibility='default' filepath='../../include/libzfs_impl.h' line='54' column='1'/>
+ <var-decl name='libzfs_ns_gen' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='libzfs_desc_active' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='55' column='1'/>
+ <var-decl name='libzfs_desc_active' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='352'>
- <var-decl name='libzfs_action' type-id='type-id-33' visibility='default' filepath='../../include/libzfs_impl.h' line='56' column='1'/>
+ <var-decl name='libzfs_action' type-id='type-id-23' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8544'>
- <var-decl name='libzfs_desc' type-id='type-id-33' visibility='default' filepath='../../include/libzfs_impl.h' line='57' column='1'/>
+ <var-decl name='libzfs_desc' type-id='type-id-23' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='16736'>
- <var-decl name='libzfs_printerr' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='58' column='1'/>
+ <var-decl name='libzfs_printerr' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='16768'>
- <var-decl name='libzfs_mnttab_enable' type-id='type-id-6' visibility='default' filepath='../../include/libzfs_impl.h' line='59' column='1'/>
+ <var-decl name='libzfs_mnttab_enable' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='16832'>
- <var-decl name='libzfs_mnttab_cache_lock' type-id='type-id-34' visibility='default' filepath='../../include/libzfs_impl.h' line='66' column='1'/>
+ <var-decl name='libzfs_mnttab_cache_lock' type-id='type-id-24' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='17152'>
- <var-decl name='libzfs_mnttab_cache' type-id='type-id-35' visibility='default' filepath='../../include/libzfs_impl.h' line='67' column='1'/>
+ <var-decl name='libzfs_mnttab_cache' type-id='type-id-25' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='17472'>
- <var-decl name='libzfs_pool_iter' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='68' column='1'/>
+ <var-decl name='libzfs_pool_iter' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='17504'>
- <var-decl name='libzfs_prop_debug' type-id='type-id-6' visibility='default' filepath='../../include/libzfs_impl.h' line='69' column='1'/>
+ <var-decl name='libzfs_prop_debug' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='17536'>
- <var-decl name='libzfs_urire' type-id='type-id-36' visibility='default' filepath='../../include/libzfs_impl.h' line='70' column='1'/>
+ <var-decl name='libzfs_urire' type-id='type-id-26' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='18048'>
- <var-decl name='libzfs_max_nvlist' type-id='type-id-32' visibility='default' filepath='../../include/libzfs_impl.h' line='71' column='1'/>
+ <var-decl name='libzfs_max_nvlist' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='18112'>
- <var-decl name='libfetch' type-id='type-id-21' visibility='default' filepath='../../include/libzfs_impl.h' line='72' column='1'/>
+ <var-decl name='libfetch' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='18176'>
- <var-decl name='libfetch_load_error' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='73' column='1'/>
+ <var-decl name='libfetch_load_error' type-id='type-id-17' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='zpool_handle' size-in-bits='2560' is-struct='yes' visibility='default' filepath='../../include/libzfs_impl.h' line='97' column='1' id='type-id-37'>
+ <class-decl name='zpool_handle' size-in-bits='2560' is-struct='yes' visibility='default' id='type-id-27'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zpool_hdl' type-id='type-id-23' visibility='default' filepath='../../include/libzfs_impl.h' line='98' column='1'/>
+ <var-decl name='zpool_hdl' type-id='type-id-10' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='zpool_next' type-id='type-id-24' visibility='default' filepath='../../include/libzfs_impl.h' line='99' column='1'/>
+ <var-decl name='zpool_next' type-id='type-id-11' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='zpool_name' type-id='type-id-25' visibility='default' filepath='../../include/libzfs_impl.h' line='100' column='1'/>
+ <var-decl name='zpool_name' type-id='type-id-12' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2176'>
- <var-decl name='zpool_state' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='101' column='1'/>
+ <var-decl name='zpool_state' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2240'>
- <var-decl name='zpool_config_size' type-id='type-id-38' visibility='default' filepath='../../include/libzfs_impl.h' line='102' column='1'/>
+ <var-decl name='zpool_config_size' type-id='type-id-28' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2304'>
- <var-decl name='zpool_config' type-id='type-id-28' visibility='default' filepath='../../include/libzfs_impl.h' line='103' column='1'/>
+ <var-decl name='zpool_config' type-id='type-id-15' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2368'>
- <var-decl name='zpool_old_config' type-id='type-id-28' visibility='default' filepath='../../include/libzfs_impl.h' line='104' column='1'/>
+ <var-decl name='zpool_old_config' type-id='type-id-15' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2432'>
- <var-decl name='zpool_props' type-id='type-id-28' visibility='default' filepath='../../include/libzfs_impl.h' line='105' column='1'/>
+ <var-decl name='zpool_props' type-id='type-id-15' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2496'>
- <var-decl name='zpool_start_block' type-id='type-id-39' visibility='default' filepath='../../include/libzfs_impl.h' line='106' column='1'/>
+ <var-decl name='zpool_start_block' type-id='type-id-29' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='libzfs_handle_t' type-id='type-id-31' filepath='../../include/libzfs.h' line='197' column='1' id='type-id-40'/>
- <pointer-type-def type-id='type-id-40' size-in-bits='64' id='type-id-23'/>
- <typedef-decl name='zpool_handle_t' type-id='type-id-37' filepath='../../include/libzfs.h' line='196' column='1' id='type-id-41'/>
- <pointer-type-def type-id='type-id-41' size-in-bits='64' id='type-id-24'/>
- <type-decl name='char' size-in-bits='8' id='type-id-42'/>
- <type-decl name='__ARRAY_SIZE_TYPE__' size-in-bits='64' id='type-id-43'/>
+ <typedef-decl name='libzfs_handle_t' type-id='type-id-19' id='type-id-30'/>
+ <pointer-type-def type-id='type-id-30' size-in-bits='64' id='type-id-10'/>
+ <typedef-decl name='zpool_handle_t' type-id='type-id-27' id='type-id-31'/>
+ <pointer-type-def type-id='type-id-31' size-in-bits='64' id='type-id-11'/>
+ <type-decl name='char' size-in-bits='8' id='type-id-32'/>
+ <type-decl name='__ARRAY_SIZE_TYPE__' size-in-bits='64' id='type-id-33'/>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='2048' id='type-id-25'>
- <subrange length='256' type-id='type-id-43' id='type-id-44'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='2048' id='type-id-12'>
+ <subrange length='256' type-id='type-id-33' id='type-id-34'/>
</array-type-def>
- <type-decl name='unsigned long int' size-in-bits='64' id='type-id-45'/>
- <typedef-decl name='size_t' type-id='type-id-45' filepath='/usr/lib/llvm-13/lib/clang/13.0.0/include/stddef.h' line='46' column='1' id='type-id-38'/>
- <class-decl name='nvlist' size-in-bits='192' is-struct='yes' visibility='default' filepath='../../include/sys/nvpair.h' line='85' column='1' id='type-id-46'>
+ <type-decl name='unsigned long int' size-in-bits='64' id='type-id-35'/>
+ <typedef-decl name='size_t' type-id='type-id-35' id='type-id-28'/>
+ <class-decl name='nvlist' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-36'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='nvl_version' type-id='type-id-47' visibility='default' filepath='../../include/sys/nvpair.h' line='86' column='1'/>
+ <var-decl name='nvl_version' type-id='type-id-37' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='nvl_nvflag' type-id='type-id-48' visibility='default' filepath='../../include/sys/nvpair.h' line='87' column='1'/>
+ <var-decl name='nvl_nvflag' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='nvl_priv' type-id='type-id-32' visibility='default' filepath='../../include/sys/nvpair.h' line='88' column='1'/>
+ <var-decl name='nvl_priv' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='nvl_flag' type-id='type-id-48' visibility='default' filepath='../../include/sys/nvpair.h' line='89' column='1'/>
+ <var-decl name='nvl_flag' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='nvl_pad' type-id='type-id-47' visibility='default' filepath='../../include/sys/nvpair.h' line='90' column='1'/>
+ <var-decl name='nvl_pad' type-id='type-id-37' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__int32_t' type-id='type-id-1' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='40' column='1' id='type-id-49'/>
- <typedef-decl name='int32_t' type-id='type-id-49' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-intn.h' line='26' column='1' id='type-id-47'/>
- <typedef-decl name='__uint32_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='41' column='1' id='type-id-50'/>
- <typedef-decl name='uint32_t' type-id='type-id-50' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='26' column='1' id='type-id-48'/>
- <typedef-decl name='__uint64_t' type-id='type-id-45' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='44' column='1' id='type-id-51'/>
- <typedef-decl name='uint64_t' type-id='type-id-51' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='27' column='1' id='type-id-32'/>
- <typedef-decl name='nvlist_t' type-id='type-id-46' filepath='../../include/sys/nvpair.h' line='91' column='1' id='type-id-52'/>
- <pointer-type-def type-id='type-id-52' size-in-bits='64' id='type-id-28'/>
- <type-decl name='long long int' size-in-bits='64' id='type-id-53'/>
- <typedef-decl name='longlong_t' type-id='type-id-53' filepath='../../lib/libspl/include/sys/stdtypes.h' line='36' column='1' id='type-id-54'/>
- <typedef-decl name='diskaddr_t' type-id='type-id-54' filepath='../../lib/libspl/include/sys/stdtypes.h' line='41' column='1' id='type-id-39'/>
+ <typedef-decl name='__int32_t' type-id='type-id-8' id='type-id-39'/>
+ <typedef-decl name='int32_t' type-id='type-id-39' id='type-id-37'/>
+ <typedef-decl name='__uint32_t' type-id='type-id-5' id='type-id-40'/>
+ <typedef-decl name='uint32_t' type-id='type-id-40' id='type-id-38'/>
+ <typedef-decl name='__uint64_t' type-id='type-id-35' id='type-id-41'/>
+ <typedef-decl name='uint64_t' type-id='type-id-41' id='type-id-22'/>
+ <typedef-decl name='nvlist_t' type-id='type-id-36' id='type-id-42'/>
+ <pointer-type-def type-id='type-id-42' size-in-bits='64' id='type-id-15'/>
+ <type-decl name='long long int' size-in-bits='64' id='type-id-43'/>
+ <typedef-decl name='longlong_t' type-id='type-id-43' id='type-id-44'/>
+ <typedef-decl name='diskaddr_t' type-id='type-id-44' id='type-id-29'/>
+ <class-decl name='uu_avl_pool' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-45'/>
+ <typedef-decl name='uu_avl_pool_t' type-id='type-id-45' id='type-id-46'/>
+ <pointer-type-def type-id='type-id-46' size-in-bits='64' id='type-id-20'/>
+ <typedef-decl name='uu_avl_t' type-id='type-id-3' id='type-id-47'/>
+ <pointer-type-def type-id='type-id-47' size-in-bits='64' id='type-id-21'/>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='8192' id='type-id-33'>
- <subrange length='1024' type-id='type-id-43' id='type-id-55'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='8192' id='type-id-23'>
+ <subrange length='1024' type-id='type-id-33' id='type-id-48'/>
</array-type-def>
- <union-decl name='__anonymous_union__' size-in-bits='320' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='67' column='1' id='type-id-56'>
+ <type-decl name='unnamed-enum-underlying-type' is-anonymous='yes' size-in-bits='32' alignment-in-bits='32' id='type-id-49'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-50'>
+ <underlying-type type-id='type-id-49'/>
+ <enumerator name='B_FALSE' value='0'/>
+ <enumerator name='B_TRUE' value='1'/>
+ </enum-decl>
+ <typedef-decl name='boolean_t' type-id='type-id-50' id='type-id-16'/>
+ <union-decl name='__anonymous_union__' size-in-bits='320' is-anonymous='yes' visibility='default' id='type-id-51'>
<data-member access='private'>
- <var-decl name='__data' type-id='type-id-57' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='69' column='1'/>
+ <var-decl name='__data' type-id='type-id-52' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='__size' type-id='type-id-58' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='70' column='1'/>
+ <var-decl name='__size' type-id='type-id-53' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='__align' type-id='type-id-59' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='71' column='1'/>
+ <var-decl name='__align' type-id='type-id-54' visibility='default'/>
</data-member>
</union-decl>
- <class-decl name='__pthread_mutex_s' size-in-bits='320' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='118' column='1' id='type-id-57'>
+ <class-decl name='__pthread_mutex_s' size-in-bits='320' is-struct='yes' visibility='default' id='type-id-52'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='__lock' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='120' column='1'/>
+ <var-decl name='__lock' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='__count' type-id='type-id-19' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='121' column='1'/>
+ <var-decl name='__count' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='__owner' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='122' column='1'/>
+ <var-decl name='__owner' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='__nusers' type-id='type-id-19' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='124' column='1'/>
+ <var-decl name='__nusers' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='__kind' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='148' column='1'/>
+ <var-decl name='__kind' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='__spins' type-id='type-id-60' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='154' column='1'/>
+ <var-decl name='__spins' type-id='type-id-55' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='176'>
- <var-decl name='__elision' type-id='type-id-60' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='154' column='1'/>
+ <var-decl name='__elision' type-id='type-id-55' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='__list' type-id='type-id-61' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='155' column='1'/>
+ <var-decl name='__list' type-id='type-id-56' visibility='default'/>
</data-member>
</class-decl>
- <type-decl name='short int' size-in-bits='16' id='type-id-60'/>
- <class-decl name='__pthread_internal_list' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='82' column='1' id='type-id-62'>
+ <type-decl name='short int' size-in-bits='16' id='type-id-55'/>
+ <class-decl name='__pthread_internal_list' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-57'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='__prev' type-id='type-id-63' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='84' column='1'/>
+ <var-decl name='__prev' type-id='type-id-58' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='__next' type-id='type-id-63' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='85' column='1'/>
+ <var-decl name='__next' type-id='type-id-58' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-62' size-in-bits='64' id='type-id-63'/>
- <typedef-decl name='__pthread_list_t' type-id='type-id-62' filepath='/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h' line='86' column='1' id='type-id-61'/>
+ <pointer-type-def type-id='type-id-57' size-in-bits='64' id='type-id-58'/>
+ <typedef-decl name='__pthread_list_t' type-id='type-id-57' id='type-id-56'/>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='320' id='type-id-58'>
- <subrange length='40' type-id='type-id-43' id='type-id-64'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='320' id='type-id-53'>
+ <subrange length='40' type-id='type-id-33' id='type-id-59'/>
</array-type-def>
- <type-decl name='long int' size-in-bits='64' id='type-id-59'/>
- <typedef-decl name='pthread_mutex_t' type-id='type-id-56' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='72' column='1' id='type-id-34'/>
- <class-decl name='avl_tree' size-in-bits='320' is-struct='yes' visibility='default' filepath='../../include/sys/avl_impl.h' line='146' column='1' id='type-id-65'>
+ <type-decl name='long int' size-in-bits='64' id='type-id-54'/>
+ <typedef-decl name='pthread_mutex_t' type-id='type-id-51' id='type-id-24'/>
+ <class-decl name='avl_tree' size-in-bits='320' is-struct='yes' visibility='default' id='type-id-60'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='avl_root' type-id='type-id-66' visibility='default' filepath='../../include/sys/avl_impl.h' line='147' column='1'/>
+ <var-decl name='avl_root' type-id='type-id-61' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='avl_compar' type-id='type-id-67' visibility='default' filepath='../../include/sys/avl_impl.h' line='148' column='1'/>
+ <var-decl name='avl_compar' type-id='type-id-62' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='avl_offset' type-id='type-id-38' visibility='default' filepath='../../include/sys/avl_impl.h' line='149' column='1'/>
+ <var-decl name='avl_offset' type-id='type-id-28' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='avl_numnodes' type-id='type-id-68' visibility='default' filepath='../../include/sys/avl_impl.h' line='150' column='1'/>
+ <var-decl name='avl_numnodes' type-id='type-id-63' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='avl_size' type-id='type-id-38' visibility='default' filepath='../../include/sys/avl_impl.h' line='151' column='1'/>
+ <var-decl name='avl_size' type-id='type-id-28' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='avl_node' size-in-bits='192' is-struct='yes' visibility='default' filepath='../../include/sys/avl_impl.h' line='90' column='1' id='type-id-69'>
+ <class-decl name='avl_node' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-64'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='avl_child' type-id='type-id-70' visibility='default' filepath='../../include/sys/avl_impl.h' line='91' column='1'/>
+ <var-decl name='avl_child' type-id='type-id-65' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='avl_pcb' type-id='type-id-71' visibility='default' filepath='../../include/sys/avl_impl.h' line='92' column='1'/>
+ <var-decl name='avl_pcb' type-id='type-id-66' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-69' size-in-bits='64' id='type-id-66'/>
+ <pointer-type-def type-id='type-id-64' size-in-bits='64' id='type-id-61'/>
- <array-type-def dimensions='1' type-id='type-id-66' size-in-bits='128' id='type-id-70'>
- <subrange length='2' type-id='type-id-43' id='type-id-72'/>
+ <array-type-def dimensions='1' type-id='type-id-61' size-in-bits='128' id='type-id-65'>
+ <subrange length='2' type-id='type-id-33' id='type-id-67'/>
</array-type-def>
- <typedef-decl name='uintptr_t' type-id='type-id-45' filepath='/usr/include/stdint.h' line='90' column='1' id='type-id-71'/>
- <pointer-type-def type-id='type-id-73' size-in-bits='64' id='type-id-67'/>
- <typedef-decl name='ulong_t' type-id='type-id-45' filepath='../../lib/libspl/include/sys/stdtypes.h' line='34' column='1' id='type-id-68'/>
- <typedef-decl name='avl_tree_t' type-id='type-id-65' filepath='../../include/sys/avl.h' line='119' column='1' id='type-id-35'/>
- <class-decl name='re_pattern_buffer' size-in-bits='512' is-struct='yes' visibility='default' filepath='/usr/include/regex.h' line='413' column='1' id='type-id-74'>
+ <typedef-decl name='uintptr_t' type-id='type-id-35' id='type-id-66'/>
+ <pointer-type-def type-id='type-id-68' size-in-bits='64' id='type-id-62'/>
+ <typedef-decl name='ulong_t' type-id='type-id-35' id='type-id-63'/>
+ <typedef-decl name='avl_tree_t' type-id='type-id-60' id='type-id-25'/>
+ <class-decl name='re_pattern_buffer' size-in-bits='512' is-struct='yes' visibility='default' id='type-id-69'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='buffer' type-id='type-id-75' visibility='default' filepath='/usr/include/regex.h' line='417' column='1'/>
+ <var-decl name='buffer' type-id='type-id-70' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='allocated' type-id='type-id-76' visibility='default' filepath='/usr/include/regex.h' line='420' column='1'/>
+ <var-decl name='allocated' type-id='type-id-71' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='used' type-id='type-id-76' visibility='default' filepath='/usr/include/regex.h' line='423' column='1'/>
+ <var-decl name='used' type-id='type-id-71' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='syntax' type-id='type-id-77' visibility='default' filepath='/usr/include/regex.h' line='426' column='1'/>
+ <var-decl name='syntax' type-id='type-id-72' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='fastmap' type-id='type-id-29' visibility='default' filepath='/usr/include/regex.h' line='431' column='1'/>
+ <var-decl name='fastmap' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='translate' type-id='type-id-78' visibility='default' filepath='/usr/include/regex.h' line='437' column='1'/>
+ <var-decl name='translate' type-id='type-id-73' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='re_nsub' type-id='type-id-38' visibility='default' filepath='/usr/include/regex.h' line='440' column='1'/>
+ <var-decl name='re_nsub' type-id='type-id-28' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='31'>
- <var-decl name='can_be_null' type-id='type-id-19' visibility='default' filepath='/usr/include/regex.h' line='446' column='1'/>
+ <var-decl name='can_be_null' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='29'>
- <var-decl name='regs_allocated' type-id='type-id-19' visibility='default' filepath='/usr/include/regex.h' line='457' column='1'/>
+ <var-decl name='regs_allocated' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='28'>
- <var-decl name='fastmap_accurate' type-id='type-id-19' visibility='default' filepath='/usr/include/regex.h' line='461' column='1'/>
+ <var-decl name='fastmap_accurate' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='27'>
- <var-decl name='no_sub' type-id='type-id-19' visibility='default' filepath='/usr/include/regex.h' line='465' column='1'/>
+ <var-decl name='no_sub' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='26'>
- <var-decl name='not_bol' type-id='type-id-19' visibility='default' filepath='/usr/include/regex.h' line='469' column='1'/>
+ <var-decl name='not_bol' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='25'>
- <var-decl name='not_eol' type-id='type-id-19' visibility='default' filepath='/usr/include/regex.h' line='472' column='1'/>
+ <var-decl name='not_eol' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='24'>
- <var-decl name='newline_anchor' type-id='type-id-19' visibility='default' filepath='/usr/include/regex.h' line='475' column='1'/>
+ <var-decl name='newline_anchor' type-id='type-id-5' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='re_dfa_t' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-79'/>
- <pointer-type-def type-id='type-id-79' size-in-bits='64' id='type-id-75'/>
- <typedef-decl name='__re_long_size_t' type-id='type-id-45' filepath='/usr/include/regex.h' line='56' column='1' id='type-id-76'/>
- <typedef-decl name='reg_syntax_t' type-id='type-id-45' filepath='/usr/include/regex.h' line='72' column='1' id='type-id-77'/>
- <pointer-type-def type-id='type-id-42' size-in-bits='64' id='type-id-29'/>
- <type-decl name='unsigned char' size-in-bits='8' id='type-id-80'/>
- <pointer-type-def type-id='type-id-80' size-in-bits='64' id='type-id-78'/>
- <typedef-decl name='regex_t' type-id='type-id-74' filepath='/usr/include/regex.h' line='478' column='1' id='type-id-36'/>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='52' column='1' id='type-id-81'>
- <underlying-type type-id='type-id-7'/>
+ <class-decl name='re_dfa_t' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-74'/>
+ <pointer-type-def type-id='type-id-74' size-in-bits='64' id='type-id-70'/>
+ <typedef-decl name='__re_long_size_t' type-id='type-id-35' id='type-id-71'/>
+ <typedef-decl name='reg_syntax_t' type-id='type-id-35' id='type-id-72'/>
+ <pointer-type-def type-id='type-id-32' size-in-bits='64' id='type-id-17'/>
+ <type-decl name='unsigned char' size-in-bits='8' id='type-id-75'/>
+ <pointer-type-def type-id='type-id-75' size-in-bits='64' id='type-id-73'/>
+ <typedef-decl name='regex_t' type-id='type-id-69' id='type-id-26'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-76'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZFS_TYPE_FILESYSTEM' value='1'/>
<enumerator name='ZFS_TYPE_SNAPSHOT' value='2'/>
<enumerator name='ZFS_TYPE_VOLUME' value='4'/>
<enumerator name='ZFS_TYPE_POOL' value='8'/>
<enumerator name='ZFS_TYPE_BOOKMARK' value='16'/>
</enum-decl>
- <typedef-decl name='zfs_type_t' type-id='type-id-81' filepath='../../include/sys/fs/zfs.h' line='58' column='1' id='type-id-26'/>
- <class-decl name='dmu_objset_stats' size-in-bits='2304' is-struct='yes' visibility='default' filepath='../../include/sys/dmu.h' line='931' column='1' id='type-id-82'>
+ <typedef-decl name='zfs_type_t' type-id='type-id-76' id='type-id-13'/>
+ <class-decl name='dmu_objset_stats' size-in-bits='2304' is-struct='yes' visibility='default' id='type-id-77'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='dds_num_clones' type-id='type-id-32' visibility='default' filepath='../../include/sys/dmu.h' line='932' column='1'/>
+ <var-decl name='dds_num_clones' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='dds_creation_txg' type-id='type-id-32' visibility='default' filepath='../../include/sys/dmu.h' line='933' column='1'/>
+ <var-decl name='dds_creation_txg' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='dds_guid' type-id='type-id-32' visibility='default' filepath='../../include/sys/dmu.h' line='934' column='1'/>
+ <var-decl name='dds_guid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='dds_type' type-id='type-id-83' visibility='default' filepath='../../include/sys/dmu.h' line='935' column='1'/>
+ <var-decl name='dds_type' type-id='type-id-78' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
- <var-decl name='dds_is_snapshot' type-id='type-id-84' visibility='default' filepath='../../include/sys/dmu.h' line='936' column='1'/>
+ <var-decl name='dds_is_snapshot' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='232'>
- <var-decl name='dds_inconsistent' type-id='type-id-84' visibility='default' filepath='../../include/sys/dmu.h' line='937' column='1'/>
+ <var-decl name='dds_inconsistent' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='240'>
- <var-decl name='dds_redacted' type-id='type-id-84' visibility='default' filepath='../../include/sys/dmu.h' line='938' column='1'/>
+ <var-decl name='dds_redacted' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='248'>
- <var-decl name='dds_origin' type-id='type-id-25' visibility='default' filepath='../../include/sys/dmu.h' line='939' column='1'/>
+ <var-decl name='dds_origin' type-id='type-id-12' visibility='default'/>
</data-member>
</class-decl>
- <enum-decl name='dmu_objset_type' filepath='../../include/sys/fs/zfs.h' line='64' column='1' id='type-id-85'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='dmu_objset_type' id='type-id-80'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='DMU_OST_NONE' value='0'/>
<enumerator name='DMU_OST_META' value='1'/>
<enumerator name='DMU_OST_ZFS' value='2'/>
@@ -958,54 +750,151 @@
<enumerator name='DMU_OST_ANY' value='5'/>
<enumerator name='DMU_OST_NUMTYPES' value='6'/>
</enum-decl>
- <typedef-decl name='dmu_objset_type_t' type-id='type-id-85' filepath='../../include/sys/fs/zfs.h' line='72' column='1' id='type-id-83'/>
- <typedef-decl name='__uint8_t' type-id='type-id-80' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='37' column='1' id='type-id-86'/>
- <typedef-decl name='uint8_t' type-id='type-id-86' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='24' column='1' id='type-id-84'/>
- <typedef-decl name='dmu_objset_stats_t' type-id='type-id-82' filepath='../../include/sys/dmu.h' line='940' column='1' id='type-id-27'/>
- <pointer-type-def type-id='type-id-84' size-in-bits='64' id='type-id-30'/>
- <pointer-type-def type-id='type-id-22' size-in-bits='64' id='type-id-87'/>
- <qualified-type-def type-id='type-id-42' const='yes' id='type-id-88'/>
- <pointer-type-def type-id='type-id-88' size-in-bits='64' id='type-id-89'/>
- <function-decl name='zfs_unmount' filepath='../../include/libzfs.h' line='828' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_unshare_smb' filepath='../../include/libzfs.h' line='855' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='dmu_objset_type_t' type-id='type-id-80' id='type-id-78'/>
+ <typedef-decl name='__uint8_t' type-id='type-id-75' id='type-id-81'/>
+ <typedef-decl name='uint8_t' type-id='type-id-81' id='type-id-79'/>
+ <typedef-decl name='dmu_objset_stats_t' type-id='type-id-77' id='type-id-14'/>
+ <pointer-type-def type-id='type-id-79' size-in-bits='64' id='type-id-18'/>
+ <pointer-type-def type-id='type-id-9' size-in-bits='64' id='type-id-82'/>
+ <qualified-type-def type-id='type-id-32' const='yes' id='type-id-83'/>
+ <pointer-type-def type-id='type-id-83' size-in-bits='64' id='type-id-84'/>
+ <function-decl name='zfs_unmount' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_commit_smb_shares' filepath='../../include/libzfs.h' line='864' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_unshare_smb' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='uu_avl_walk_end' filepath='../../include/libuutil.h' line='340' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-17'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_commit_smb_shares' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='changelist_postfix' mangled-name='changelist_postfix' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_postfix'>
- <parameter type-id='type-id-15' name='clp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='170' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='uu_avl_walk_end' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-2'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='uu_avl_last' filepath='../../include/libuutil.h' line='331' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <return type-id='type-id-21'/>
+ <function-decl name='uu_avl_last' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <return type-id='type-id-7'/>
</function-decl>
- <function-decl name='remove_mountpoint' filepath='../../include/libzfs_impl.h' line='191' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-20'/>
+ <function-decl name='remove_mountpoint' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_share_smb' filepath='../../include/libzfs.h' line='852' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_share_smb' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_refresh_properties' filepath='../../include/libzfs.h' line='811' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_refresh_properties' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='259' column='1' id='type-id-90'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-85'>
+ <underlying-type type-id='type-id-49'/>
+ <enumerator name='ZPROP_CONT' value='-2'/>
+ <enumerator name='ZPROP_INVAL' value='-1'/>
+ <enumerator name='ZFS_PROP_TYPE' value='0'/>
+ <enumerator name='ZFS_PROP_CREATION' value='1'/>
+ <enumerator name='ZFS_PROP_USED' value='2'/>
+ <enumerator name='ZFS_PROP_AVAILABLE' value='3'/>
+ <enumerator name='ZFS_PROP_REFERENCED' value='4'/>
+ <enumerator name='ZFS_PROP_COMPRESSRATIO' value='5'/>
+ <enumerator name='ZFS_PROP_MOUNTED' value='6'/>
+ <enumerator name='ZFS_PROP_ORIGIN' value='7'/>
+ <enumerator name='ZFS_PROP_QUOTA' value='8'/>
+ <enumerator name='ZFS_PROP_RESERVATION' value='9'/>
+ <enumerator name='ZFS_PROP_VOLSIZE' value='10'/>
+ <enumerator name='ZFS_PROP_VOLBLOCKSIZE' value='11'/>
+ <enumerator name='ZFS_PROP_RECORDSIZE' value='12'/>
+ <enumerator name='ZFS_PROP_MOUNTPOINT' value='13'/>
+ <enumerator name='ZFS_PROP_SHARENFS' value='14'/>
+ <enumerator name='ZFS_PROP_CHECKSUM' value='15'/>
+ <enumerator name='ZFS_PROP_COMPRESSION' value='16'/>
+ <enumerator name='ZFS_PROP_ATIME' value='17'/>
+ <enumerator name='ZFS_PROP_DEVICES' value='18'/>
+ <enumerator name='ZFS_PROP_EXEC' value='19'/>
+ <enumerator name='ZFS_PROP_SETUID' value='20'/>
+ <enumerator name='ZFS_PROP_READONLY' value='21'/>
+ <enumerator name='ZFS_PROP_ZONED' value='22'/>
+ <enumerator name='ZFS_PROP_SNAPDIR' value='23'/>
+ <enumerator name='ZFS_PROP_ACLMODE' value='24'/>
+ <enumerator name='ZFS_PROP_ACLINHERIT' value='25'/>
+ <enumerator name='ZFS_PROP_CREATETXG' value='26'/>
+ <enumerator name='ZFS_PROP_NAME' value='27'/>
+ <enumerator name='ZFS_PROP_CANMOUNT' value='28'/>
+ <enumerator name='ZFS_PROP_ISCSIOPTIONS' value='29'/>
+ <enumerator name='ZFS_PROP_XATTR' value='30'/>
+ <enumerator name='ZFS_PROP_NUMCLONES' value='31'/>
+ <enumerator name='ZFS_PROP_COPIES' value='32'/>
+ <enumerator name='ZFS_PROP_VERSION' value='33'/>
+ <enumerator name='ZFS_PROP_UTF8ONLY' value='34'/>
+ <enumerator name='ZFS_PROP_NORMALIZE' value='35'/>
+ <enumerator name='ZFS_PROP_CASE' value='36'/>
+ <enumerator name='ZFS_PROP_VSCAN' value='37'/>
+ <enumerator name='ZFS_PROP_NBMAND' value='38'/>
+ <enumerator name='ZFS_PROP_SHARESMB' value='39'/>
+ <enumerator name='ZFS_PROP_REFQUOTA' value='40'/>
+ <enumerator name='ZFS_PROP_REFRESERVATION' value='41'/>
+ <enumerator name='ZFS_PROP_GUID' value='42'/>
+ <enumerator name='ZFS_PROP_PRIMARYCACHE' value='43'/>
+ <enumerator name='ZFS_PROP_SECONDARYCACHE' value='44'/>
+ <enumerator name='ZFS_PROP_USEDSNAP' value='45'/>
+ <enumerator name='ZFS_PROP_USEDDS' value='46'/>
+ <enumerator name='ZFS_PROP_USEDCHILD' value='47'/>
+ <enumerator name='ZFS_PROP_USEDREFRESERV' value='48'/>
+ <enumerator name='ZFS_PROP_USERACCOUNTING' value='49'/>
+ <enumerator name='ZFS_PROP_STMF_SHAREINFO' value='50'/>
+ <enumerator name='ZFS_PROP_DEFER_DESTROY' value='51'/>
+ <enumerator name='ZFS_PROP_USERREFS' value='52'/>
+ <enumerator name='ZFS_PROP_LOGBIAS' value='53'/>
+ <enumerator name='ZFS_PROP_UNIQUE' value='54'/>
+ <enumerator name='ZFS_PROP_OBJSETID' value='55'/>
+ <enumerator name='ZFS_PROP_DEDUP' value='56'/>
+ <enumerator name='ZFS_PROP_MLSLABEL' value='57'/>
+ <enumerator name='ZFS_PROP_SYNC' value='58'/>
+ <enumerator name='ZFS_PROP_DNODESIZE' value='59'/>
+ <enumerator name='ZFS_PROP_REFRATIO' value='60'/>
+ <enumerator name='ZFS_PROP_WRITTEN' value='61'/>
+ <enumerator name='ZFS_PROP_CLONES' value='62'/>
+ <enumerator name='ZFS_PROP_LOGICALUSED' value='63'/>
+ <enumerator name='ZFS_PROP_LOGICALREFERENCED' value='64'/>
+ <enumerator name='ZFS_PROP_INCONSISTENT' value='65'/>
+ <enumerator name='ZFS_PROP_VOLMODE' value='66'/>
+ <enumerator name='ZFS_PROP_FILESYSTEM_LIMIT' value='67'/>
+ <enumerator name='ZFS_PROP_SNAPSHOT_LIMIT' value='68'/>
+ <enumerator name='ZFS_PROP_FILESYSTEM_COUNT' value='69'/>
+ <enumerator name='ZFS_PROP_SNAPSHOT_COUNT' value='70'/>
+ <enumerator name='ZFS_PROP_SNAPDEV' value='71'/>
+ <enumerator name='ZFS_PROP_ACLTYPE' value='72'/>
+ <enumerator name='ZFS_PROP_SELINUX_CONTEXT' value='73'/>
+ <enumerator name='ZFS_PROP_SELINUX_FSCONTEXT' value='74'/>
+ <enumerator name='ZFS_PROP_SELINUX_DEFCONTEXT' value='75'/>
+ <enumerator name='ZFS_PROP_SELINUX_ROOTCONTEXT' value='76'/>
+ <enumerator name='ZFS_PROP_RELATIME' value='77'/>
+ <enumerator name='ZFS_PROP_REDUNDANT_METADATA' value='78'/>
+ <enumerator name='ZFS_PROP_OVERLAY' value='79'/>
+ <enumerator name='ZFS_PROP_PREV_SNAP' value='80'/>
+ <enumerator name='ZFS_PROP_RECEIVE_RESUME_TOKEN' value='81'/>
+ <enumerator name='ZFS_PROP_ENCRYPTION' value='82'/>
+ <enumerator name='ZFS_PROP_KEYLOCATION' value='83'/>
+ <enumerator name='ZFS_PROP_KEYFORMAT' value='84'/>
+ <enumerator name='ZFS_PROP_PBKDF2_SALT' value='85'/>
+ <enumerator name='ZFS_PROP_PBKDF2_ITERS' value='86'/>
+ <enumerator name='ZFS_PROP_ENCRYPTION_ROOT' value='87'/>
+ <enumerator name='ZFS_PROP_KEY_GUID' value='88'/>
+ <enumerator name='ZFS_PROP_KEYSTATUS' value='89'/>
+ <enumerator name='ZFS_PROP_REMAPTXG' value='90'/>
+ <enumerator name='ZFS_PROP_SPECIAL_SMALL_BLOCKS' value='91'/>
+ <enumerator name='ZFS_PROP_IVSET_GUID' value='92'/>
+ <enumerator name='ZFS_PROP_REDACTED' value='93'/>
+ <enumerator name='ZFS_PROP_REDACT_SNAPS' value='94'/>
+ <enumerator name='ZFS_NUM_PROPS' value='95'/>
+ </enum-decl>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-86'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZPROP_SRC_NONE' value='1'/>
<enumerator name='ZPROP_SRC_DEFAULT' value='2'/>
<enumerator name='ZPROP_SRC_TEMPORARY' value='4'/>
@@ -1013,615 +902,571 @@
<enumerator name='ZPROP_SRC_INHERITED' value='16'/>
<enumerator name='ZPROP_SRC_RECEIVED' value='32'/>
</enum-decl>
- <pointer-type-def type-id='type-id-90' size-in-bits='64' id='type-id-91'/>
- <function-decl name='zfs_prop_get' filepath='../../include/libzfs.h' line='495' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-8'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-91'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_get_int' filepath='../../include/libzfs.h' line='512' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <pointer-type-def type-id='type-id-86' size-in-bits='64' id='type-id-87'/>
+ <function-decl name='zfs_prop_get' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-85'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
<parameter type-id='type-id-87'/>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-45'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-29' size-in-bits='64' id='type-id-92'/>
- <function-decl name='zfs_is_mounted' filepath='../../include/libzfs.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-92'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_prop_get_int' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <function-decl name='zfs_mount' filepath='../../include/libzfs.h' line='826' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-17' size-in-bits='64' id='type-id-88'/>
+ <function-decl name='zfs_is_mounted' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-88'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zfs_unshare_nfs' filepath='../../include/libzfs.h' line='854' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_mount' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_share_nfs' filepath='../../include/libzfs.h' line='851' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_unshare_nfs' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_commit_nfs_shares' filepath='../../include/libzfs.h' line='863' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_share_nfs' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='isa_child_of' mangled-name='isa_child_of' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='isa_child_of'>
- <parameter type-id='type-id-89' name='dataset' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='288' column='1'/>
- <parameter type-id='type-id-89' name='parent' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='288' column='1'/>
+ <function-decl name='zfs_commit_nfs_shares' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='changelist_rename' mangled-name='changelist_rename' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='311' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_rename'>
- <parameter type-id='type-id-15' name='clp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='311' column='1'/>
- <parameter type-id='type-id-89' name='src' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='311' column='1'/>
- <parameter type-id='type-id-89' name='dst' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='311' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='strlcpy' filepath='../../lib/libspl/include/string.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-45'/>
+ <function-decl name='strlcpy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <function-decl name='strlcat' filepath='../../lib/libspl/include/string.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-45'/>
+ <function-decl name='strlcat' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/libzfs_impl.h' line='109' column='1' id='type-id-93'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-89'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='PROTO_NFS' value='0'/>
<enumerator name='PROTO_SMB' value='1'/>
<enumerator name='PROTO_END' value='2'/>
</enum-decl>
- <typedef-decl name='zfs_share_proto_t' type-id='type-id-93' filepath='../../include/libzfs_impl.h' line='113' column='1' id='type-id-94'/>
- <pointer-type-def type-id='type-id-94' size-in-bits='64' id='type-id-95'/>
- <function-decl name='changelist_unshare' mangled-name='changelist_unshare' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='348' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_unshare'>
- <parameter type-id='type-id-15' name='clp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='348' column='1'/>
- <parameter type-id='type-id-95' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='348' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_unshare_proto' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-87'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_unshare_proto' filepath='../../include/libzfs_impl.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='zfs_commit_proto' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-91'/>
- <return type-id='type-id-1'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_commit_proto' filepath='../../include/libzfs_impl.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-91'/>
- <return type-id='type-id-20'/>
+ <function-decl name='uu_avl_remove' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='changelist_haszonedchild' mangled-name='changelist_haszonedchild' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='378' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_haszonedchild'>
- <parameter type-id='type-id-15' name='clp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='378' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_close' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='changelist_remove' mangled-name='changelist_remove' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='387' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_remove'>
- <parameter type-id='type-id-15' name='clp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='387' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='387' column='1'/>
- <return type-id='type-id-20'/>
+ <function-decl name='uu_avl_destroy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='uu_avl_remove' filepath='../../include/libuutil.h' line='350' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-20'/>
+ <pointer-type-def type-id='type-id-45' size-in-bits='64' id='type-id-90'/>
+ <function-decl name='uu_avl_pool_destroy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-90'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_close' filepath='../../include/libzfs.h' line='469' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='changelist_free' mangled-name='changelist_free' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='412' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_free'>
- <parameter type-id='type-id-15' name='clp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='412' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='uu_avl_destroy' filepath='../../include/libuutil.h' line='326' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <pointer-type-def type-id='type-id-9' size-in-bits='64' id='type-id-96'/>
- <function-decl name='uu_avl_pool_destroy' filepath='../../include/libuutil.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-96'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <typedef-decl name='zfs_handle_t' type-id='type-id-22' filepath='../../include/libzfs.h' line='195' column='1' id='type-id-97'/>
- <pointer-type-def type-id='type-id-97' size-in-bits='64' id='type-id-98'/>
- <function-decl name='changelist_gather' mangled-name='changelist_gather' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='624' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='changelist_gather'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='624' column='1'/>
- <parameter type-id='type-id-3' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='624' column='1'/>
- <parameter type-id='type-id-1' name='gather_flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='624' column='1'/>
- <parameter type-id='type-id-1' name='mnt_flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_changelist.c' line='625' column='1'/>
- <return type-id='type-id-15'/>
+ <pointer-type-def type-id='type-id-19' size-in-bits='64' id='type-id-91'/>
+ <function-decl name='zfs_alloc' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-92' size-in-bits='64' id='type-id-93'/>
+ <function-decl name='uu_avl_pool_create' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-93'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-90'/>
</function-decl>
- <pointer-type-def type-id='type-id-31' size-in-bits='64' id='type-id-99'/>
- <function-decl name='zfs_alloc' filepath='../../include/libzfs_impl.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-21'/>
+ <function-decl name='uu_avl_create' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-90'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-4'/>
</function-decl>
- <pointer-type-def type-id='type-id-100' size-in-bits='64' id='type-id-101'/>
- <function-decl name='uu_avl_pool_create' filepath='../../include/libuutil.h' line='304' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-101'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-96'/>
- </function-decl>
- <function-decl name='uu_avl_create' filepath='../../include/libuutil.h' line='323' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-96'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-18'/>
- </function-decl>
- <function-decl name='zfs_error' filepath='../../include/libzfs_impl.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_error' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-102' size-in-bits='64' id='type-id-103'/>
- <function-decl name='zfs_iter_dependents' filepath='../../include/libzfs.h' line='616' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-103'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-94' size-in-bits='64' id='type-id-95'/>
+ <function-decl name='zfs_iter_dependents' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-95'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_iter_mounted' filepath='../../include/libzfs.h' line='624' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-103'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_iter_mounted' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-95'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_iter_children' filepath='../../include/libzfs.h' line='615' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-103'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_iter_children' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-95'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <qualified-type-def type-id='type-id-22' const='yes' id='type-id-104'/>
- <pointer-type-def type-id='type-id-104' size-in-bits='64' id='type-id-105'/>
- <function-decl name='zfs_get_name' filepath='../../include/libzfs.h' line='472' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-105'/>
- <return type-id='type-id-89'/>
+ <qualified-type-def type-id='type-id-9' const='yes' id='type-id-96'/>
+ <pointer-type-def type-id='type-id-96' size-in-bits='64' id='type-id-97'/>
+ <function-decl name='zfs_get_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-97'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zfs_open' filepath='../../include/libzfs.h' line='467' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-87'/>
+ <function-decl name='zfs_open' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-82'/>
</function-decl>
- <function-decl name='zfs_is_shared' filepath='../../include/libzfs.h' line='842' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_is_shared' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <class-decl name='uu_avl_node' size-in-bits='192' is-struct='yes' visibility='default' filepath='../../include/libuutil.h' line='262' column='1' id='type-id-106'>
+ <class-decl name='uu_avl_node' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-98'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='uan_opaque' type-id='type-id-107' visibility='default' filepath='../../include/libuutil.h' line='264' column='1'/>
+ <var-decl name='uan_opaque' type-id='type-id-99' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-71' size-in-bits='192' id='type-id-107'>
- <subrange length='3' type-id='type-id-43' id='type-id-108'/>
+ <array-type-def dimensions='1' type-id='type-id-66' size-in-bits='192' id='type-id-99'>
+ <subrange length='3' type-id='type-id-33' id='type-id-100'/>
</array-type-def>
- <pointer-type-def type-id='type-id-106' size-in-bits='64' id='type-id-109'/>
- <function-decl name='uu_avl_node_init' filepath='../../include/libuutil.h' line='320' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-109'/>
- <parameter type-id='type-id-96'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <pointer-type-def type-id='type-id-45' size-in-bits='64' id='type-id-110'/>
- <function-decl name='uu_avl_find' filepath='../../include/libuutil.h' line='342' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-110'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='uu_avl_insert' filepath='../../include/libuutil.h' line='343' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_get_handle' filepath='../../include/libzfs.h' line='210' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-99'/>
+ <pointer-type-def type-id='type-id-98' size-in-bits='64' id='type-id-101'/>
+ <function-decl name='uu_avl_node_init' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-101'/>
+ <parameter type-id='type-id-90'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-73'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-35' size-in-bits='64' id='type-id-102'/>
+ <function-decl name='uu_avl_find' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-102'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='uu_avl_insert' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zfs_get_handle' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-91'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-68'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-100'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-92'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-102'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-94'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_config.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zpool_skip_pool' mangled-name='zpool_skip_pool' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='340' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_skip_pool'>
- <parameter type-id='type-id-89' name='poolname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='340' column='1'/>
+ <function-decl name='zpool_skip_pool' mangled-name='zpool_skip_pool' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_skip_pool'>
+ <parameter type-id='type-id-84' name='poolname'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-7' size-in-bits='64' id='type-id-103'/>
+ <function-decl name='uu_avl_teardown' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <parameter type-id='type-id-103'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-36' size-in-bits='64' id='type-id-104'/>
+ <function-decl name='nvlist_free' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='namespace_clear' mangled-name='namespace_clear' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='namespace_clear'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='79' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <pointer-type-def type-id='type-id-21' size-in-bits='64' id='type-id-111'/>
- <function-decl name='uu_avl_teardown' filepath='../../include/libuutil.h' line='348' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <parameter type-id='type-id-111'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <pointer-type-def type-id='type-id-46' size-in-bits='64' id='type-id-112'/>
- <function-decl name='nvlist_free' filepath='../../include/sys/nvpair.h' line='152' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <pointer-type-def type-id='type-id-28' size-in-bits='64' id='type-id-113'/>
- <function-decl name='zpool_get_config' mangled-name='zpool_get_config' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='220' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_config'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='220' column='1'/>
- <parameter type-id='type-id-113' name='oldconfig' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='220' column='1'/>
- <return type-id='type-id-28'/>
+ <pointer-type-def type-id='type-id-15' size-in-bits='64' id='type-id-105'/>
+ <function-decl name='zpool_get_config' mangled-name='zpool_get_config' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_config'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-105' name='oldconfig'/>
+ <return type-id='type-id-15'/>
</function-decl>
- <function-decl name='zpool_get_features' mangled-name='zpool_get_features' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_features'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='232' column='1'/>
- <return type-id='type-id-28'/>
+ <function-decl name='zpool_get_features' mangled-name='zpool_get_features' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_features'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-15'/>
</function-decl>
- <function-decl name='nvlist_exists' filepath='../../include/sys/nvpair.h' line='238' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='nvlist_exists' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <pointer-type-def type-id='type-id-6' size-in-bits='64' id='type-id-114'/>
- <function-decl name='zpool_refresh_stats' mangled-name='zpool_refresh_stats' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='265' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_refresh_stats'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='265' column='1'/>
- <parameter type-id='type-id-114' name='missing' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='265' column='1'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-16' size-in-bits='64' id='type-id-106'/>
+ <function-decl name='zpool_refresh_stats' mangled-name='zpool_refresh_stats' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_refresh_stats'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-106' name='missing'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-112' size-in-bits='64' id='type-id-115'/>
- <function-decl name='nvlist_lookup_nvlist' filepath='../../include/sys/nvpair.h' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-104' size-in-bits='64' id='type-id-107'/>
+ <function-decl name='nvlist_lookup_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='zfs_cmd' size-in-bits='109952' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='477' column='1' id='type-id-116'>
+ <class-decl name='zfs_cmd' size-in-bits='109952' is-struct='yes' visibility='default' id='type-id-108'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zc_name' type-id='type-id-117' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='478' column='1'/>
+ <var-decl name='zc_name' type-id='type-id-109' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32768'>
- <var-decl name='zc_nvlist_src' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='479' column='1'/>
+ <var-decl name='zc_nvlist_src' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32832'>
- <var-decl name='zc_nvlist_src_size' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='480' column='1'/>
+ <var-decl name='zc_nvlist_src_size' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32896'>
- <var-decl name='zc_nvlist_dst' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='481' column='1'/>
+ <var-decl name='zc_nvlist_dst' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32960'>
- <var-decl name='zc_nvlist_dst_size' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='482' column='1'/>
+ <var-decl name='zc_nvlist_dst_size' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='33024'>
- <var-decl name='zc_nvlist_dst_filled' type-id='type-id-6' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='483' column='1'/>
+ <var-decl name='zc_nvlist_dst_filled' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='33056'>
- <var-decl name='zc_pad2' type-id='type-id-1' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='484' column='1'/>
+ <var-decl name='zc_pad2' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='33088'>
- <var-decl name='zc_history' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='490' column='1'/>
+ <var-decl name='zc_history' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='33152'>
- <var-decl name='zc_value' type-id='type-id-118' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='491' column='1'/>
+ <var-decl name='zc_value' type-id='type-id-110' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='98688'>
- <var-decl name='zc_string' type-id='type-id-25' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='492' column='1'/>
+ <var-decl name='zc_string' type-id='type-id-12' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='100736'>
- <var-decl name='zc_guid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='493' column='1'/>
+ <var-decl name='zc_guid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='100800'>
- <var-decl name='zc_nvlist_conf' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='494' column='1'/>
+ <var-decl name='zc_nvlist_conf' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='100864'>
- <var-decl name='zc_nvlist_conf_size' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='495' column='1'/>
+ <var-decl name='zc_nvlist_conf_size' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='100928'>
- <var-decl name='zc_cookie' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='496' column='1'/>
+ <var-decl name='zc_cookie' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='100992'>
- <var-decl name='zc_objset_type' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='497' column='1'/>
+ <var-decl name='zc_objset_type' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='101056'>
- <var-decl name='zc_perm_action' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='498' column='1'/>
+ <var-decl name='zc_perm_action' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='101120'>
- <var-decl name='zc_history_len' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='499' column='1'/>
+ <var-decl name='zc_history_len' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='101184'>
- <var-decl name='zc_history_offset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='500' column='1'/>
+ <var-decl name='zc_history_offset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='101248'>
- <var-decl name='zc_obj' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='501' column='1'/>
+ <var-decl name='zc_obj' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='101312'>
- <var-decl name='zc_iflags' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='502' column='1'/>
+ <var-decl name='zc_iflags' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='101376'>
- <var-decl name='zc_share' type-id='type-id-119' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='503' column='1'/>
+ <var-decl name='zc_share' type-id='type-id-111' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='101632'>
- <var-decl name='zc_objset_stats' type-id='type-id-27' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='504' column='1'/>
+ <var-decl name='zc_objset_stats' type-id='type-id-14' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='103936'>
- <var-decl name='zc_begin_record' type-id='type-id-120' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='505' column='1'/>
+ <var-decl name='zc_begin_record' type-id='type-id-112' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='106368'>
- <var-decl name='zc_inject_record' type-id='type-id-121' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='506' column='1'/>
+ <var-decl name='zc_inject_record' type-id='type-id-113' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109184'>
- <var-decl name='zc_defer_destroy' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='507' column='1'/>
+ <var-decl name='zc_defer_destroy' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109216'>
- <var-decl name='zc_flags' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='508' column='1'/>
+ <var-decl name='zc_flags' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109248'>
- <var-decl name='zc_action_handle' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='509' column='1'/>
+ <var-decl name='zc_action_handle' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109312'>
- <var-decl name='zc_cleanup_fd' type-id='type-id-1' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='510' column='1'/>
+ <var-decl name='zc_cleanup_fd' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109344'>
- <var-decl name='zc_simple' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='511' column='1'/>
+ <var-decl name='zc_simple' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109352'>
- <var-decl name='zc_pad' type-id='type-id-122' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='512' column='1'/>
+ <var-decl name='zc_pad' type-id='type-id-114' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109376'>
- <var-decl name='zc_sendobj' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='513' column='1'/>
+ <var-decl name='zc_sendobj' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109440'>
- <var-decl name='zc_fromobj' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='514' column='1'/>
+ <var-decl name='zc_fromobj' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109504'>
- <var-decl name='zc_createtxg' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='515' column='1'/>
+ <var-decl name='zc_createtxg' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109568'>
- <var-decl name='zc_stat' type-id='type-id-123' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='516' column='1'/>
+ <var-decl name='zc_stat' type-id='type-id-115' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='109888'>
- <var-decl name='zc_zoneid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='517' column='1'/>
+ <var-decl name='zc_zoneid' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='32768' id='type-id-117'>
- <subrange length='4096' type-id='type-id-43' id='type-id-124'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='32768' id='type-id-109'>
+ <subrange length='4096' type-id='type-id-33' id='type-id-116'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='65536' id='type-id-118'>
- <subrange length='8192' type-id='type-id-43' id='type-id-125'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='65536' id='type-id-110'>
+ <subrange length='8192' type-id='type-id-33' id='type-id-117'/>
</array-type-def>
- <class-decl name='zfs_share' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='452' column='1' id='type-id-126'>
+ <class-decl name='zfs_share' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-118'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='z_exportdata' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='453' column='1'/>
+ <var-decl name='z_exportdata' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='z_sharedata' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='454' column='1'/>
+ <var-decl name='z_sharedata' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='z_sharetype' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='455' column='1'/>
+ <var-decl name='z_sharetype' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='z_sharemax' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='456' column='1'/>
+ <var-decl name='z_sharemax' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zfs_share_t' type-id='type-id-126' filepath='../../include/sys/zfs_ioctl.h' line='457' column='1' id='type-id-119'/>
- <class-decl name='drr_begin' size-in-bits='2432' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='231' column='1' id='type-id-120'>
+ <typedef-decl name='zfs_share_t' type-id='type-id-118' id='type-id-111'/>
+ <class-decl name='drr_begin' size-in-bits='2432' is-struct='yes' visibility='default' id='type-id-112'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_magic' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='232' column='1'/>
+ <var-decl name='drr_magic' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_versioninfo' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='233' column='1'/>
+ <var-decl name='drr_versioninfo' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_creation_time' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='234' column='1'/>
+ <var-decl name='drr_creation_time' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_type' type-id='type-id-83' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='235' column='1'/>
+ <var-decl name='drr_type' type-id='type-id-78' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
- <var-decl name='drr_flags' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='236' column='1'/>
+ <var-decl name='drr_flags' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='237' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='drr_fromguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='238' column='1'/>
+ <var-decl name='drr_fromguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='drr_toname' type-id='type-id-25' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='239' column='1'/>
+ <var-decl name='drr_toname' type-id='type-id-12' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='zinject_record' size-in-bits='2816' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='403' column='1' id='type-id-127'>
+ <class-decl name='zinject_record' size-in-bits='2816' is-struct='yes' visibility='default' id='type-id-119'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zi_objset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='404' column='1'/>
+ <var-decl name='zi_objset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='zi_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='405' column='1'/>
+ <var-decl name='zi_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='zi_start' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='406' column='1'/>
+ <var-decl name='zi_start' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='zi_end' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='407' column='1'/>
+ <var-decl name='zi_end' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='zi_guid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='408' column='1'/>
+ <var-decl name='zi_guid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='zi_level' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='409' column='1'/>
+ <var-decl name='zi_level' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='352'>
- <var-decl name='zi_error' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='410' column='1'/>
+ <var-decl name='zi_error' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='zi_type' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='411' column='1'/>
+ <var-decl name='zi_type' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='zi_freq' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='412' column='1'/>
+ <var-decl name='zi_freq' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='480'>
- <var-decl name='zi_failfast' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='413' column='1'/>
+ <var-decl name='zi_failfast' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='zi_func' type-id='type-id-25' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='414' column='1'/>
+ <var-decl name='zi_func' type-id='type-id-12' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2560'>
- <var-decl name='zi_iotype' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='415' column='1'/>
+ <var-decl name='zi_iotype' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2592'>
- <var-decl name='zi_duration' type-id='type-id-47' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='416' column='1'/>
+ <var-decl name='zi_duration' type-id='type-id-37' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2624'>
- <var-decl name='zi_timer' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='417' column='1'/>
+ <var-decl name='zi_timer' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2688'>
- <var-decl name='zi_nlanes' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='418' column='1'/>
+ <var-decl name='zi_nlanes' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2752'>
- <var-decl name='zi_cmd' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='419' column='1'/>
+ <var-decl name='zi_cmd' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2784'>
- <var-decl name='zi_dvas' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='420' column='1'/>
+ <var-decl name='zi_dvas' type-id='type-id-38' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zinject_record_t' type-id='type-id-127' filepath='../../include/sys/zfs_ioctl.h' line='421' column='1' id='type-id-121'/>
+ <typedef-decl name='zinject_record_t' type-id='type-id-119' id='type-id-113'/>
- <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='24' id='type-id-122'>
- <subrange length='3' type-id='type-id-43' id='type-id-108'/>
+ <array-type-def dimensions='1' type-id='type-id-79' size-in-bits='24' id='type-id-114'>
+ <subrange length='3' type-id='type-id-33' id='type-id-100'/>
</array-type-def>
- <class-decl name='zfs_stat' size-in-bits='320' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_stat.h' line='42' column='1' id='type-id-128'>
+ <class-decl name='zfs_stat' size-in-bits='320' is-struct='yes' visibility='default' id='type-id-120'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zs_gen' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_stat.h' line='43' column='1'/>
+ <var-decl name='zs_gen' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='zs_mode' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_stat.h' line='44' column='1'/>
+ <var-decl name='zs_mode' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='zs_links' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_stat.h' line='45' column='1'/>
+ <var-decl name='zs_links' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='zs_ctime' type-id='type-id-129' visibility='default' filepath='../../include/sys/zfs_stat.h' line='46' column='1'/>
+ <var-decl name='zs_ctime' type-id='type-id-121' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='128' id='type-id-129'>
- <subrange length='2' type-id='type-id-43' id='type-id-72'/>
+ <array-type-def dimensions='1' type-id='type-id-22' size-in-bits='128' id='type-id-121'>
+ <subrange length='2' type-id='type-id-33' id='type-id-67'/>
</array-type-def>
- <typedef-decl name='zfs_stat_t' type-id='type-id-128' filepath='../../include/sys/zfs_stat.h' line='47' column='1' id='type-id-123'/>
- <pointer-type-def type-id='type-id-116' size-in-bits='64' id='type-id-130'/>
- <function-decl name='zcmd_alloc_dst_nvlist' filepath='../../include/libzfs_impl.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-130'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_ioctl' filepath='../../include/libzfs.h' line='455' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-130'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_expand_dst_nvlist' filepath='../../include/libzfs_impl.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-130'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_free_nvlists' filepath='../../include/libzfs_impl.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-130'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zcmd_read_dst_nvlist' filepath='../../include/libzfs_impl.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-130'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='getenv' filepath='/usr/include/stdlib.h' line='631' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-29'/>
- </function-decl>
- <pointer-type-def type-id='type-id-131' size-in-bits='64' id='type-id-132'/>
- <typedef-decl name='zpool_iter_f' type-id='type-id-132' filepath='../../include/libzfs.h' line='246' column='1' id='type-id-133'/>
- <function-decl name='zpool_iter' mangled-name='zpool_iter' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_iter'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='389' column='1'/>
- <parameter type-id='type-id-133' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='389' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='389' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='uu_avl_first' filepath='../../include/libuutil.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='uu_avl_next' filepath='../../include/libuutil.h' line='333' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-18'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <pointer-type-def type-id='type-id-37' size-in-bits='64' id='type-id-134'/>
- <pointer-type-def type-id='type-id-134' size-in-bits='64' id='type-id-135'/>
- <function-decl name='zpool_open_silent' filepath='../../include/libzfs_impl.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-135'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='zfs_stat_t' type-id='type-id-120' id='type-id-115'/>
+ <pointer-type-def type-id='type-id-108' size-in-bits='64' id='type-id-122'/>
+ <function-decl name='zcmd_alloc_dst_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-122'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='no_memory' filepath='../../include/libzfs_impl.h' line='142' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_ioctl' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-122'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zcmd_expand_dst_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-122'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zcmd_free_nvlists' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-122'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zcmd_read_dst_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-122'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='getenv' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-17'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-123' size-in-bits='64' id='type-id-124'/>
+ <typedef-decl name='zpool_iter_f' type-id='type-id-124' id='type-id-125'/>
+ <function-decl name='zpool_iter' mangled-name='zpool_iter' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_iter'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-125' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='uu_avl_first' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='uu_avl_next' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-4'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-27' size-in-bits='64' id='type-id-126'/>
+ <pointer-type-def type-id='type-id-126' size-in-bits='64' id='type-id-127'/>
+ <function-decl name='zpool_open_silent' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-127'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='no_memory' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='nvpair' size-in-bits='128' is-struct='yes' visibility='default' filepath='../../include/sys/nvpair.h' line='73' column='1' id='type-id-136'>
+ <class-decl name='nvpair' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-128'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='nvp_size' type-id='type-id-47' visibility='default' filepath='../../include/sys/nvpair.h' line='74' column='1'/>
+ <var-decl name='nvp_size' type-id='type-id-37' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='nvp_name_sz' type-id='type-id-137' visibility='default' filepath='../../include/sys/nvpair.h' line='75' column='1'/>
+ <var-decl name='nvp_name_sz' type-id='type-id-129' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='48'>
- <var-decl name='nvp_reserve' type-id='type-id-137' visibility='default' filepath='../../include/sys/nvpair.h' line='76' column='1'/>
+ <var-decl name='nvp_reserve' type-id='type-id-129' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='nvp_value_elem' type-id='type-id-47' visibility='default' filepath='../../include/sys/nvpair.h' line='77' column='1'/>
+ <var-decl name='nvp_value_elem' type-id='type-id-37' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='nvp_type' type-id='type-id-138' visibility='default' filepath='../../include/sys/nvpair.h' line='78' column='1'/>
+ <var-decl name='nvp_type' type-id='type-id-130' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__int16_t' type-id='type-id-60' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='38' column='1' id='type-id-139'/>
- <typedef-decl name='int16_t' type-id='type-id-139' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-intn.h' line='25' column='1' id='type-id-137'/>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/nvpair.h' line='37' column='1' id='type-id-140'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='__int16_t' type-id='type-id-55' id='type-id-131'/>
+ <typedef-decl name='int16_t' type-id='type-id-131' id='type-id-129'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-132'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='DATA_TYPE_DONTCARE' value='-1'/>
<enumerator name='DATA_TYPE_UNKNOWN' value='0'/>
<enumerator name='DATA_TYPE_BOOLEAN' value='1'/>
@@ -1652,115 +1497,117 @@
<enumerator name='DATA_TYPE_UINT8_ARRAY' value='26'/>
<enumerator name='DATA_TYPE_DOUBLE' value='27'/>
</enum-decl>
- <typedef-decl name='data_type_t' type-id='type-id-140' filepath='../../include/sys/nvpair.h' line='71' column='1' id='type-id-138'/>
- <pointer-type-def type-id='type-id-136' size-in-bits='64' id='type-id-141'/>
- <function-decl name='nvlist_next_nvpair' filepath='../../include/sys/nvpair.h' line='242' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-141'/>
- </function-decl>
- <function-decl name='nvpair_name' filepath='../../include/sys/nvpair.h' line='244' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-29'/>
- </function-decl>
- <function-decl name='zfs_strdup' filepath='../../include/libzfs_impl.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-29'/>
+ <typedef-decl name='data_type_t' type-id='type-id-132' id='type-id-130'/>
+ <pointer-type-def type-id='type-id-128' size-in-bits='64' id='type-id-133'/>
+ <function-decl name='nvlist_next_nvpair' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-133'/>
+ </function-decl>
+ <function-decl name='nvpair_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='nvpair_value_nvlist' filepath='../../include/sys/nvpair.h' line='258' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_strdup' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='libspl_assertf' filepath='../../lib/libspl/include/assert.h' line='40' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
+ <function-decl name='nvpair_value_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='libspl_assertf' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-20'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='nvlist_dup' filepath='../../include/sys/nvpair.h' line='156' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvlist_dup' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='dcgettext' filepath='/usr/include/libintl.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-29'/>
+ <function-decl name='dcgettext' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='zfs_standard_error' filepath='../../include/libzfs_impl.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <pointer-type-def type-id='type-id-142' size-in-bits='64' id='type-id-143'/>
- <typedef-decl name='zfs_iter_f' type-id='type-id-143' filepath='../../include/libzfs.h' line='613' column='1' id='type-id-144'/>
- <function-decl name='zfs_iter_root' mangled-name='zfs_iter_root' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='434' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_root'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='434' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='434' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_config.c' line='434' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='make_dataset_handle' filepath='../../include/libzfs_impl.h' line='195' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-87'/>
+ <function-decl name='zfs_standard_error' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <typedef-decl name='zfs_handle_t' type-id='type-id-9' id='type-id-134'/>
+ <pointer-type-def type-id='type-id-134' size-in-bits='64' id='type-id-135'/>
+ <pointer-type-def type-id='type-id-136' size-in-bits='64' id='type-id-137'/>
+ <typedef-decl name='zfs_iter_f' type-id='type-id-137' id='type-id-138'/>
+ <function-decl name='zfs_iter_root' mangled-name='zfs_iter_root' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_root'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='make_dataset_handle' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-82'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-142'>
- <parameter type-id='type-id-98'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-136'>
+ <parameter type-id='type-id-135'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-131'>
- <parameter type-id='type-id-24'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-123'>
+ <parameter type-id='type-id-11'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_crypto.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zfs_crypto_get_encryption_root' mangled-name='zfs_crypto_get_encryption_root' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='965' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_get_encryption_root'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='965' column='1'/>
- <parameter type-id='type-id-114' name='is_encroot' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='965' column='1'/>
- <parameter type-id='type-id-29' name='buf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='966' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <pointer-type-def type-id='type-id-30' size-in-bits='64' id='type-id-145'/>
- <typedef-decl name='uint_t' type-id='type-id-19' filepath='../../lib/libspl/include/sys/stdtypes.h' line='33' column='1' id='type-id-146'/>
- <pointer-type-def type-id='type-id-146' size-in-bits='64' id='type-id-147'/>
- <function-decl name='zfs_crypto_create' mangled-name='zfs_crypto_create' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='996' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_create'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='996' column='1'/>
- <parameter type-id='type-id-29' name='parent_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='996' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='996' column='1'/>
- <parameter type-id='type-id-28' name='pool_props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='997' column='1'/>
- <parameter type-id='type-id-6' name='stdin_available' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='997' column='1'/>
- <parameter type-id='type-id-145' name='wkeydata_out' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='997' column='1'/>
- <parameter type-id='type-id-147' name='wkeylen_out' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='998' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_to_name' filepath='../../include/libzfs.h' line='492' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zfs_crypto_get_encryption_root' mangled-name='zfs_crypto_get_encryption_root' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_get_encryption_root'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-106' name='is_encroot'/>
+ <parameter type-id='type-id-17' name='buf'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nvlist_lookup_uint64' filepath='../../include/sys/nvpair.h' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-110'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-18' size-in-bits='64' id='type-id-139'/>
+ <typedef-decl name='uint_t' type-id='type-id-5' id='type-id-140'/>
+ <pointer-type-def type-id='type-id-140' size-in-bits='64' id='type-id-141'/>
+ <function-decl name='zfs_crypto_create' mangled-name='zfs_crypto_create' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_create'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-17' name='parent_name'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <parameter type-id='type-id-15' name='pool_props'/>
+ <parameter type-id='type-id-16' name='stdin_available'/>
+ <parameter type-id='type-id-139' name='wkeydata_out'/>
+ <parameter type-id='type-id-141' name='wkeylen_out'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nvlist_lookup_string' filepath='../../include/sys/nvpair.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-92'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_to_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='nvlist_lookup_uint64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-102'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='215' column='1' id='type-id-148'>
- <underlying-type type-id='type-id-7'/>
+ <function-decl name='nvlist_lookup_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-88'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-142'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZPOOL_PROP_INVAL' value='-1'/>
<enumerator name='ZPOOL_PROP_NAME' value='0'/>
<enumerator name='ZPOOL_PROP_SIZE' value='1'/>
@@ -1797,623 +1644,616 @@
<enumerator name='ZPOOL_PROP_COMPATIBILITY' value='32'/>
<enumerator name='ZPOOL_NUM_PROPS' value='33'/>
</enum-decl>
- <function-decl name='zpool_get_prop_int' filepath='../../include/libzfs.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-148'/>
- <parameter type-id='type-id-91'/>
- <return type-id='type-id-45'/>
+ <function-decl name='zpool_get_prop_int' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-142'/>
+ <parameter type-id='type-id-87'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <function-decl name='zpool_get_features' filepath='../../include/libzfs.h' line='413' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <return type-id='type-id-112'/>
+ <function-decl name='zpool_get_features' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <return type-id='type-id-104'/>
</function-decl>
- <function-decl name='zfs_error_aux' filepath='../../include/libzfs_impl.h' line='137' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
+ <function-decl name='zfs_error_aux' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-20'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='nvlist_add_string' filepath='../../include/sys/nvpair.h' line='179' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvlist_add_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='open' mangled-name='open64' filepath='/usr/include/fcntl.h' line='171' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
+ <function-decl name='open' mangled-name='open64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='read' filepath='/usr/include/unistd.h' line='360' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-59'/>
+ <function-decl name='read' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-54'/>
</function-decl>
- <function-decl name='close' filepath='/usr/include/unistd.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='close' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nvlist_add_uint64' filepath='../../include/sys/nvpair.h' line='178' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_crypto_clone_check' mangled-name='zfs_crypto_clone_check' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1168' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_clone_check'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1168' column='1'/>
- <parameter type-id='type-id-98' name='origin_zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1168' column='1'/>
- <parameter type-id='type-id-29' name='parent_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1169' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1169' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_crypto_attempt_load_keys' mangled-name='zfs_crypto_attempt_load_keys' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1234' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_attempt_load_keys'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1234' column='1'/>
- <parameter type-id='type-id-29' name='fsname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1234' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_handle_dup' filepath='../../include/libzfs.h' line='468' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-87'/>
+ <function-decl name='nvlist_add_uint64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_iter_filesystems' filepath='../../include/libzfs.h' line='617' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-103'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_crypto_clone_check' mangled-name='zfs_crypto_clone_check' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_clone_check'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-135' name='origin_zhp'/>
+ <parameter type-id='type-id-17' name='parent_name'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_crypto_load_key' mangled-name='zfs_crypto_load_key' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1269' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_load_key'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1269' column='1'/>
- <parameter type-id='type-id-6' name='noop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1269' column='1'/>
- <parameter type-id='type-id-29' name='alt_keylocation' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1269' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_crypto_attempt_load_keys' mangled-name='zfs_crypto_attempt_load_keys' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_attempt_load_keys'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-17' name='fsname'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_load_key' filepath='../../include/libzfs_core.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-78'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <qualified-type-def type-id='type-id-74' const='yes' id='type-id-149'/>
- <pointer-type-def type-id='type-id-149' size-in-bits='64' id='type-id-150'/>
- <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/regex.h' line='517' column='1' id='type-id-151'>
+ <function-decl name='zfs_handle_dup' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-82'/>
+ </function-decl>
+ <function-decl name='zfs_iter_filesystems' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-95'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_crypto_load_key' mangled-name='zfs_crypto_load_key' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_load_key'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-16' name='noop'/>
+ <parameter type-id='type-id-17' name='alt_keylocation'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_load_key' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-73'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-69' const='yes' id='type-id-143'/>
+ <pointer-type-def type-id='type-id-143' size-in-bits='64' id='type-id-144'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-145'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='rm_so' type-id='type-id-152' visibility='default' filepath='/usr/include/regex.h' line='519' column='1'/>
+ <var-decl name='rm_so' type-id='type-id-146' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='rm_eo' type-id='type-id-152' visibility='default' filepath='/usr/include/regex.h' line='520' column='1'/>
+ <var-decl name='rm_eo' type-id='type-id-146' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='regoff_t' type-id='type-id-1' filepath='/usr/include/regex.h' line='490' column='1' id='type-id-152'/>
- <pointer-type-def type-id='type-id-151' size-in-bits='64' id='type-id-153'/>
- <function-decl name='regexec' filepath='/usr/include/regex.h' line='643' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-150'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-153'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='regoff_t' type-id='type-id-8' id='type-id-146'/>
+ <pointer-type-def type-id='type-id-145' size-in-bits='64' id='type-id-147'/>
+ <function-decl name='regexec' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-144'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-147'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='_IO_FILE' size-in-bits='1728' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='49' column='1' id='type-id-154'>
+ <class-decl name='_IO_FILE' size-in-bits='1728' is-struct='yes' visibility='default' id='type-id-148'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='_flags' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='51' column='1'/>
+ <var-decl name='_flags' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='_IO_read_ptr' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='54' column='1'/>
+ <var-decl name='_IO_read_ptr' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='_IO_read_end' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='55' column='1'/>
+ <var-decl name='_IO_read_end' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='_IO_read_base' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='56' column='1'/>
+ <var-decl name='_IO_read_base' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='_IO_write_base' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='57' column='1'/>
+ <var-decl name='_IO_write_base' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='_IO_write_ptr' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='58' column='1'/>
+ <var-decl name='_IO_write_ptr' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='_IO_write_end' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='59' column='1'/>
+ <var-decl name='_IO_write_end' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='_IO_buf_base' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='60' column='1'/>
+ <var-decl name='_IO_buf_base' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='_IO_buf_end' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='61' column='1'/>
+ <var-decl name='_IO_buf_end' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='_IO_save_base' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='64' column='1'/>
+ <var-decl name='_IO_save_base' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='640'>
- <var-decl name='_IO_backup_base' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='65' column='1'/>
+ <var-decl name='_IO_backup_base' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='_IO_save_end' type-id='type-id-29' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='66' column='1'/>
+ <var-decl name='_IO_save_end' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='768'>
- <var-decl name='_markers' type-id='type-id-155' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='68' column='1'/>
+ <var-decl name='_markers' type-id='type-id-149' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='832'>
- <var-decl name='_chain' type-id='type-id-156' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='70' column='1'/>
+ <var-decl name='_chain' type-id='type-id-150' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='896'>
- <var-decl name='_fileno' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='72' column='1'/>
+ <var-decl name='_fileno' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='928'>
- <var-decl name='_flags2' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='73' column='1'/>
+ <var-decl name='_flags2' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='960'>
- <var-decl name='_old_offset' type-id='type-id-157' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='74' column='1'/>
+ <var-decl name='_old_offset' type-id='type-id-151' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1024'>
- <var-decl name='_cur_column' type-id='type-id-158' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='77' column='1'/>
+ <var-decl name='_cur_column' type-id='type-id-152' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1040'>
- <var-decl name='_vtable_offset' type-id='type-id-159' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='78' column='1'/>
+ <var-decl name='_vtable_offset' type-id='type-id-153' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1048'>
- <var-decl name='_shortbuf' type-id='type-id-160' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='79' column='1'/>
+ <var-decl name='_shortbuf' type-id='type-id-154' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1152'>
- <var-decl name='_offset' type-id='type-id-161' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='89' column='1'/>
+ <var-decl name='_offset' type-id='type-id-155' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1216'>
- <var-decl name='_codecvt' type-id='type-id-162' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='91' column='1'/>
+ <var-decl name='_codecvt' type-id='type-id-156' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1280'>
- <var-decl name='_wide_data' type-id='type-id-163' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='92' column='1'/>
+ <var-decl name='_wide_data' type-id='type-id-157' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1344'>
- <var-decl name='_freeres_list' type-id='type-id-156' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='93' column='1'/>
+ <var-decl name='_freeres_list' type-id='type-id-150' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1408'>
- <var-decl name='_freeres_buf' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='94' column='1'/>
+ <var-decl name='_freeres_buf' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1472'>
- <var-decl name='__pad5' type-id='type-id-38' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='95' column='1'/>
+ <var-decl name='__pad5' type-id='type-id-28' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1536'>
- <var-decl name='_mode' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='96' column='1'/>
+ <var-decl name='_mode' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1568'>
- <var-decl name='_unused2' type-id='type-id-164' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h' line='98' column='1'/>
+ <var-decl name='_unused2' type-id='type-id-158' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='_IO_marker' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-165'/>
- <pointer-type-def type-id='type-id-165' size-in-bits='64' id='type-id-155'/>
- <pointer-type-def type-id='type-id-154' size-in-bits='64' id='type-id-156'/>
- <typedef-decl name='__off_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='150' column='1' id='type-id-157'/>
- <type-decl name='unsigned short int' size-in-bits='16' id='type-id-158'/>
- <type-decl name='signed char' size-in-bits='8' id='type-id-159'/>
+ <class-decl name='_IO_marker' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-159'/>
+ <pointer-type-def type-id='type-id-159' size-in-bits='64' id='type-id-149'/>
+ <pointer-type-def type-id='type-id-148' size-in-bits='64' id='type-id-150'/>
+ <typedef-decl name='__off_t' type-id='type-id-54' id='type-id-151'/>
+ <type-decl name='unsigned short int' size-in-bits='16' id='type-id-152'/>
+ <type-decl name='signed char' size-in-bits='8' id='type-id-153'/>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='8' id='type-id-160'>
- <subrange length='1' type-id='type-id-43' id='type-id-166'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='8' id='type-id-154'>
+ <subrange length='1' type-id='type-id-33' id='type-id-160'/>
</array-type-def>
- <typedef-decl name='__off64_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='151' column='1' id='type-id-161'/>
- <class-decl name='_IO_codecvt' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-167'/>
- <pointer-type-def type-id='type-id-167' size-in-bits='64' id='type-id-162'/>
- <class-decl name='_IO_wide_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-168'/>
- <pointer-type-def type-id='type-id-168' size-in-bits='64' id='type-id-163'/>
+ <typedef-decl name='__off64_t' type-id='type-id-54' id='type-id-155'/>
+ <class-decl name='_IO_codecvt' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-161'/>
+ <pointer-type-def type-id='type-id-161' size-in-bits='64' id='type-id-156'/>
+ <class-decl name='_IO_wide_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-162'/>
+ <pointer-type-def type-id='type-id-162' size-in-bits='64' id='type-id-157'/>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='160' id='type-id-164'>
- <subrange length='20' type-id='type-id-43' id='type-id-169'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='160' id='type-id-158'>
+ <subrange length='20' type-id='type-id-33' id='type-id-163'/>
</array-type-def>
- <function-decl name='fileno' filepath='/usr/include/stdio.h' line='792' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fileno' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='isatty' filepath='/usr/include/unistd.h' line='779' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='isatty' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <qualified-type-def type-id='type-id-80' const='yes' id='type-id-170'/>
- <pointer-type-def type-id='type-id-170' size-in-bits='64' id='type-id-171'/>
- <function-decl name='PKCS5_PBKDF2_HMAC_SHA1' filepath='/usr/include/openssl/evp.h' line='1087' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-171'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-78'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_crypto_unload_key' mangled-name='zfs_crypto_unload_key' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1437' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_unload_key'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1437' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_unload_key' filepath='../../include/libzfs_core.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <qualified-type-def type-id='type-id-75' const='yes' id='type-id-164'/>
+ <pointer-type-def type-id='type-id-164' size-in-bits='64' id='type-id-165'/>
+ <function-decl name='PKCS5_PBKDF2_HMAC_SHA1' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-165'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-73'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_crypto_rewrap' mangled-name='zfs_crypto_rewrap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1573' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_rewrap'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1573' column='1'/>
- <parameter type-id='type-id-28' name='raw_props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1573' column='1'/>
- <parameter type-id='type-id-6' name='inheritkey' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_crypto.c' line='1573' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_crypto_unload_key' mangled-name='zfs_crypto_unload_key' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_unload_key'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_parent_name' filepath='../../include/libzfs.h' line='815' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_unload_key' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvlist_alloc' filepath='../../include/sys/nvpair.h' line='276' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-112'/>
+ <function-decl name='zfs_crypto_rewrap' mangled-name='zfs_crypto_rewrap' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_crypto_rewrap'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-15' name='raw_props'/>
+ <parameter type-id='type-id-16' name='inheritkey'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_name_to_prop' filepath='../../include/sys/fs/zfs.h' line='313' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
+ <function-decl name='zfs_parent_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
<return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_valid_proplist' filepath='../../include/libzfs.h' line='489' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-81'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-112'/>
+ <function-decl name='fnvlist_alloc' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-104'/>
</function-decl>
- <function-decl name='lzc_change_key' filepath='../../include/libzfs_core.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-78'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_name_to_prop' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-85'/>
</function-decl>
- <function-decl name='ferror' filepath='/usr/include/stdio.h' line='767' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_valid_proplist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-76'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-104'/>
+ </function-decl>
+ <function-decl name='lzc_change_key' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-73'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='ferror' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='__anonymous_struct__' size-in-bits='1024' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-172' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h' line='5' column='1' id='type-id-173'>
+ <class-decl name='__anonymous_struct__' size-in-bits='1024' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-166' visibility='default' id='type-id-167'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='__val' type-id='type-id-174' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h' line='7' column='1'/>
+ <var-decl name='__val' type-id='type-id-168' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-45' size-in-bits='1024' id='type-id-174'>
- <subrange length='16' type-id='type-id-43' id='type-id-175'/>
+ <array-type-def dimensions='1' type-id='type-id-35' size-in-bits='1024' id='type-id-168'>
+ <subrange length='16' type-id='type-id-33' id='type-id-169'/>
</array-type-def>
- <pointer-type-def type-id='type-id-173' size-in-bits='64' id='type-id-176'/>
- <function-decl name='sigemptyset' filepath='/usr/include/signal.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-176'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-167' size-in-bits='64' id='type-id-170'/>
+ <function-decl name='sigemptyset' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-170'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='sigaction' size-in-bits='1216' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='27' column='1' id='type-id-177'>
+ <class-decl name='sigaction' size-in-bits='1216' is-struct='yes' visibility='default' id='type-id-171'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='__sigaction_handler' type-id='type-id-178' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='38' column='1'/>
+ <var-decl name='__sigaction_handler' type-id='type-id-172' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='sa_mask' type-id='type-id-172' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='46' column='1'/>
+ <var-decl name='sa_mask' type-id='type-id-166' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1088'>
- <var-decl name='sa_flags' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='49' column='1'/>
+ <var-decl name='sa_flags' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='1152'>
- <var-decl name='sa_restorer' type-id='type-id-179' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='52' column='1'/>
+ <var-decl name='sa_restorer' type-id='type-id-173' visibility='default'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__' size-in-bits='64' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='31' column='1' id='type-id-178'>
+ <union-decl name='__anonymous_union__' size-in-bits='64' is-anonymous='yes' visibility='default' id='type-id-172'>
<data-member access='private'>
- <var-decl name='sa_handler' type-id='type-id-180' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='34' column='1'/>
+ <var-decl name='sa_handler' type-id='type-id-174' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='sa_sigaction' type-id='type-id-181' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/sigaction.h' line='36' column='1'/>
+ <var-decl name='sa_sigaction' type-id='type-id-175' visibility='default'/>
</data-member>
</union-decl>
- <pointer-type-def type-id='type-id-182' size-in-bits='64' id='type-id-183'/>
- <typedef-decl name='__sighandler_t' type-id='type-id-183' filepath='/usr/include/signal.h' line='72' column='1' id='type-id-180'/>
- <class-decl name='__anonymous_struct__' size-in-bits='1024' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-184' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='36' column='1' id='type-id-185'>
+ <pointer-type-def type-id='type-id-176' size-in-bits='64' id='type-id-177'/>
+ <typedef-decl name='__sighandler_t' type-id='type-id-177' id='type-id-174'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='1024' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-178' visibility='default' id='type-id-179'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='si_signo' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='38' column='1'/>
+ <var-decl name='si_signo' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='si_errno' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='40' column='1'/>
+ <var-decl name='si_errno' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='si_code' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='42' column='1'/>
+ <var-decl name='si_code' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='__pad0' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='48' column='1'/>
+ <var-decl name='__pad0' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='_sifields' type-id='type-id-186' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='123' column='1'/>
+ <var-decl name='_sifields' type-id='type-id-180' visibility='default'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__' size-in-bits='896' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='51' column='1' id='type-id-186'>
+ <union-decl name='__anonymous_union__' size-in-bits='896' is-anonymous='yes' visibility='default' id='type-id-180'>
<data-member access='private'>
- <var-decl name='_pad' type-id='type-id-187' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='53' column='1'/>
+ <var-decl name='_pad' type-id='type-id-181' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_kill' type-id='type-id-188' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='60' column='1'/>
+ <var-decl name='_kill' type-id='type-id-182' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_timer' type-id='type-id-189' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='68' column='1'/>
+ <var-decl name='_timer' type-id='type-id-183' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_rt' type-id='type-id-190' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='76' column='1'/>
+ <var-decl name='_rt' type-id='type-id-184' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_sigchld' type-id='type-id-191' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='86' column='1'/>
+ <var-decl name='_sigchld' type-id='type-id-185' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_sigfault' type-id='type-id-192' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='105' column='1'/>
+ <var-decl name='_sigfault' type-id='type-id-186' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_sigpoll' type-id='type-id-193' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='112' column='1'/>
+ <var-decl name='_sigpoll' type-id='type-id-187' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_sigsys' type-id='type-id-194' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='121' column='1'/>
+ <var-decl name='_sigsys' type-id='type-id-188' visibility='default'/>
</data-member>
</union-decl>
- <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='896' id='type-id-187'>
- <subrange length='28' type-id='type-id-43' id='type-id-195'/>
+ <array-type-def dimensions='1' type-id='type-id-8' size-in-bits='896' id='type-id-181'>
+ <subrange length='28' type-id='type-id-33' id='type-id-189'/>
</array-type-def>
- <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='56' column='1' id='type-id-188'>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-182'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='si_pid' type-id='type-id-196' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='58' column='1'/>
+ <var-decl name='si_pid' type-id='type-id-190' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='si_uid' type-id='type-id-197' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='59' column='1'/>
+ <var-decl name='si_uid' type-id='type-id-191' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__pid_t' type-id='type-id-1' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='152' column='1' id='type-id-196'/>
- <typedef-decl name='__uid_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='144' column='1' id='type-id-197'/>
- <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='63' column='1' id='type-id-189'>
+ <typedef-decl name='__pid_t' type-id='type-id-8' id='type-id-190'/>
+ <typedef-decl name='__uid_t' type-id='type-id-5' id='type-id-191'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-183'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='si_tid' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='65' column='1'/>
+ <var-decl name='si_tid' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='si_overrun' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='66' column='1'/>
+ <var-decl name='si_overrun' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='si_sigval' type-id='type-id-198' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='67' column='1'/>
+ <var-decl name='si_sigval' type-id='type-id-192' visibility='default'/>
</data-member>
</class-decl>
- <union-decl name='sigval' size-in-bits='64' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h' line='24' column='1' id='type-id-199'>
+ <union-decl name='sigval' size-in-bits='64' visibility='default' id='type-id-193'>
<data-member access='private'>
- <var-decl name='sival_int' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h' line='26' column='1'/>
+ <var-decl name='sival_int' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='sival_ptr' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h' line='27' column='1'/>
+ <var-decl name='sival_ptr' type-id='type-id-7' visibility='default'/>
</data-member>
</union-decl>
- <typedef-decl name='__sigval_t' type-id='type-id-199' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h' line='30' column='1' id='type-id-198'/>
- <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='71' column='1' id='type-id-190'>
+ <typedef-decl name='__sigval_t' type-id='type-id-193' id='type-id-192'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-184'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='si_pid' type-id='type-id-196' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='73' column='1'/>
+ <var-decl name='si_pid' type-id='type-id-190' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='si_uid' type-id='type-id-197' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='74' column='1'/>
+ <var-decl name='si_uid' type-id='type-id-191' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='si_sigval' type-id='type-id-198' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='75' column='1'/>
+ <var-decl name='si_sigval' type-id='type-id-192' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='79' column='1' id='type-id-191'>
+ <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-185'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='si_pid' type-id='type-id-196' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='81' column='1'/>
+ <var-decl name='si_pid' type-id='type-id-190' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='si_uid' type-id='type-id-197' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='82' column='1'/>
+ <var-decl name='si_uid' type-id='type-id-191' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='si_status' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='83' column='1'/>
+ <var-decl name='si_status' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='si_utime' type-id='type-id-200' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='84' column='1'/>
+ <var-decl name='si_utime' type-id='type-id-194' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='si_stime' type-id='type-id-200' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='85' column='1'/>
+ <var-decl name='si_stime' type-id='type-id-194' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__clock_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='154' column='1' id='type-id-200'/>
- <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='89' column='1' id='type-id-192'>
+ <typedef-decl name='__clock_t' type-id='type-id-54' id='type-id-194'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='256' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-186'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='si_addr' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='91' column='1'/>
+ <var-decl name='si_addr' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='si_addr_lsb' type-id='type-id-60' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='93' column='1'/>
+ <var-decl name='si_addr_lsb' type-id='type-id-55' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='_bounds' type-id='type-id-201' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='104' column='1'/>
+ <var-decl name='_bounds' type-id='type-id-195' visibility='default'/>
</data-member>
</class-decl>
- <union-decl name='__anonymous_union__' size-in-bits='128' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='94' column='1' id='type-id-201'>
+ <union-decl name='__anonymous_union__' size-in-bits='128' is-anonymous='yes' visibility='default' id='type-id-195'>
<data-member access='private'>
- <var-decl name='_addr_bnd' type-id='type-id-202' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='101' column='1'/>
+ <var-decl name='_addr_bnd' type-id='type-id-196' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='_pkey' type-id='type-id-50' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='103' column='1'/>
+ <var-decl name='_pkey' type-id='type-id-40' visibility='default'/>
</data-member>
</union-decl>
- <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='97' column='1' id='type-id-202'>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-196'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='_lower' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='99' column='1'/>
+ <var-decl name='_lower' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='_upper' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='100' column='1'/>
+ <var-decl name='_upper' type-id='type-id-7' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='108' column='1' id='type-id-193'>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-187'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='si_band' type-id='type-id-59' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='110' column='1'/>
+ <var-decl name='si_band' type-id='type-id-54' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='si_fd' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='111' column='1'/>
+ <var-decl name='si_fd' type-id='type-id-8' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='116' column='1' id='type-id-194'>
+ <class-decl name='__anonymous_struct__' size-in-bits='128' is-struct='yes' is-anonymous='yes' visibility='default' id='type-id-188'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='_call_addr' type-id='type-id-21' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='118' column='1'/>
+ <var-decl name='_call_addr' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='_syscall' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='119' column='1'/>
+ <var-decl name='_syscall' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='_arch' type-id='type-id-19' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='120' column='1'/>
+ <var-decl name='_arch' type-id='type-id-5' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='siginfo_t' type-id='type-id-185' filepath='/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h' line='124' column='1' id='type-id-184'/>
- <pointer-type-def type-id='type-id-184' size-in-bits='64' id='type-id-203'/>
- <pointer-type-def type-id='type-id-204' size-in-bits='64' id='type-id-181'/>
- <typedef-decl name='__sigset_t' type-id='type-id-173' filepath='/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h' line='8' column='1' id='type-id-172'/>
- <pointer-type-def type-id='type-id-205' size-in-bits='64' id='type-id-179'/>
- <qualified-type-def type-id='type-id-177' const='yes' id='type-id-206'/>
- <pointer-type-def type-id='type-id-206' size-in-bits='64' id='type-id-207'/>
- <pointer-type-def type-id='type-id-177' size-in-bits='64' id='type-id-208'/>
- <function-decl name='sigaction' filepath='/usr/include/signal.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-207'/>
- <parameter type-id='type-id-208'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fputc' filepath='/usr/include/stdio.h' line='527' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fflush' filepath='/usr/include/stdio.h' line='218' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <class-decl name='termios' size-in-bits='480' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='28' column='1' id='type-id-209'>
+ <typedef-decl name='siginfo_t' type-id='type-id-179' id='type-id-178'/>
+ <pointer-type-def type-id='type-id-178' size-in-bits='64' id='type-id-197'/>
+ <pointer-type-def type-id='type-id-198' size-in-bits='64' id='type-id-175'/>
+ <typedef-decl name='__sigset_t' type-id='type-id-167' id='type-id-166'/>
+ <pointer-type-def type-id='type-id-199' size-in-bits='64' id='type-id-173'/>
+ <qualified-type-def type-id='type-id-171' const='yes' id='type-id-200'/>
+ <pointer-type-def type-id='type-id-200' size-in-bits='64' id='type-id-201'/>
+ <pointer-type-def type-id='type-id-171' size-in-bits='64' id='type-id-202'/>
+ <function-decl name='sigaction' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-201'/>
+ <parameter type-id='type-id-202'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fputc' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fflush' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <class-decl name='termios' size-in-bits='480' is-struct='yes' visibility='default' id='type-id-203'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='c_iflag' type-id='type-id-210' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='30' column='1'/>
+ <var-decl name='c_iflag' type-id='type-id-204' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='c_oflag' type-id='type-id-210' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='31' column='1'/>
+ <var-decl name='c_oflag' type-id='type-id-204' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='c_cflag' type-id='type-id-210' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='32' column='1'/>
+ <var-decl name='c_cflag' type-id='type-id-204' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='c_lflag' type-id='type-id-210' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='33' column='1'/>
+ <var-decl name='c_lflag' type-id='type-id-204' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='c_line' type-id='type-id-211' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='34' column='1'/>
+ <var-decl name='c_line' type-id='type-id-205' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='136'>
- <var-decl name='c_cc' type-id='type-id-212' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='35' column='1'/>
+ <var-decl name='c_cc' type-id='type-id-206' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='416'>
- <var-decl name='c_ispeed' type-id='type-id-213' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='36' column='1'/>
+ <var-decl name='c_ispeed' type-id='type-id-207' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='c_ospeed' type-id='type-id-213' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='37' column='1'/>
+ <var-decl name='c_ospeed' type-id='type-id-207' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='tcflag_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='25' column='1' id='type-id-210'/>
- <typedef-decl name='cc_t' type-id='type-id-80' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='23' column='1' id='type-id-211'/>
+ <typedef-decl name='tcflag_t' type-id='type-id-5' id='type-id-204'/>
+ <typedef-decl name='cc_t' type-id='type-id-75' id='type-id-205'/>
- <array-type-def dimensions='1' type-id='type-id-211' size-in-bits='256' id='type-id-212'>
- <subrange length='32' type-id='type-id-43' id='type-id-214'/>
+ <array-type-def dimensions='1' type-id='type-id-205' size-in-bits='256' id='type-id-206'>
+ <subrange length='32' type-id='type-id-33' id='type-id-208'/>
</array-type-def>
- <typedef-decl name='speed_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/termios.h' line='24' column='1' id='type-id-213'/>
- <pointer-type-def type-id='type-id-209' size-in-bits='64' id='type-id-215'/>
- <function-decl name='tcgetattr' filepath='/usr/include/termios.h' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-215'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <qualified-type-def type-id='type-id-209' const='yes' id='type-id-216'/>
- <pointer-type-def type-id='type-id-216' size-in-bits='64' id='type-id-217'/>
- <function-decl name='tcsetattr' filepath='/usr/include/termios.h' line='70' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-217'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='getpid' filepath='/usr/include/unistd.h' line='628' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='kill' filepath='/usr/include/signal.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fclose' filepath='/usr/include/stdio.h' line='213' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='dlopen' filepath='/usr/include/dlfcn.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-21'/>
+ <typedef-decl name='speed_t' type-id='type-id-5' id='type-id-207'/>
+ <pointer-type-def type-id='type-id-203' size-in-bits='64' id='type-id-209'/>
+ <function-decl name='tcgetattr' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-209'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='dlsym' filepath='/usr/include/dlfcn.h' line='64' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-21'/>
+ <qualified-type-def type-id='type-id-203' const='yes' id='type-id-210'/>
+ <pointer-type-def type-id='type-id-210' size-in-bits='64' id='type-id-211'/>
+ <function-decl name='tcsetattr' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-211'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fdopen' filepath='/usr/include/stdio.h' line='279' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-156'/>
+ <function-decl name='getpid' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='dlerror' filepath='/usr/include/dlfcn.h' line='82' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-29'/>
+ <function-decl name='kill' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='asprintf' filepath='/usr/include/stdio.h' line='372' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-92'/>
- <parameter type-id='type-id-89'/>
+ <function-decl name='fclose' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='dlopen' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='dlsym' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='fdopen' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-150'/>
+ </function-decl>
+ <function-decl name='dlerror' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-17'/>
+ </function-decl>
+ <function-decl name='asprintf' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-88'/>
+ <parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='mkostemps' mangled-name='mkostemps64' filepath='/usr/include/stdlib.h' line='763' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='mkostemps' mangled-name='mkostemps64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='unlink' filepath='/usr/include/unistd.h' line='825' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='unlink' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='rewind' filepath='/usr/include/stdio.h' line='700' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-20'/>
+ <function-decl name='rewind' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-205'>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-199'>
+ <return type-id='type-id-6'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-182'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-176'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-6'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-204'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-203'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-198'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-197'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-6'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_dataset.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zfs_type_to_name' mangled-name='zfs_type_to_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_type_to_name'>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='79' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zfs_validate_name' mangled-name='zfs_validate_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='105' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_validate_name'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='105' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='105' column='1'/>
- <parameter type-id='type-id-1' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='105' column='1'/>
- <parameter type-id='type-id-6' name='modifying' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='106' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/zfs_namecheck.h' line='36' column='1' id='type-id-218'>
- <underlying-type type-id='type-id-7'/>
+ <function-decl name='zfs_type_to_name' mangled-name='zfs_type_to_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_type_to_name'>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-212'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='NAME_ERR_LEADING_SLASH' value='0'/>
<enumerator name='NAME_ERR_EMPTY_COMPONENT' value='1'/>
<enumerator name='NAME_ERR_TRAILING_SLASH' value='2'/>
@@ -2428,1063 +2268,1036 @@
<enumerator name='NAME_ERR_NO_AT' value='11'/>
<enumerator name='NAME_ERR_NO_POUND' value='12'/>
</enum-decl>
- <pointer-type-def type-id='type-id-218' size-in-bits='64' id='type-id-219'/>
- <function-decl name='entity_namecheck' filepath='../../include/zfs_namecheck.h' line='58' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-219'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-212' size-in-bits='64' id='type-id-213'/>
+ <function-decl name='entity_namecheck' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-213'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_name_valid' mangled-name='zfs_name_valid' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_name_valid'>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_name_valid' mangled-name='zfs_name_valid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_name_valid'>
- <parameter type-id='type-id-89' name='name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='221' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='221' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_name_valid' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zpool_name_valid' filepath='../../include/libzfs_impl.h' line='201' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zpool_free_handles' mangled-name='zpool_free_handles' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_free_handles'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zpool_free_handles' mangled-name='zpool_free_handles' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='312' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_free_handles'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='312' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_close' filepath='../../include/libzfs.h' line='236' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_refresh_properties' mangled-name='zfs_refresh_properties' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='433' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_refresh_properties'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='433' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='make_dataset_handle' mangled-name='make_dataset_handle' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='477' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='make_dataset_handle'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='477' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='477' column='1'/>
- <return type-id='type-id-98'/>
- </function-decl>
- <typedef-decl name='zfs_cmd_t' type-id='type-id-116' filepath='../../include/sys/zfs_ioctl.h' line='518' column='1' id='type-id-220'/>
- <pointer-type-def type-id='type-id-220' size-in-bits='64' id='type-id-221'/>
- <function-decl name='make_dataset_handle_zc' mangled-name='make_dataset_handle_zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='506' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='make_dataset_handle_zc'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='506' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='506' column='1'/>
- <return type-id='type-id-98'/>
- </function-decl>
- <function-decl name='make_dataset_simple_handle_zc' mangled-name='make_dataset_simple_handle_zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='523' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='make_dataset_simple_handle_zc'>
- <parameter type-id='type-id-98' name='pzhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='523' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='523' column='1'/>
- <return type-id='type-id-98'/>
- </function-decl>
- <function-decl name='zpool_get_name' filepath='../../include/libzfs.h' line='237' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zpool_open_canfail' filepath='../../include/libzfs.h' line='235' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-134'/>
+ <function-decl name='zpool_close' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_handle_dup' mangled-name='zfs_handle_dup' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='540' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_handle_dup'>
- <parameter type-id='type-id-98' name='zhp_orig' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='540' column='1'/>
- <return type-id='type-id-98'/>
+ <function-decl name='zfs_refresh_properties' mangled-name='zfs_refresh_properties' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_refresh_properties'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zpool_get_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zpool_open_canfail' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-126'/>
</function-decl>
- <function-decl name='zfs_close' mangled-name='zfs_close' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='772' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_close'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='772' column='1'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_handle_dup' mangled-name='zfs_handle_dup' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_handle_dup'>
+ <parameter type-id='type-id-135' name='zhp_orig'/>
+ <return type-id='type-id-135'/>
</function-decl>
- <function-decl name='zfs_bookmark_exists' mangled-name='zfs_bookmark_exists' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='587' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_bookmark_exists'>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='587' column='1'/>
+ <function-decl name='zfs_close' mangled-name='zfs_close' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_close'>
+ <parameter type-id='type-id-135' name='zhp'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='lzc_get_bookmarks' filepath='../../include/libzfs_core.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='make_bookmark_handle' mangled-name='make_bookmark_handle' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='make_bookmark_handle'>
- <parameter type-id='type-id-98' name='parent' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='618' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='618' column='1'/>
- <parameter type-id='type-id-28' name='bmark_props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='619' column='1'/>
- <return type-id='type-id-98'/>
- </function-decl>
- <function-decl name='zfs_open' mangled-name='zfs_open' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='683' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_open'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='683' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='683' column='1'/>
- <parameter type-id='type-id-1' name='types' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='683' column='1'/>
- <return type-id='type-id-98'/>
- </function-decl>
- <function-decl name='zfs_iter_bookmarks' filepath='../../include/libzfs.h' line='623' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-103'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_bookmark_exists' mangled-name='zfs_bookmark_exists' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_bookmark_exists'>
+ <parameter type-id='type-id-84' name='path'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='libzfs_mnttab_init' mangled-name='libzfs_mnttab_init' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='800' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_init'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='800' column='1'/>
- <return type-id='type-id-20'/>
+ <function-decl name='lzc_get_bookmarks' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_open' mangled-name='zfs_open' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_open'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-8' name='types'/>
+ <return type-id='type-id-135'/>
+ </function-decl>
+ <function-decl name='zfs_iter_bookmarks' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-95'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-56' size-in-bits='64' id='type-id-222'/>
- <union-decl name='__anonymous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='32' column='1' id='type-id-223'>
+ <function-decl name='libzfs_mnttab_init' mangled-name='libzfs_mnttab_init' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_init'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-51' size-in-bits='64' id='type-id-214'/>
+ <union-decl name='__anonymous_union__' size-in-bits='32' is-anonymous='yes' visibility='default' id='type-id-215'>
<data-member access='private'>
- <var-decl name='__size' type-id='type-id-224' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='34' column='1'/>
+ <var-decl name='__size' type-id='type-id-216' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='__align' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='35' column='1'/>
+ <var-decl name='__align' type-id='type-id-8' visibility='default'/>
</data-member>
</union-decl>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='32' id='type-id-224'>
- <subrange length='4' type-id='type-id-43' id='type-id-225'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='32' id='type-id-216'>
+ <subrange length='4' type-id='type-id-33' id='type-id-217'/>
</array-type-def>
- <qualified-type-def type-id='type-id-223' const='yes' id='type-id-226'/>
- <pointer-type-def type-id='type-id-226' size-in-bits='64' id='type-id-227'/>
- <function-decl name='pthread_mutex_init' filepath='/usr/include/pthread.h' line='750' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-222'/>
- <parameter type-id='type-id-227'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <pointer-type-def type-id='type-id-65' size-in-bits='64' id='type-id-228'/>
- <function-decl name='avl_create' filepath='../../include/sys/avl.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <parameter type-id='type-id-67'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='libzfs_mnttab_fini' mangled-name='libzfs_mnttab_fini' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='848' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_fini'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='848' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='avl_destroy_nodes' filepath='../../include/sys/avl.h' line='309' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <parameter type-id='type-id-111'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='avl_destroy' filepath='../../include/sys/avl.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='pthread_mutex_destroy' filepath='/usr/include/pthread.h' line='755' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-222'/>
- <return type-id='type-id-1'/>
+ <qualified-type-def type-id='type-id-215' const='yes' id='type-id-218'/>
+ <pointer-type-def type-id='type-id-218' size-in-bits='64' id='type-id-219'/>
+ <function-decl name='pthread_mutex_init' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-214'/>
+ <parameter type-id='type-id-219'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-60' size-in-bits='64' id='type-id-220'/>
+ <function-decl name='avl_create' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <parameter type-id='type-id-62'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='libzfs_mnttab_fini' mangled-name='libzfs_mnttab_fini' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_fini'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='avl_destroy_nodes' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <parameter type-id='type-id-103'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='avl_destroy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='pthread_mutex_destroy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-214'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='libzfs_mnttab_cache' mangled-name='libzfs_mnttab_cache' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='866' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_cache'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='866' column='1'/>
- <parameter type-id='type-id-6' name='enable' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='866' column='1'/>
- <return type-id='type-id-20'/>
+ <function-decl name='libzfs_mnttab_cache' mangled-name='libzfs_mnttab_cache' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_cache'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-16' name='enable'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <class-decl name='mnttab' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='49' column='1' id='type-id-229'>
+ <class-decl name='mnttab' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-221'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='mnt_special' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='50' column='1'/>
+ <var-decl name='mnt_special' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='mnt_mountp' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='51' column='1'/>
+ <var-decl name='mnt_mountp' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='mnt_fstype' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='52' column='1'/>
+ <var-decl name='mnt_fstype' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='mnt_mntopts' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='53' column='1'/>
+ <var-decl name='mnt_mntopts' type-id='type-id-17' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-229' size-in-bits='64' id='type-id-230'/>
- <function-decl name='libzfs_mnttab_find' mangled-name='libzfs_mnttab_find' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='872' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_find'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='872' column='1'/>
- <parameter type-id='type-id-89' name='fsname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='872' column='1'/>
- <parameter type-id='type-id-230' name='entry' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='873' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='pthread_mutex_lock' filepath='/usr/include/pthread.h' line='763' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-222'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-221' size-in-bits='64' id='type-id-222'/>
+ <function-decl name='libzfs_mnttab_find' mangled-name='libzfs_mnttab_find' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_find'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='fsname'/>
+ <parameter type-id='type-id-222' name='entry'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='avl_numnodes' filepath='../../include/sys/avl.h' line='281' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <return type-id='type-id-45'/>
+ <function-decl name='pthread_mutex_lock' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-214'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='avl_find' filepath='../../include/sys/avl.h' line='175' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-110'/>
- <return type-id='type-id-21'/>
+ <function-decl name='avl_numnodes' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <function-decl name='getmntany' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-156'/>
- <parameter type-id='type-id-230'/>
- <parameter type-id='type-id-230'/>
- <return type-id='type-id-1'/>
+ <function-decl name='avl_find' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-102'/>
+ <return type-id='type-id-7'/>
</function-decl>
- <function-decl name='pthread_mutex_unlock' filepath='/usr/include/pthread.h' line='774' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='getmntany' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-150'/>
<parameter type-id='type-id-222'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='avl_add' filepath='../../include/sys/avl.h' line='252' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='libzfs_mnttab_add' mangled-name='libzfs_mnttab_add' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_add'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='917' column='1'/>
- <parameter type-id='type-id-89' name='special' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='917' column='1'/>
- <parameter type-id='type-id-89' name='mountp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='918' column='1'/>
- <parameter type-id='type-id-89' name='mntopts' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='918' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='libzfs_mnttab_remove' mangled-name='libzfs_mnttab_remove' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='947' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_remove'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='947' column='1'/>
- <parameter type-id='type-id-89' name='fsname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='947' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='avl_remove' filepath='../../include/sys/avl.h' line='260' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <pointer-type-def type-id='type-id-1' size-in-bits='64' id='type-id-231'/>
- <function-decl name='zfs_spa_version' mangled-name='zfs_spa_version' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_spa_version'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='967' column='1'/>
- <parameter type-id='type-id-231' name='spa_version' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='967' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_valid_proplist' mangled-name='zfs_valid_proplist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1004' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_valid_proplist'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1004' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1004' column='1'/>
- <parameter type-id='type-id-28' name='nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1004' column='1'/>
- <parameter type-id='type-id-32' name='zoned' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1005' column='1'/>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1005' column='1'/>
- <parameter type-id='type-id-24' name='zpool_hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1005' column='1'/>
- <parameter type-id='type-id-6' name='key_params_ok' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1006' column='1'/>
- <parameter type-id='type-id-89' name='errbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1006' column='1'/>
- <return type-id='type-id-28'/>
+ <parameter type-id='type-id-222'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nvlist_alloc' filepath='../../include/sys/nvpair.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-115'/>
- <parameter type-id='type-id-19'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='pthread_mutex_unlock' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-214'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_valid_for_type' filepath='../../include/sys/fs/zfs.h' line='320' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-81'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-13'/>
+ <function-decl name='avl_add' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_prop_readonly' filepath='../../include/sys/fs/zfs.h' line='306' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-13'/>
+ <function-decl name='libzfs_mnttab_add' mangled-name='libzfs_mnttab_add' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_add'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='special'/>
+ <parameter type-id='type-id-84' name='mountp'/>
+ <parameter type-id='type-id-84' name='mntopts'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_prop_setonce' filepath='../../include/sys/fs/zfs.h' line='309' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='libzfs_mnttab_remove' mangled-name='libzfs_mnttab_remove' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_mnttab_remove'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='fsname'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='avl_remove' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-8' size-in-bits='64' id='type-id-223'/>
+ <function-decl name='zfs_spa_version' mangled-name='zfs_spa_version' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_spa_version'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-223' name='spa_version'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_valid_proplist' mangled-name='zfs_valid_proplist' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_valid_proplist'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <parameter type-id='type-id-15' name='nvl'/>
+ <parameter type-id='type-id-22' name='zoned'/>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-11' name='zpool_hdl'/>
+ <parameter type-id='type-id-16' name='key_params_ok'/>
+ <parameter type-id='type-id-84' name='errbuf'/>
+ <return type-id='type-id-15'/>
+ </function-decl>
+ <function-decl name='nvlist_alloc' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-107'/>
+ <parameter type-id='type-id-5'/>
<parameter type-id='type-id-8'/>
- <return type-id='type-id-13'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_encryption_key_param' filepath='../../include/sys/fs/zfs.h' line='310' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='zfs_prop_valid_for_type' visibility='default' binding='global' size-in-bits='64'>
<parameter type-id='type-id-8'/>
- <return type-id='type-id-13'/>
+ <parameter type-id='type-id-76'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zprop_parse_value' filepath='../../include/libzfs_impl.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-141'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-81'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-92'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_readonly' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zfs_prop_user' filepath='../../include/sys/fs/zfs.h' line='314' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_prop_setonce' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='nvpair_type' filepath='../../include/sys/nvpair.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-140'/>
+ <function-decl name='zfs_prop_encryption_key_param' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='nvpair_value_string' filepath='../../include/sys/nvpair.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <parameter type-id='type-id-92'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zprop_parse_value' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-133'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-76'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-88'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_userquota' filepath='../../include/sys/fs/zfs.h' line='315' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_prop_user' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zfs_nicestrtonum' filepath='../../include/libzfs.h' line='868' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-110'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvpair_type' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-132'/>
</function-decl>
- <function-decl name='nvpair_value_uint64' filepath='../../include/sys/nvpair.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <parameter type-id='type-id-110'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvpair_value_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <parameter type-id='type-id-88'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='mountpoint_namecheck' filepath='../../include/zfs_namecheck.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-219'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_userquota' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zfs_prop_valid_keylocation' filepath='../../include/sys/fs/zfs.h' line='311' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_nicestrtonum' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-102'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_prop_get_feature' filepath='../../include/libzfs.h' line='565' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvpair_value_uint64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <parameter type-id='type-id-102'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_parse_options' filepath='../../include/libzfs_impl.h' line='208' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-93'/>
- <return type-id='type-id-1'/>
+ <function-decl name='mountpoint_namecheck' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-213'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nvlist_add_uint64_array' filepath='../../include/sys/nvpair.h' line='190' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_valid_keylocation' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='zpool_prop_get_feature' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_written' filepath='../../include/sys/fs/zfs.h' line='316' column='1' visibility='default' binding='global' size-in-bits='64'>
+ <function-decl name='zfs_parse_options' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
<parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_nicebytes' filepath='../../include/libzutil.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-20'/>
+ <function-decl name='nvlist_add_uint64_array' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_prop_written' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='zfs_nicebytes' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <class-decl name='passwd' size-in-bits='384' is-struct='yes' visibility='default' filepath='/usr/include/pwd.h' line='49' column='1' id='type-id-232'>
+ <class-decl name='passwd' size-in-bits='384' is-struct='yes' visibility='default' id='type-id-224'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='pw_name' type-id='type-id-29' visibility='default' filepath='/usr/include/pwd.h' line='51' column='1'/>
+ <var-decl name='pw_name' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='pw_passwd' type-id='type-id-29' visibility='default' filepath='/usr/include/pwd.h' line='52' column='1'/>
+ <var-decl name='pw_passwd' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='pw_uid' type-id='type-id-197' visibility='default' filepath='/usr/include/pwd.h' line='54' column='1'/>
+ <var-decl name='pw_uid' type-id='type-id-191' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='pw_gid' type-id='type-id-233' visibility='default' filepath='/usr/include/pwd.h' line='55' column='1'/>
+ <var-decl name='pw_gid' type-id='type-id-225' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='pw_gecos' type-id='type-id-29' visibility='default' filepath='/usr/include/pwd.h' line='56' column='1'/>
+ <var-decl name='pw_gecos' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='pw_dir' type-id='type-id-29' visibility='default' filepath='/usr/include/pwd.h' line='57' column='1'/>
+ <var-decl name='pw_dir' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='pw_shell' type-id='type-id-29' visibility='default' filepath='/usr/include/pwd.h' line='58' column='1'/>
+ <var-decl name='pw_shell' type-id='type-id-17' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__gid_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='145' column='1' id='type-id-233'/>
- <pointer-type-def type-id='type-id-232' size-in-bits='64' id='type-id-234'/>
- <function-decl name='getpwnam' filepath='/usr/include/pwd.h' line='116' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-234'/>
+ <typedef-decl name='__gid_t' type-id='type-id-5' id='type-id-225'/>
+ <pointer-type-def type-id='type-id-224' size-in-bits='64' id='type-id-226'/>
+ <function-decl name='getpwnam' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-226'/>
</function-decl>
- <class-decl name='group' size-in-bits='256' is-struct='yes' visibility='default' filepath='/usr/include/grp.h' line='42' column='1' id='type-id-235'>
+ <class-decl name='group' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-227'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='gr_name' type-id='type-id-29' visibility='default' filepath='/usr/include/grp.h' line='44' column='1'/>
+ <var-decl name='gr_name' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='gr_passwd' type-id='type-id-29' visibility='default' filepath='/usr/include/grp.h' line='45' column='1'/>
+ <var-decl name='gr_passwd' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='gr_gid' type-id='type-id-233' visibility='default' filepath='/usr/include/grp.h' line='46' column='1'/>
+ <var-decl name='gr_gid' type-id='type-id-225' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='gr_mem' type-id='type-id-92' visibility='default' filepath='/usr/include/grp.h' line='47' column='1'/>
+ <var-decl name='gr_mem' type-id='type-id-88' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-235' size-in-bits='64' id='type-id-236'/>
- <function-decl name='getgrnam' filepath='/usr/include/grp.h' line='107' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-236'/>
+ <pointer-type-def type-id='type-id-227' size-in-bits='64' id='type-id-228'/>
+ <function-decl name='getgrnam' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-228'/>
+ </function-decl>
+ <typedef-decl name='zfs_prop_t' type-id='type-id-85' id='type-id-229'/>
+ <function-decl name='zfs_prop_get_int' mangled-name='zfs_prop_get_int' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_int'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-22'/>
+ </function-decl>
+ <function-decl name='zfs_prop_set' mangled-name='zfs_prop_set' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_set'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-84' name='propval'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_get_int' mangled-name='zfs_prop_get_int' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2980' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_int'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2980' column='1'/>
- <parameter type-id='type-id-3' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2980' column='1'/>
- <return type-id='type-id-32'/>
+ <function-decl name='zfs_prop_set_list' mangled-name='zfs_prop_set_list' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_set_list'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_set' mangled-name='zfs_prop_set' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1713' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_set'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1713' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1713' column='1'/>
- <parameter type-id='type-id-89' name='propval' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1713' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fnvlist_free' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_prop_set_list' mangled-name='zfs_prop_set_list' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1744' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_set_list'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1744' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1744' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fnvlist_add_uint64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='fnvlist_free' filepath='../../include/sys/nvpair.h' line='277' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zvol_volsize_to_reservation' mangled-name='zvol_volsize_to_reservation' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zvol_volsize_to_reservation'>
+ <parameter type-id='type-id-11' name='zph'/>
+ <parameter type-id='type-id-22' name='volsize'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <return type-id='type-id-22'/>
+ </function-decl>
+ <function-decl name='fnvpair_value_uint64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-35'/>
+ </function-decl>
+ <class-decl name='prop_changelist' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-230'/>
+ <pointer-type-def type-id='type-id-230' size-in-bits='64' id='type-id-231'/>
+ <function-decl name='changelist_gather' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-85'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-231'/>
</function-decl>
- <function-decl name='fnvlist_add_uint64' filepath='../../include/sys/nvpair.h' line='296' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-20'/>
+ <function-decl name='changelist_haszonedchild' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-231'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zvol_volsize_to_reservation' mangled-name='zvol_volsize_to_reservation' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5497' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zvol_volsize_to_reservation'>
- <parameter type-id='type-id-24' name='zph' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5497' column='1'/>
- <parameter type-id='type-id-32' name='volsize' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5497' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5498' column='1'/>
- <return type-id='type-id-32'/>
+ <function-decl name='changelist_prefix' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-231'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvpair_value_uint64' filepath='../../include/sys/nvpair.h' line='350' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-45'/>
+ <function-decl name='zcmd_write_src_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-122'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-2' size-in-bits='64' id='type-id-237'/>
- <function-decl name='changelist_gather' filepath='../../include/libzfs_impl.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-8'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-237'/>
- </function-decl>
- <function-decl name='changelist_haszonedchild' filepath='../../include/libzfs_impl.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-237'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='changelist_prefix' filepath='../../include/libzfs_impl.h' line='182' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-237'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_write_src_nvlist' filepath='../../include/libzfs_impl.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-130'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_setprop_error' filepath='../../include/libzfs_impl.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
+ <function-decl name='zfs_setprop_error' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-85'/>
<parameter type-id='type-id-8'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-20'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='changelist_free' filepath='../../include/libzfs_impl.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-237'/>
- <return type-id='type-id-20'/>
+ <function-decl name='changelist_free' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-231'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='changelist_postfix' filepath='../../include/libzfs_impl.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-237'/>
- <return type-id='type-id-1'/>
+ <function-decl name='changelist_postfix' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-231'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nvlist_remove_all' filepath='../../include/sys/nvpair.h' line='199' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvlist_remove_all' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_inherit' mangled-name='zfs_prop_inherit' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1926' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_inherit'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1926' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1926' column='1'/>
- <parameter type-id='type-id-6' name='received' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='1926' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_inherit' mangled-name='zfs_prop_inherit' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_inherit'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-16' name='received'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_inheritable' filepath='../../include/sys/fs/zfs.h' line='308' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_prop_inheritable' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='getprop_uint64' mangled-name='getprop_uint64' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='getprop_uint64'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-229' name='prop'/>
+ <parameter type-id='type-id-88' name='source'/>
+ <return type-id='type-id-22'/>
+ </function-decl>
+ <function-decl name='zfs_prop_default_numeric' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-35'/>
+ </function-decl>
+ <function-decl name='zfs_prop_get_recvd' mangled-name='zfs_prop_get_recvd' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_recvd'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-17' name='propbuf'/>
+ <parameter type-id='type-id-28' name='proplen'/>
+ <parameter type-id='type-id-16' name='literal'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='getprop_uint64' mangled-name='getprop_uint64' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2038' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='getprop_uint64'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2038' column='1'/>
- <parameter type-id='type-id-3' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2038' column='1'/>
- <parameter type-id='type-id-92' name='source' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2038' column='1'/>
- <return type-id='type-id-32'/>
+ <typedef-decl name='zprop_source_t' type-id='type-id-86' id='type-id-232'/>
+ <pointer-type-def type-id='type-id-232' size-in-bits='64' id='type-id-233'/>
+ <function-decl name='zfs_prop_get' mangled-name='zfs_prop_get' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-229' name='prop'/>
+ <parameter type-id='type-id-17' name='propbuf'/>
+ <parameter type-id='type-id-28' name='proplen'/>
+ <parameter type-id='type-id-233' name='src'/>
+ <parameter type-id='type-id-17' name='statbuf'/>
+ <parameter type-id='type-id-28' name='statlen'/>
+ <parameter type-id='type-id-16' name='literal'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_default_numeric' filepath='../../include/libzfs.h' line='485' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-45'/>
- </function-decl>
- <function-decl name='zfs_prop_get_recvd' mangled-name='zfs_prop_get_recvd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2349' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_recvd'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2349' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2349' column='1'/>
- <parameter type-id='type-id-29' name='propbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2349' column='1'/>
- <parameter type-id='type-id-38' name='proplen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2350' column='1'/>
- <parameter type-id='type-id-6' name='literal' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2350' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <typedef-decl name='zprop_source_t' type-id='type-id-90' filepath='../../include/sys/fs/zfs.h' line='266' column='1' id='type-id-238'/>
- <pointer-type-def type-id='type-id-238' size-in-bits='64' id='type-id-239'/>
- <function-decl name='zfs_prop_get' mangled-name='zfs_prop_get' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2605' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2605' column='1'/>
- <parameter type-id='type-id-3' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2605' column='1'/>
- <parameter type-id='type-id-29' name='propbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2605' column='1'/>
- <parameter type-id='type-id-38' name='proplen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2605' column='1'/>
- <parameter type-id='type-id-239' name='src' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2606' column='1'/>
- <parameter type-id='type-id-29' name='statbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2606' column='1'/>
- <parameter type-id='type-id-38' name='statlen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2606' column='1'/>
- <parameter type-id='type-id-6' name='literal' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2606' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/zfs_prop.h' line='40' column='1' id='type-id-240'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-234'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='PROP_TYPE_NUMBER' value='0'/>
<enumerator name='PROP_TYPE_STRING' value='1'/>
<enumerator name='PROP_TYPE_INDEX' value='2'/>
</enum-decl>
- <function-decl name='zfs_prop_get_type' filepath='../../include/zfs_prop.h' line='91' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-240'/>
+ <function-decl name='zfs_prop_get_type' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-234'/>
</function-decl>
- <function-decl name='zfs_nicenum' filepath='../../include/libzutil.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_nicenum' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <class-decl name='tm' size-in-bits='448' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='7' column='1' id='type-id-241'>
+ <class-decl name='tm' size-in-bits='448' is-struct='yes' visibility='default' id='type-id-235'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='tm_sec' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='9' column='1'/>
+ <var-decl name='tm_sec' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='tm_min' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='10' column='1'/>
+ <var-decl name='tm_min' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='tm_hour' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='11' column='1'/>
+ <var-decl name='tm_hour' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='tm_mday' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='12' column='1'/>
+ <var-decl name='tm_mday' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='tm_mon' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='13' column='1'/>
+ <var-decl name='tm_mon' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='tm_year' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='14' column='1'/>
+ <var-decl name='tm_year' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='tm_wday' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='15' column='1'/>
+ <var-decl name='tm_wday' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
- <var-decl name='tm_yday' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='16' column='1'/>
+ <var-decl name='tm_yday' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='tm_isdst' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='17' column='1'/>
+ <var-decl name='tm_isdst' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='tm_gmtoff' type-id='type-id-59' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='20' column='1'/>
+ <var-decl name='tm_gmtoff' type-id='type-id-54' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='tm_zone' type-id='type-id-89' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h' line='21' column='1'/>
+ <var-decl name='tm_zone' type-id='type-id-84' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-241' size-in-bits='64' id='type-id-242'/>
- <qualified-type-def type-id='type-id-59' const='yes' id='type-id-243'/>
- <pointer-type-def type-id='type-id-243' size-in-bits='64' id='type-id-244'/>
- <function-decl name='localtime_r' filepath='/usr/include/time.h' line='133' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-244'/>
- <parameter type-id='type-id-242'/>
- <return type-id='type-id-242'/>
+ <pointer-type-def type-id='type-id-235' size-in-bits='64' id='type-id-236'/>
+ <qualified-type-def type-id='type-id-54' const='yes' id='type-id-237'/>
+ <pointer-type-def type-id='type-id-237' size-in-bits='64' id='type-id-238'/>
+ <function-decl name='localtime_r' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-238'/>
+ <parameter type-id='type-id-236'/>
+ <return type-id='type-id-236'/>
</function-decl>
- <qualified-type-def type-id='type-id-241' const='yes' id='type-id-245'/>
- <pointer-type-def type-id='type-id-245' size-in-bits='64' id='type-id-246'/>
- <function-decl name='strftime' filepath='/usr/include/time.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-246'/>
- <return type-id='type-id-45'/>
- </function-decl>
- <function-decl name='zpool_get_prop' filepath='../../include/libzfs.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-148'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-91'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-1'/>
+ <qualified-type-def type-id='type-id-235' const='yes' id='type-id-239'/>
+ <pointer-type-def type-id='type-id-239' size-in-bits='64' id='type-id-240'/>
+ <function-decl name='strftime' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-240'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <pointer-type-def type-id='type-id-89' size-in-bits='64' id='type-id-247'/>
- <function-decl name='zfs_prop_index_to_string' filepath='../../include/sys/fs/zfs.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-247'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_get_prop' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-142'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-87'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_get_clones_nvl' mangled-name='zfs_get_clones_nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2436' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_clones_nvl'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='2436' column='1'/>
- <return type-id='type-id-28'/>
+ <pointer-type-def type-id='type-id-84' size-in-bits='64' id='type-id-241'/>
+ <function-decl name='zfs_prop_index_to_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-241'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='strsep' filepath='/usr/include/string.h' line='439' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-92'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-29'/>
+ <function-decl name='zfs_get_clones_nvl' mangled-name='zfs_get_clones_nvl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_clones_nvl'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-15'/>
</function-decl>
- <function-decl name='nvlist_add_nvlist' filepath='../../include/sys/nvpair.h' line='180' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-1'/>
+ <function-decl name='strsep' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-88'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='fnvlist_add_boolean' filepath='../../include/sys/nvpair.h' line='286' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='nvlist_add_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvlist_add_string' filepath='../../include/sys/nvpair.h' line='297' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='fnvlist_add_boolean' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='lzc_channel_program_nosync' filepath='../../include/libzfs_core.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fnvlist_lookup_nvlist' filepath='../../include/sys/nvpair.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-112'/>
+ <function-decl name='fnvlist_add_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <pointer-type-def type-id='type-id-59' size-in-bits='64' id='type-id-248'/>
- <function-decl name='nvlist_lookup_int64' filepath='../../include/sys/nvpair.h' line='211' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-248'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_channel_program_nosync' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_default_string' filepath='../../include/libzfs.h' line='484' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-89'/>
+ <function-decl name='fnvlist_lookup_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-104'/>
</function-decl>
- <function-decl name='fnvlist_lookup_string' filepath='../../include/sys/nvpair.h' line='328' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-29'/>
+ <pointer-type-def type-id='type-id-54' size-in-bits='64' id='type-id-242'/>
+ <function-decl name='nvlist_lookup_int64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-242'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-110' size-in-bits='64' id='type-id-249'/>
- <pointer-type-def type-id='type-id-19' size-in-bits='64' id='type-id-250'/>
- <function-decl name='nvlist_lookup_uint64_array' filepath='../../include/sys/nvpair.h' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-249'/>
- <parameter type-id='type-id-250'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_default_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='nvlist_empty' filepath='../../include/sys/nvpair.h' line='239' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-13'/>
+ <function-decl name='fnvlist_lookup_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <class-decl name='mntent' size-in-bits='320' is-struct='yes' visibility='default' filepath='/usr/include/mntent.h' line='51' column='1' id='type-id-251'>
+ <pointer-type-def type-id='type-id-102' size-in-bits='64' id='type-id-243'/>
+ <pointer-type-def type-id='type-id-5' size-in-bits='64' id='type-id-244'/>
+ <function-decl name='nvlist_lookup_uint64_array' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-243'/>
+ <parameter type-id='type-id-244'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='nvlist_empty' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <class-decl name='mntent' size-in-bits='320' is-struct='yes' visibility='default' id='type-id-245'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='mnt_fsname' type-id='type-id-29' visibility='default' filepath='/usr/include/mntent.h' line='53' column='1'/>
+ <var-decl name='mnt_fsname' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='mnt_dir' type-id='type-id-29' visibility='default' filepath='/usr/include/mntent.h' line='54' column='1'/>
+ <var-decl name='mnt_dir' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='mnt_type' type-id='type-id-29' visibility='default' filepath='/usr/include/mntent.h' line='55' column='1'/>
+ <var-decl name='mnt_type' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='mnt_opts' type-id='type-id-29' visibility='default' filepath='/usr/include/mntent.h' line='56' column='1'/>
+ <var-decl name='mnt_opts' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='mnt_freq' type-id='type-id-1' visibility='default' filepath='/usr/include/mntent.h' line='57' column='1'/>
+ <var-decl name='mnt_freq' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='mnt_passno' type-id='type-id-1' visibility='default' filepath='/usr/include/mntent.h' line='58' column='1'/>
+ <var-decl name='mnt_passno' type-id='type-id-8' visibility='default'/>
</data-member>
</class-decl>
- <qualified-type-def type-id='type-id-251' const='yes' id='type-id-252'/>
- <pointer-type-def type-id='type-id-252' size-in-bits='64' id='type-id-253'/>
- <function-decl name='hasmntopt' filepath='/usr/include/mntent.h' line='89' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-253'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-29'/>
- </function-decl>
- <pointer-type-def type-id='type-id-32' size-in-bits='64' id='type-id-254'/>
- <function-decl name='zfs_prop_get_numeric' mangled-name='zfs_prop_get_numeric' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3003' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_numeric'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3003' column='1'/>
- <parameter type-id='type-id-3' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3003' column='1'/>
- <parameter type-id='type-id-254' name='value' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3003' column='1'/>
- <parameter type-id='type-id-239' name='src' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3004' column='1'/>
- <parameter type-id='type-id-29' name='statbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3004' column='1'/>
- <parameter type-id='type-id-38' name='statlen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3004' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_error_fmt' filepath='../../include/libzfs_impl.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
+ <qualified-type-def type-id='type-id-245' const='yes' id='type-id-246'/>
+ <pointer-type-def type-id='type-id-246' size-in-bits='64' id='type-id-247'/>
+ <function-decl name='hasmntopt' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-247'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-17'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-22' size-in-bits='64' id='type-id-248'/>
+ <function-decl name='zfs_prop_get_numeric' mangled-name='zfs_prop_get_numeric' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_numeric'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-229' name='prop'/>
+ <parameter type-id='type-id-248' name='value'/>
+ <parameter type-id='type-id-233' name='src'/>
+ <parameter type-id='type-id-17' name='statbuf'/>
+ <parameter type-id='type-id-28' name='statlen'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_error_fmt' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_get_userquota_int' mangled-name='zfs_prop_get_userquota_int' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3207' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_userquota_int'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3207' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3207' column='1'/>
- <parameter type-id='type-id-254' name='propvalue' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3208' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_get_userquota' mangled-name='zfs_prop_get_userquota' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3217' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_userquota'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3217' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3217' column='1'/>
- <parameter type-id='type-id-29' name='propbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3218' column='1'/>
- <parameter type-id='type-id-1' name='proplen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3218' column='1'/>
- <parameter type-id='type-id-6' name='literal' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3218' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_get_written_int' mangled-name='zfs_prop_get_written_int' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_written_int'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3253' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3253' column='1'/>
- <parameter type-id='type-id-254' name='propvalue' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3254' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_get_written' mangled-name='zfs_prop_get_written' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3288' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_written'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3288' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3288' column='1'/>
- <parameter type-id='type-id-29' name='propbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3289' column='1'/>
- <parameter type-id='type-id-1' name='proplen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3289' column='1'/>
- <parameter type-id='type-id-6' name='literal' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3289' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <qualified-type-def type-id='type-id-97' const='yes' id='type-id-255'/>
- <pointer-type-def type-id='type-id-255' size-in-bits='64' id='type-id-256'/>
- <function-decl name='zfs_get_name' mangled-name='zfs_get_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3313' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_name'>
- <parameter type-id='type-id-256' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3313' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zfs_get_pool_name' mangled-name='zfs_get_pool_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3322' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_pool_name'>
- <parameter type-id='type-id-256' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3313' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zfs_get_type' mangled-name='zfs_get_type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3331' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_type'>
- <parameter type-id='type-id-256' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3331' column='1'/>
- <return type-id='type-id-26'/>
- </function-decl>
- <function-decl name='zfs_get_underlying_type' mangled-name='zfs_get_underlying_type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3341' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_underlying_type'>
- <parameter type-id='type-id-256' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3331' column='1'/>
- <return type-id='type-id-26'/>
- </function-decl>
- <function-decl name='zfs_parent_name' mangled-name='zfs_parent_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3387' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_parent_name'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3387' column='1'/>
- <parameter type-id='type-id-29' name='buf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3387' column='1'/>
- <parameter type-id='type-id-38' name='buflen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3387' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_dataset_exists' mangled-name='zfs_dataset_exists' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3482' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_dataset_exists'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3482' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3482' column='1'/>
- <parameter type-id='type-id-26' name='types' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3482' column='1'/>
- <return type-id='type-id-6'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='create_parents' mangled-name='create_parents' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3508' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='create_parents'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3508' column='1'/>
- <parameter type-id='type-id-29' name='target' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3508' column='1'/>
- <parameter type-id='type-id-1' name='prefixlen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3508' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_get_userquota_int' mangled-name='zfs_prop_get_userquota_int' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_userquota_int'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-248' name='propvalue'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_create' mangled-name='zfs_create' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3619' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_create'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3619' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3619' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3619' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3620' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_get_userquota' mangled-name='zfs_prop_get_userquota' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_userquota'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-17' name='propbuf'/>
+ <parameter type-id='type-id-8' name='proplen'/>
+ <parameter type-id='type-id-16' name='literal'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_share' filepath='../../include/libzfs.h' line='843' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_get_written_int' mangled-name='zfs_prop_get_written_int' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_written_int'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-248' name='propvalue'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_prop_get_written' mangled-name='zfs_prop_get_written' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_written'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-17' name='propbuf'/>
+ <parameter type-id='type-id-8' name='proplen'/>
+ <parameter type-id='type-id-16' name='literal'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_commit_all_shares' filepath='../../include/libzfs.h' line='865' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <qualified-type-def type-id='type-id-134' const='yes' id='type-id-249'/>
+ <pointer-type-def type-id='type-id-249' size-in-bits='64' id='type-id-250'/>
+ <function-decl name='zfs_get_name' mangled-name='zfs_get_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_name'>
+ <parameter type-id='type-id-250' name='zhp'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='dataset_nestcheck' filepath='../../include/zfs_namecheck.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_get_pool_name' mangled-name='zfs_get_pool_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_pool_name'>
+ <parameter type-id='type-id-250' name='zhp'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zpool_open' filepath='../../include/libzfs.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-134'/>
- </function-decl>
- <pointer-type-def type-id='type-id-78' size-in-bits='64' id='type-id-257'/>
- <function-decl name='zfs_crypto_create' filepath='../../include/libzfs.h' line='528' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-257'/>
- <parameter type-id='type-id-250'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <enum-decl name='lzc_dataset_type' filepath='../../include/libzfs_core.h' line='47' column='1' id='type-id-258'>
- <underlying-type type-id='type-id-7'/>
+ <function-decl name='zfs_get_type' mangled-name='zfs_get_type' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_type'>
+ <parameter type-id='type-id-250' name='zhp'/>
+ <return type-id='type-id-13'/>
+ </function-decl>
+ <function-decl name='zfs_get_underlying_type' mangled-name='zfs_get_underlying_type' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_underlying_type'>
+ <parameter type-id='type-id-250' name='zhp'/>
+ <return type-id='type-id-13'/>
+ </function-decl>
+ <function-decl name='zfs_parent_name' mangled-name='zfs_parent_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_parent_name'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-17' name='buf'/>
+ <parameter type-id='type-id-28' name='buflen'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_dataset_exists' mangled-name='zfs_dataset_exists' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_dataset_exists'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-13' name='types'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_create' mangled-name='zfs_create' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_create'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_share' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_commit_all_shares' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='dataset_nestcheck' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_open' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-126'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-73' size-in-bits='64' id='type-id-251'/>
+ <function-decl name='zfs_crypto_create' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-251'/>
+ <parameter type-id='type-id-244'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <enum-decl name='lzc_dataset_type' id='type-id-252'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='LZC_DATSET_TYPE_ZFS' value='2'/>
<enumerator name='LZC_DATSET_TYPE_ZVOL' value='3'/>
</enum-decl>
- <function-decl name='lzc_create' filepath='../../include/libzfs_core.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-258'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-78'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_create_ancestors' mangled-name='zfs_create_ancestors' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3582' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_create_ancestors'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3582' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3582' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_destroy' mangled-name='zfs_destroy' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3794' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_destroy'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3794' column='1'/>
- <parameter type-id='type-id-6' name='defer' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3794' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_destroy_bookmarks' filepath='../../include/libzfs_core.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_destroy_snaps' filepath='../../include/libzfs_core.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_standard_error_fmt' filepath='../../include/libzfs_impl.h' line='145' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
+ <function-decl name='lzc_create' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-252'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-73'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_create_ancestors' mangled-name='zfs_create_ancestors' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_create_ancestors'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_destroy' mangled-name='zfs_destroy' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_destroy'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-16' name='defer'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_destroy_bookmarks' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_destroy_snaps' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_standard_error_fmt' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_destroy' filepath='../../include/libzfs_core.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_destroy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_destroy_snaps' mangled-name='zfs_destroy_snaps' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_destroy_snaps'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3862' column='1'/>
- <parameter type-id='type-id-29' name='snapname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3862' column='1'/>
- <parameter type-id='type-id-6' name='defer' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3862' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_destroy_snaps' mangled-name='zfs_destroy_snaps' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_destroy_snaps'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-17' name='snapname'/>
+ <parameter type-id='type-id-16' name='defer'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_destroy_snaps_nvl' mangled-name='zfs_destroy_snaps_nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3886' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_destroy_snaps_nvl'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3886' column='1'/>
- <parameter type-id='type-id-28' name='snaps' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3886' column='1'/>
- <parameter type-id='type-id-6' name='defer' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3886' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_destroy_snaps_nvl' mangled-name='zfs_destroy_snaps_nvl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_destroy_snaps_nvl'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-15' name='snaps'/>
+ <parameter type-id='type-id-16' name='defer'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_exists' filepath='../../include/libzfs_core.h' line='115' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='lzc_exists' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='nvlist_add_boolean' filepath='../../include/sys/nvpair.h' line='168' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvlist_add_boolean' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvpair_value_int32' filepath='../../include/sys/nvpair.h' line='345' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fnvpair_value_int32' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_clone' mangled-name='zfs_clone' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3933' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_clone'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3933' column='1'/>
- <parameter type-id='type-id-89' name='target' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3933' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='3933' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_clone' mangled-name='zfs_clone' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_clone'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='target'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_crypto_clone_check' filepath='../../include/libzfs.h' line='530' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_crypto_clone_check' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_clone' filepath='../../include/libzfs_core.h' line='55' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_clone' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_promote' mangled-name='zfs_promote' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4019' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_promote'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4019' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_promote' mangled-name='zfs_promote' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_promote'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_promote' filepath='../../include/libzfs_core.h' line='56' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_snapshot_nvl' mangled-name='zfs_snapshot_nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4103' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_snapshot_nvl'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4103' column='1'/>
- <parameter type-id='type-id-28' name='snaps' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4103' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4103' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_snapshot' filepath='../../include/libzfs_core.h' line='52' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_snapshot' mangled-name='zfs_snapshot' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_snapshot'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4183' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4183' column='1'/>
- <parameter type-id='type-id-6' name='recursive' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4183' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4184' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_rollback' mangled-name='zfs_rollback' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_rollback'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4284' column='1'/>
- <parameter type-id='type-id-98' name='snap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4284' column='1'/>
- <parameter type-id='type-id-6' name='force' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4284' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_iter_snapshots' filepath='../../include/libzfs.h' line='618' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-103'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_promote' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_rollback_to' filepath='../../include/libzfs_core.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_snapshot_nvl' mangled-name='zfs_snapshot_nvl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_snapshot_nvl'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-15' name='snaps'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_snapshot' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_snapshot' mangled-name='zfs_snapshot' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_snapshot'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-16' name='recursive'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='renameflags' size-in-bits='32' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='651' column='1' id='type-id-259'>
+ <function-decl name='zfs_rollback' mangled-name='zfs_rollback' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_rollback'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-135' name='snap'/>
+ <parameter type-id='type-id-16' name='force'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_iter_snapshots' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-95'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_rollback_to' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <class-decl name='renameflags' size-in-bits='32' is-struct='yes' visibility='default' id='type-id-253'>
<data-member access='public' layout-offset-in-bits='31'>
- <var-decl name='recursive' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='653' column='1'/>
+ <var-decl name='recursive' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='30'>
- <var-decl name='nounmount' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='656' column='1'/>
+ <var-decl name='nounmount' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='29'>
- <var-decl name='forceunmount' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='659' column='1'/>
+ <var-decl name='forceunmount' type-id='type-id-8' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='renameflags_t' type-id='type-id-259' filepath='../../include/libzfs.h' line='660' column='1' id='type-id-260'/>
- <function-decl name='zfs_rename' mangled-name='zfs_rename' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4384' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_rename'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4384' column='1'/>
- <parameter type-id='type-id-89' name='target' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4384' column='1'/>
- <parameter type-id='type-id-260' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4384' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='changelist_rename' filepath='../../include/libzfs_impl.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-237'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <typedef-decl name='renameflags_t' type-id='type-id-253' id='type-id-254'/>
+ <function-decl name='zfs_rename' mangled-name='zfs_rename' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_rename'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='target'/>
+ <parameter type-id='type-id-254' name='flags'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_get_all_props' mangled-name='zfs_get_all_props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4586' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_all_props'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4586' column='1'/>
- <return type-id='type-id-28'/>
+ <function-decl name='changelist_rename' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-231'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_get_recvd_props' mangled-name='zfs_get_recvd_props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4592' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_recvd_props'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4592' column='1'/>
- <return type-id='type-id-28'/>
+ <function-decl name='zfs_get_all_props' mangled-name='zfs_get_all_props' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_all_props'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-15'/>
</function-decl>
- <function-decl name='zfs_get_user_props' mangled-name='zfs_get_user_props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4601' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_user_props'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4586' column='1'/>
- <return type-id='type-id-28'/>
+ <function-decl name='zfs_get_recvd_props' mangled-name='zfs_get_recvd_props' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_recvd_props'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-15'/>
+ </function-decl>
+ <function-decl name='zfs_get_user_props' mangled-name='zfs_get_user_props' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_user_props'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-15'/>
</function-decl>
- <class-decl name='zprop_list' size-in-bits='448' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='537' column='1' id='type-id-261'>
+ <class-decl name='zprop_list' size-in-bits='448' is-struct='yes' visibility='default' id='type-id-255'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='pl_prop' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='538' column='1'/>
+ <var-decl name='pl_prop' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='pl_user_prop' type-id='type-id-29' visibility='default' filepath='../../include/libzfs.h' line='539' column='1'/>
+ <var-decl name='pl_user_prop' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='pl_next' type-id='type-id-262' visibility='default' filepath='../../include/libzfs.h' line='540' column='1'/>
+ <var-decl name='pl_next' type-id='type-id-256' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='pl_all' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='541' column='1'/>
+ <var-decl name='pl_all' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='pl_width' type-id='type-id-38' visibility='default' filepath='../../include/libzfs.h' line='542' column='1'/>
+ <var-decl name='pl_width' type-id='type-id-28' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='pl_recvd_width' type-id='type-id-38' visibility='default' filepath='../../include/libzfs.h' line='543' column='1'/>
+ <var-decl name='pl_recvd_width' type-id='type-id-28' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='pl_fixed' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='544' column='1'/>
+ <var-decl name='pl_fixed' type-id='type-id-16' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-261' size-in-bits='64' id='type-id-262'/>
- <typedef-decl name='zprop_list_t' type-id='type-id-261' filepath='../../include/libzfs.h' line='545' column='1' id='type-id-263'/>
- <pointer-type-def type-id='type-id-263' size-in-bits='64' id='type-id-264'/>
- <pointer-type-def type-id='type-id-264' size-in-bits='64' id='type-id-265'/>
- <function-decl name='zfs_expand_proplist' mangled-name='zfs_expand_proplist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4620' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_expand_proplist'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4620' column='1'/>
- <parameter type-id='type-id-265' name='plp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4620' column='1'/>
- <parameter type-id='type-id-6' name='received' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4620' column='1'/>
- <parameter type-id='type-id-6' name='literal' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4621' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <pointer-type-def type-id='type-id-262' size-in-bits='64' id='type-id-266'/>
- <function-decl name='zprop_expand_list' filepath='../../include/libzfs_impl.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-266'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prune_proplist' mangled-name='zfs_prune_proplist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4717' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prune_proplist'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4717' column='1'/>
- <parameter type-id='type-id-30' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4717' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='nvlist_remove' filepath='../../include/sys/nvpair.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-140'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_smb_acl_add' mangled-name='zfs_smb_acl_add' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4799' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_add'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4799' column='1'/>
- <parameter type-id='type-id-29' name='dataset' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4799' column='1'/>
- <parameter type-id='type-id-29' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4800' column='1'/>
- <parameter type-id='type-id-29' name='resource' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4800' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='ioctl' filepath='/usr/include/x86_64-linux-gnu/sys/ioctl.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-45'/>
+ <pointer-type-def type-id='type-id-255' size-in-bits='64' id='type-id-256'/>
+ <typedef-decl name='zprop_list_t' type-id='type-id-255' id='type-id-257'/>
+ <pointer-type-def type-id='type-id-257' size-in-bits='64' id='type-id-258'/>
+ <pointer-type-def type-id='type-id-258' size-in-bits='64' id='type-id-259'/>
+ <function-decl name='zfs_expand_proplist' mangled-name='zfs_expand_proplist' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_expand_proplist'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-259' name='plp'/>
+ <parameter type-id='type-id-16' name='received'/>
+ <parameter type-id='type-id-16' name='literal'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-256' size-in-bits='64' id='type-id-260'/>
+ <function-decl name='zprop_expand_list' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-260'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_prune_proplist' mangled-name='zfs_prune_proplist' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prune_proplist'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-18' name='props'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='nvlist_remove' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-132'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_smb_acl_add' mangled-name='zfs_smb_acl_add' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_add'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-17' name='dataset'/>
+ <parameter type-id='type-id-17' name='path'/>
+ <parameter type-id='type-id-17' name='resource'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='ioctl' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-35'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_smb_acl_remove' mangled-name='zfs_smb_acl_remove' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4807' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_remove'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4799' column='1'/>
- <parameter type-id='type-id-29' name='dataset' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4799' column='1'/>
- <parameter type-id='type-id-29' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4800' column='1'/>
- <parameter type-id='type-id-29' name='resource' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4800' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_smb_acl_purge' mangled-name='zfs_smb_acl_purge' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4815' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_purge'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4815' column='1'/>
- <parameter type-id='type-id-29' name='dataset' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4815' column='1'/>
- <parameter type-id='type-id-29' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4815' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_smb_acl_rename' mangled-name='zfs_smb_acl_rename' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_rename'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4822' column='1'/>
- <parameter type-id='type-id-29' name='dataset' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4822' column='1'/>
- <parameter type-id='type-id-29' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4822' column='1'/>
- <parameter type-id='type-id-29' name='oldname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4823' column='1'/>
- <parameter type-id='type-id-29' name='newname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4823' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='192' column='1' id='type-id-267'>
- <underlying-type type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_smb_acl_remove' mangled-name='zfs_smb_acl_remove' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_remove'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-17' name='dataset'/>
+ <parameter type-id='type-id-17' name='path'/>
+ <parameter type-id='type-id-17' name='resource'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_smb_acl_purge' mangled-name='zfs_smb_acl_purge' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_purge'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-17' name='dataset'/>
+ <parameter type-id='type-id-17' name='path'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_smb_acl_rename' mangled-name='zfs_smb_acl_rename' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_smb_acl_rename'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-17' name='dataset'/>
+ <parameter type-id='type-id-17' name='path'/>
+ <parameter type-id='type-id-17' name='oldname'/>
+ <parameter type-id='type-id-17' name='newname'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-261'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZFS_PROP_USERUSED' value='0'/>
<enumerator name='ZFS_PROP_USERQUOTA' value='1'/>
<enumerator name='ZFS_PROP_GROUPUSED' value='2'/>
@@ -3499,315 +3312,315 @@
<enumerator name='ZFS_PROP_PROJECTOBJQUOTA' value='11'/>
<enumerator name='ZFS_NUM_USERQUOTA_PROPS' value='12'/>
</enum-decl>
- <typedef-decl name='zfs_userquota_prop_t' type-id='type-id-267' filepath='../../include/sys/fs/zfs.h' line='206' column='1' id='type-id-268'/>
- <typedef-decl name='uid_t' type-id='type-id-197' filepath='/usr/include/x86_64-linux-gnu/sys/types.h' line='79' column='1' id='type-id-269'/>
- <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-271'/>
- <typedef-decl name='zfs_userspace_cb_t' type-id='type-id-271' filepath='../../include/libzfs.h' line='739' column='1' id='type-id-272'/>
- <function-decl name='zfs_userspace' mangled-name='zfs_userspace' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4830' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_userspace'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4830' column='1'/>
- <parameter type-id='type-id-268' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4830' column='1'/>
- <parameter type-id='type-id-272' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4831' column='1'/>
- <parameter type-id='type-id-21' name='arg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4831' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_hold' mangled-name='zfs_hold' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4907' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_hold'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4907' column='1'/>
- <parameter type-id='type-id-89' name='snapname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4907' column='1'/>
- <parameter type-id='type-id-89' name='tag' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4907' column='1'/>
- <parameter type-id='type-id-6' name='recursive' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4908' column='1'/>
- <parameter type-id='type-id-1' name='cleanup_fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4908' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_hold_nvl' mangled-name='zfs_hold_nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4939' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_hold_nvl'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4939' column='1'/>
- <parameter type-id='type-id-1' name='cleanup_fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4939' column='1'/>
- <parameter type-id='type-id-28' name='holds' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='4939' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_hold' filepath='../../include/libzfs_core.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_release' mangled-name='zfs_release' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5038' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_release'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5038' column='1'/>
- <parameter type-id='type-id-89' name='snapname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5038' column='1'/>
- <parameter type-id='type-id-89' name='tag' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5038' column='1'/>
- <parameter type-id='type-id-6' name='recursive' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5039' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_release' filepath='../../include/libzfs_core.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_get_holds' filepath='../../include/libzfs_core.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='zfs_userquota_prop_t' type-id='type-id-261' id='type-id-262'/>
+ <typedef-decl name='uid_t' type-id='type-id-191' id='type-id-263'/>
+ <pointer-type-def type-id='type-id-264' size-in-bits='64' id='type-id-265'/>
+ <typedef-decl name='zfs_userspace_cb_t' type-id='type-id-265' id='type-id-266'/>
+ <function-decl name='zfs_userspace' mangled-name='zfs_userspace' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_userspace'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-262' name='type'/>
+ <parameter type-id='type-id-266' name='func'/>
+ <parameter type-id='type-id-7' name='arg'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvlist_add_nvlist' filepath='../../include/sys/nvpair.h' line='298' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_get_fsacl' mangled-name='zfs_get_fsacl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5119' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_fsacl'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5119' column='1'/>
- <parameter type-id='type-id-113' name='nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5119' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='nvlist_unpack' filepath='../../include/sys/nvpair.h' line='155' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-115'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_set_fsacl' mangled-name='zfs_set_fsacl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_set_fsacl'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5185' column='1'/>
- <parameter type-id='type-id-6' name='un' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5185' column='1'/>
- <parameter type-id='type-id-28' name='nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5185' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='nvlist_size' filepath='../../include/sys/nvpair.h' line='153' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='nvlist_pack' filepath='../../include/sys/nvpair.h' line='154' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-92'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_get_holds' mangled-name='zfs_get_holds' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5239' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_holds'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5239' column='1'/>
- <parameter type-id='type-id-113' name='nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5239' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_get_config' filepath='../../include/libzfs.h' line='412' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-112'/>
- </function-decl>
- <pointer-type-def type-id='type-id-115' size-in-bits='64' id='type-id-273'/>
- <function-decl name='nvlist_lookup_nvlist_array' filepath='../../include/sys/nvpair.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-273'/>
- <parameter type-id='type-id-250'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_hold' mangled-name='zfs_hold' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_hold'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='snapname'/>
+ <parameter type-id='type-id-84' name='tag'/>
+ <parameter type-id='type-id-16' name='recursive'/>
+ <parameter type-id='type-id-8' name='cleanup_fd'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_hold_nvl' mangled-name='zfs_hold_nvl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_hold_nvl'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-8' name='cleanup_fd'/>
+ <parameter type-id='type-id-15' name='holds'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_hold' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_release' mangled-name='zfs_release' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_release'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='snapname'/>
+ <parameter type-id='type-id-84' name='tag'/>
+ <parameter type-id='type-id-16' name='recursive'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_release' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_get_holds' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fnvlist_add_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zfs_get_fsacl' mangled-name='zfs_get_fsacl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_fsacl'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-105' name='nvl'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='nvlist_unpack' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-107'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_set_fsacl' mangled-name='zfs_set_fsacl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_set_fsacl'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-16' name='un'/>
+ <parameter type-id='type-id-15' name='nvl'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='nvlist_size' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='nvlist_pack' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-88'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_get_holds' mangled-name='zfs_get_holds' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_holds'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-105' name='nvl'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_get_config' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-104'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='1439' column='1' id='type-id-274'>
- <underlying-type type-id='type-id-7'/>
+ <pointer-type-def type-id='type-id-107' size-in-bits='64' id='type-id-267'/>
+ <function-decl name='nvlist_lookup_nvlist_array' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-267'/>
+ <parameter type-id='type-id-244'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-268'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZFS_WAIT_DELETEQ' value='0'/>
<enumerator name='ZFS_WAIT_NUM_ACTIVITIES' value='1'/>
</enum-decl>
- <typedef-decl name='zfs_wait_activity_t' type-id='type-id-274' filepath='../../include/sys/fs/zfs.h' line='1442' column='1' id='type-id-275'/>
- <function-decl name='zfs_wait_status' mangled-name='zfs_wait_status' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5553' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_wait_status'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5553' column='1'/>
- <parameter type-id='type-id-275' name='activity' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5553' column='1'/>
- <parameter type-id='type-id-114' name='missing' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5554' column='1'/>
- <parameter type-id='type-id-114' name='waited' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='5554' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_wait_fs' filepath='../../include/libzfs_core.h' line='136' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-274'/>
- <parameter type-id='type-id-219'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='zfs_wait_activity_t' type-id='type-id-268' id='type-id-269'/>
+ <function-decl name='zfs_wait_status' mangled-name='zfs_wait_status' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_wait_status'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-269' name='activity'/>
+ <parameter type-id='type-id-106' name='missing'/>
+ <parameter type-id='type-id-106' name='waited'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='changelist_remove' filepath='../../include/libzfs_impl.h' line='185' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-237'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='lzc_wait_fs' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-268'/>
+ <parameter type-id='type-id-213'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-270'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-269'/>
- <parameter type-id='type-id-32'/>
- <return type-id='type-id-1'/>
+ <function-decl name='changelist_remove' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-231'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-264'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-263'/>
+ <parameter type-id='type-id-22'/>
+ <return type-id='type-id-8'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_diff.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zfs_show_diffs' mangled-name='zfs_show_diffs' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_diff.c' line='716' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_show_diffs'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_diff.c' line='716' column='1'/>
- <parameter type-id='type-id-1' name='outfd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_diff.c' line='716' column='1'/>
- <parameter type-id='type-id-89' name='fromsnap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_diff.c' line='716' column='1'/>
- <parameter type-id='type-id-89' name='tosnap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_diff.c' line='717' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_diff.c' line='717' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_validate_name' filepath='../../include/libzfs_impl.h' line='203' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_show_diffs' mangled-name='zfs_show_diffs' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_show_diffs'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-8' name='outfd'/>
+ <parameter type-id='type-id-84' name='fromsnap'/>
+ <parameter type-id='type-id-84' name='tosnap'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_asprintf' filepath='../../include/libzfs_impl.h' line='140' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
+ <function-decl name='zfs_validate_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_asprintf' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-29'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='is_mounted' filepath='../../include/libzfs.h' line='824' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-92'/>
- <return type-id='type-id-13'/>
+ <function-decl name='is_mounted' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-88'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <class-decl name='differ_info' size-in-bits='9024' is-struct='yes' visibility='default' filepath='../../include/libzfs_impl.h' line='220' column='1' id='type-id-276'>
+ <class-decl name='differ_info' size-in-bits='9024' is-struct='yes' visibility='default' id='type-id-270'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zhp' type-id='type-id-98' visibility='default' filepath='../../include/libzfs_impl.h' line='221' column='1'/>
+ <var-decl name='zhp' type-id='type-id-135' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='fromsnap' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='222' column='1'/>
+ <var-decl name='fromsnap' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='frommnt' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='223' column='1'/>
+ <var-decl name='frommnt' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='tosnap' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='224' column='1'/>
+ <var-decl name='tosnap' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='tomnt' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='225' column='1'/>
+ <var-decl name='tomnt' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='ds' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='226' column='1'/>
+ <var-decl name='ds' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='dsmnt' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='227' column='1'/>
+ <var-decl name='dsmnt' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='tmpsnap' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='228' column='1'/>
+ <var-decl name='tmpsnap' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='errbuf' type-id='type-id-33' visibility='default' filepath='../../include/libzfs_impl.h' line='229' column='1'/>
+ <var-decl name='errbuf' type-id='type-id-23' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8704'>
- <var-decl name='isclone' type-id='type-id-6' visibility='default' filepath='../../include/libzfs_impl.h' line='230' column='1'/>
+ <var-decl name='isclone' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8736'>
- <var-decl name='scripted' type-id='type-id-6' visibility='default' filepath='../../include/libzfs_impl.h' line='231' column='1'/>
+ <var-decl name='scripted' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8768'>
- <var-decl name='classify' type-id='type-id-6' visibility='default' filepath='../../include/libzfs_impl.h' line='232' column='1'/>
+ <var-decl name='classify' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8800'>
- <var-decl name='timestamped' type-id='type-id-6' visibility='default' filepath='../../include/libzfs_impl.h' line='233' column='1'/>
+ <var-decl name='timestamped' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8832'>
- <var-decl name='shares' type-id='type-id-32' visibility='default' filepath='../../include/libzfs_impl.h' line='234' column='1'/>
+ <var-decl name='shares' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8896'>
- <var-decl name='zerr' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='235' column='1'/>
+ <var-decl name='zerr' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8928'>
- <var-decl name='cleanupfd' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='236' column='1'/>
+ <var-decl name='cleanupfd' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8960'>
- <var-decl name='outputfd' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='237' column='1'/>
+ <var-decl name='outputfd' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='8992'>
- <var-decl name='datafd' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='238' column='1'/>
+ <var-decl name='datafd' type-id='type-id-8' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-276' size-in-bits='64' id='type-id-277'/>
- <function-decl name='find_shares_object' filepath='../../include/libzfs_impl.h' line='256' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-277'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-270' size-in-bits='64' id='type-id-271'/>
+ <function-decl name='find_shares_object' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-271'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='pipe2' filepath='/usr/include/unistd.h' line='422' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-231'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='pipe2' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-223'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <union-decl name='pthread_attr_t' size-in-bits='448' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='56' column='1' id='type-id-278'>
+ <union-decl name='pthread_attr_t' size-in-bits='448' visibility='default' id='type-id-272'>
<data-member access='private'>
- <var-decl name='__size' type-id='type-id-279' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='58' column='1'/>
+ <var-decl name='__size' type-id='type-id-273' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='__align' type-id='type-id-59' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h' line='59' column='1'/>
+ <var-decl name='__align' type-id='type-id-54' visibility='default'/>
</data-member>
</union-decl>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='448' id='type-id-279'>
- <subrange length='56' type-id='type-id-43' id='type-id-280'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='448' id='type-id-273'>
+ <subrange length='56' type-id='type-id-33' id='type-id-274'/>
</array-type-def>
- <qualified-type-def type-id='type-id-278' const='yes' id='type-id-281'/>
- <pointer-type-def type-id='type-id-281' size-in-bits='64' id='type-id-282'/>
- <pointer-type-def type-id='type-id-283' size-in-bits='64' id='type-id-284'/>
- <function-decl name='pthread_create' filepath='/usr/include/pthread.h' line='234' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-282'/>
- <parameter type-id='type-id-284'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='pthread_join' filepath='/usr/include/pthread.h' line='251' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-111'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='pthread_cancel' filepath='/usr/include/pthread.h' line='514' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-type size-in-bits='64' id='type-id-283'>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-21'/>
+ <qualified-type-def type-id='type-id-272' const='yes' id='type-id-275'/>
+ <pointer-type-def type-id='type-id-275' size-in-bits='64' id='type-id-276'/>
+ <pointer-type-def type-id='type-id-277' size-in-bits='64' id='type-id-278'/>
+ <function-decl name='pthread_create' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-276'/>
+ <parameter type-id='type-id-278'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='pthread_join' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-103'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='pthread_cancel' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-277'>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-7'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_import.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <class-decl name='pool_config_ops' size-in-bits='128' is-struct='yes' visibility='default' filepath='../../include/libzutil.h' line='51' column='1' id='type-id-285'>
+ <class-decl name='pool_config_ops' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-279'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='pco_refresh_config' type-id='type-id-286' visibility='default' filepath='../../include/libzutil.h' line='52' column='1'/>
+ <var-decl name='pco_refresh_config' type-id='type-id-280' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='pco_pool_active' type-id='type-id-287' visibility='default' filepath='../../include/libzutil.h' line='53' column='1'/>
+ <var-decl name='pco_pool_active' type-id='type-id-281' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='refresh_config_func_t' type-id='type-id-288' filepath='../../include/libzutil.h' line='47' column='1' id='type-id-289'/>
- <pointer-type-def type-id='type-id-289' size-in-bits='64' id='type-id-286'/>
- <typedef-decl name='pool_active_func_t' type-id='type-id-290' filepath='../../include/libzutil.h' line='49' column='1' id='type-id-291'/>
- <pointer-type-def type-id='type-id-291' size-in-bits='64' id='type-id-287'/>
- <qualified-type-def type-id='type-id-285' const='yes' id='type-id-292'/>
- <typedef-decl name='pool_config_ops_t' type-id='type-id-292' filepath='../../include/libzutil.h' line='54' column='1' id='type-id-293'/>
- <var-decl name='libzfs_config_ops' type-id='type-id-293' mangled-name='libzfs_config_ops' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='122' column='1' elf-symbol-id='libzfs_config_ops'/>
- <function-decl name='zcmd_write_conf_nvlist' filepath='../../include/libzfs_impl.h' line='177' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-130'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_clear_label' mangled-name='zpool_clear_label' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='144' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_clear_label'>
- <parameter type-id='type-id-1' name='fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='144' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='pread64' filepath='/usr/include/unistd.h' line='404' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-59'/>
- <return type-id='type-id-59'/>
- </function-decl>
- <function-decl name='pwrite64' filepath='/usr/include/unistd.h' line='408' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-59'/>
- <return type-id='type-id-59'/>
- </function-decl>
- <enum-decl name='pool_state' filepath='../../include/sys/fs/zfs.h' line='914' column='1' id='type-id-295'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='refresh_config_func_t' type-id='type-id-282' id='type-id-283'/>
+ <pointer-type-def type-id='type-id-283' size-in-bits='64' id='type-id-280'/>
+ <typedef-decl name='pool_active_func_t' type-id='type-id-284' id='type-id-285'/>
+ <pointer-type-def type-id='type-id-285' size-in-bits='64' id='type-id-281'/>
+ <qualified-type-def type-id='type-id-279' const='yes' id='type-id-286'/>
+ <typedef-decl name='pool_config_ops_t' type-id='type-id-286' id='type-id-287'/>
+ <var-decl name='libzfs_config_ops' type-id='type-id-287' mangled-name='libzfs_config_ops' visibility='default' elf-symbol-id='libzfs_config_ops'/>
+ <function-decl name='zcmd_write_conf_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-122'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_clear_label' mangled-name='zpool_clear_label' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_clear_label'>
+ <parameter type-id='type-id-8' name='fd'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='pread64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-54'/>
+ <return type-id='type-id-54'/>
+ </function-decl>
+ <function-decl name='pwrite64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-54'/>
+ <return type-id='type-id-54'/>
+ </function-decl>
+ <enum-decl name='pool_state' id='type-id-289'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='POOL_STATE_ACTIVE' value='0'/>
<enumerator name='POOL_STATE_EXPORTED' value='1'/>
<enumerator name='POOL_STATE_DESTROYED' value='2'/>
@@ -3817,672 +3630,581 @@
<enumerator name='POOL_STATE_UNAVAIL' value='6'/>
<enumerator name='POOL_STATE_POTENTIALLY_ACTIVE' value='7'/>
</enum-decl>
- <typedef-decl name='pool_state_t' type-id='type-id-295' filepath='../../include/sys/fs/zfs.h' line='923' column='1' id='type-id-296'/>
- <pointer-type-def type-id='type-id-296' size-in-bits='64' id='type-id-297'/>
- <function-decl name='zpool_in_use' mangled-name='zpool_in_use' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_in_use'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='300' column='1'/>
- <parameter type-id='type-id-1' name='fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='300' column='1'/>
- <parameter type-id='type-id-297' name='state' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='300' column='1'/>
- <parameter type-id='type-id-92' name='namestr' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='300' column='1'/>
- <parameter type-id='type-id-114' name='inuse' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_import.c' line='301' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_read_label' filepath='../../include/libzutil.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-115'/>
- <parameter type-id='type-id-231'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='pool_state_t' type-id='type-id-289' id='type-id-290'/>
+ <pointer-type-def type-id='type-id-290' size-in-bits='64' id='type-id-291'/>
+ <function-decl name='zpool_in_use' mangled-name='zpool_in_use' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_in_use'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-8' name='fd'/>
+ <parameter type-id='type-id-291' name='state'/>
+ <parameter type-id='type-id-88' name='namestr'/>
+ <parameter type-id='type-id-106' name='inuse'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-298' size-in-bits='64' id='type-id-299'/>
- <function-decl name='zpool_iter' filepath='../../include/libzfs.h' line='247' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-299'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_read_label' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-107'/>
+ <parameter type-id='type-id-223'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-290'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-32'/>
- <parameter type-id='type-id-114'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-292' size-in-bits='64' id='type-id-293'/>
+ <function-decl name='zpool_iter' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-293'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-284'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-22'/>
+ <parameter type-id='type-id-106'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-298'>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-292'>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-288'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-28'/>
- <return type-id='type-id-28'/>
+ <function-type size-in-bits='64' id='type-id-282'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-15'/>
+ <return type-id='type-id-15'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_iter.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zfs_iter_filesystems' mangled-name='zfs_iter_filesystems' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='107' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_filesystems'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='107' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='107' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='107' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='make_dataset_handle_zc' filepath='../../include/libzfs_impl.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-130'/>
- <return type-id='type-id-87'/>
- </function-decl>
- <function-decl name='zfs_iter_snapshots' mangled-name='zfs_iter_snapshots' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='143' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_snapshots'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='143' column='1'/>
- <parameter type-id='type-id-6' name='simple' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='143' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='143' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='144' column='1'/>
- <parameter type-id='type-id-32' name='min_txg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='144' column='1'/>
- <parameter type-id='type-id-32' name='max_txg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='144' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='make_dataset_simple_handle_zc' filepath='../../include/libzfs_impl.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-130'/>
- <return type-id='type-id-87'/>
+ <function-decl name='zfs_iter_filesystems' mangled-name='zfs_iter_filesystems' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_filesystems'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_iter_bookmarks' mangled-name='zfs_iter_bookmarks' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='202' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_bookmarks'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='202' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='202' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='202' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='make_dataset_handle_zc' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-122'/>
+ <return type-id='type-id-82'/>
+ </function-decl>
+ <function-decl name='zfs_iter_snapshots' mangled-name='zfs_iter_snapshots' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_snapshots'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-16' name='simple'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <parameter type-id='type-id-22' name='min_txg'/>
+ <parameter type-id='type-id-22' name='max_txg'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_get_type' filepath='../../include/libzfs.h' line='470' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-105'/>
- <return type-id='type-id-81'/>
+ <function-decl name='make_dataset_simple_handle_zc' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-122'/>
+ <return type-id='type-id-82'/>
</function-decl>
- <function-decl name='fnvpair_value_nvlist' filepath='../../include/sys/nvpair.h' line='352' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-112'/>
+ <function-decl name='zfs_iter_bookmarks' mangled-name='zfs_iter_bookmarks' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_bookmarks'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='make_bookmark_handle' filepath='../../include/libzfs_impl.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-87'/>
- </function-decl>
- <function-decl name='zfs_iter_snapshots_sorted' mangled-name='zfs_iter_snapshots_sorted' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_snapshots_sorted'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='309' column='1'/>
- <parameter type-id='type-id-144' name='callback' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='309' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='309' column='1'/>
- <parameter type-id='type-id-32' name='min_txg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='310' column='1'/>
- <parameter type-id='type-id-32' name='max_txg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='310' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='avl_first' filepath='../../include/sys/avl.h' line='205' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='avl_walk' filepath='../../include/sys/avl_impl.h' line='158' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-228'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='zfs_iter_snapspec' mangled-name='zfs_iter_snapspec' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='383' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_snapspec'>
- <parameter type-id='type-id-98' name='fs_zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='383' column='1'/>
- <parameter type-id='type-id-89' name='spec_orig' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='383' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='384' column='1'/>
- <parameter type-id='type-id-21' name='arg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='384' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_dataset_exists' filepath='../../include/libzfs.h' line='816' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_get_type' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-97'/>
+ <return type-id='type-id-76'/>
+ </function-decl>
+ <function-decl name='fnvpair_value_nvlist' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-104'/>
+ </function-decl>
+ <function-decl name='make_bookmark_handle' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-82'/>
+ </function-decl>
+ <function-decl name='zfs_iter_snapshots_sorted' mangled-name='zfs_iter_snapshots_sorted' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_snapshots_sorted'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-138' name='callback'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <parameter type-id='type-id-22' name='min_txg'/>
+ <parameter type-id='type-id-22' name='max_txg'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_iter_children' mangled-name='zfs_iter_children' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='460' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_children'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='460' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='460' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='460' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='avl_first' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <return type-id='type-id-7'/>
</function-decl>
- <function-decl name='zfs_iter_dependents' mangled-name='zfs_iter_dependents' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='543' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_dependents'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='543' column='1'/>
- <parameter type-id='type-id-6' name='allowrecursion' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='543' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='544' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='544' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='avl_walk' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-220'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-7'/>
</function-decl>
- <function-decl name='zfs_get_clones_nvl' filepath='../../include/libzfs.h' line='519' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-112'/>
+ <function-decl name='zfs_iter_snapspec' mangled-name='zfs_iter_snapspec' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_snapspec'>
+ <parameter type-id='type-id-135' name='fs_zhp'/>
+ <parameter type-id='type-id-84' name='spec_orig'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='arg'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_dataset_exists' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='zfs_iter_children' mangled-name='zfs_iter_children' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_children'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_iter_mounted' mangled-name='zfs_iter_mounted' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='559' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_mounted'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='559' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='559' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_iter.c' line='559' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_iter_dependents' mangled-name='zfs_iter_dependents' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_dependents'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-16' name='allowrecursion'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_get_clones_nvl' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-104'/>
+ </function-decl>
+ <function-decl name='zfs_iter_mounted' mangled-name='zfs_iter_mounted' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_iter_mounted'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_mount.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <class-decl name='__anonymous_struct__' size-in-bits='192' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-300' visibility='default' filepath='../../include/libzfs_impl.h' line='213' column='1' id='type-id-301'>
- <data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='p_prop' type-id='type-id-3' visibility='default' filepath='../../include/libzfs_impl.h' line='214' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='p_name' type-id='type-id-29' visibility='default' filepath='../../include/libzfs_impl.h' line='215' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='p_share_err' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='216' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='p_unshare_err' type-id='type-id-1' visibility='default' filepath='../../include/libzfs_impl.h' line='217' column='1'/>
- </data-member>
- </class-decl>
- <typedef-decl name='proto_table_t' type-id='type-id-301' filepath='../../include/libzfs_impl.h' line='218' column='1' id='type-id-300'/>
-
- <array-type-def dimensions='1' type-id='type-id-300' size-in-bits='384' id='type-id-302'>
- <subrange length='2' type-id='type-id-43' id='type-id-72'/>
-
- </array-type-def>
- <var-decl name='proto_table' type-id='type-id-302' mangled-name='proto_table' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='105' column='1' elf-symbol-id='proto_table'/>
-
- <array-type-def dimensions='1' type-id='type-id-94' size-in-bits='64' alignment-in-bits='32' id='type-id-303'>
- <subrange length='2' type-id='type-id-43' id='type-id-72'/>
-
- </array-type-def>
- <var-decl name='nfs_only' type-id='type-id-303' mangled-name='nfs_only' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='110' column='1' elf-symbol-id='nfs_only'/>
- <var-decl name='smb_only' type-id='type-id-303' mangled-name='smb_only' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='115' column='1' elf-symbol-id='smb_only'/>
-
- <array-type-def dimensions='1' type-id='type-id-94' size-in-bits='96' alignment-in-bits='32' id='type-id-304'>
- <subrange length='3' type-id='type-id-43' id='type-id-108'/>
-
- </array-type-def>
- <var-decl name='share_all_proto' type-id='type-id-304' mangled-name='share_all_proto' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='119' column='1' elf-symbol-id='share_all_proto'/>
- <function-decl name='is_mounted' mangled-name='is_mounted' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='224' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='is_mounted'>
- <parameter type-id='type-id-23' name='zfs_hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='224' column='1'/>
- <parameter type-id='type-id-89' name='special' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='224' column='1'/>
- <parameter type-id='type-id-92' name='where' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='224' column='1'/>
- <return type-id='type-id-6'/>
- </function-decl>
- <function-decl name='libzfs_mnttab_find' filepath='../../include/libzfs.h' line='225' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-230'/>
- <return type-id='type-id-1'/>
+ <function-decl name='is_mounted' mangled-name='is_mounted' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='is_mounted'>
+ <parameter type-id='type-id-10' name='zfs_hdl'/>
+ <parameter type-id='type-id-84' name='special'/>
+ <parameter type-id='type-id-88' name='where'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_is_mounted' mangled-name='zfs_is_mounted' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='238' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_mounted'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='238' column='1'/>
- <parameter type-id='type-id-92' name='where' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='238' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='libzfs_mnttab_find' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-222'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_is_mountable' mangled-name='zfs_is_mountable' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='265' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_mountable'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='265' column='1'/>
- <parameter type-id='type-id-29' name='buf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='265' column='1'/>
- <parameter type-id='type-id-38' name='buflen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='265' column='1'/>
- <parameter type-id='type-id-239' name='source' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='266' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='266' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_is_mounted' mangled-name='zfs_is_mounted' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_mounted'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-88' name='where'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_mount' mangled-name='zfs_mount' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='367' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mount'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='367' column='1'/>
- <parameter type-id='type-id-89' name='options' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='367' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='367' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_mount' mangled-name='zfs_mount' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mount'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='options'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_mount_at' mangled-name='zfs_mount_at' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='382' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mount_at'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='382' column='1'/>
- <parameter type-id='type-id-89' name='options' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='382' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='382' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='383' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_mount_at' mangled-name='zfs_mount_at' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mount_at'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='options'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <parameter type-id='type-id-84' name='mountpoint'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='getprop_uint64' filepath='../../include/libzfs.h' line='511' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-8'/>
- <parameter type-id='type-id-92'/>
- <return type-id='type-id-45'/>
+ <function-decl name='getprop_uint64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-85'/>
+ <parameter type-id='type-id-88'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <pointer-type-def type-id='type-id-13' size-in-bits='64' id='type-id-305'/>
- <function-decl name='zfs_crypto_get_encryption_root' filepath='../../include/libzfs.h' line='527' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-305'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-50' size-in-bits='64' id='type-id-294'/>
+ <function-decl name='zfs_crypto_get_encryption_root' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-294'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_crypto_load_key' filepath='../../include/libzfs.h' line='533' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_crypto_load_key' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='mkdirp' filepath='../../lib/libspl/include/libgen.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
+ <function-decl name='mkdirp' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='statfs64' size-in-bits='960' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='49' column='1' id='type-id-306'>
+ <class-decl name='statfs64' size-in-bits='960' is-struct='yes' visibility='default' id='type-id-295'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='f_type' type-id='type-id-307' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='51' column='1'/>
+ <var-decl name='f_type' type-id='type-id-296' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='f_bsize' type-id='type-id-307' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='52' column='1'/>
+ <var-decl name='f_bsize' type-id='type-id-296' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='f_blocks' type-id='type-id-308' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='53' column='1'/>
+ <var-decl name='f_blocks' type-id='type-id-297' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='f_bfree' type-id='type-id-308' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='54' column='1'/>
+ <var-decl name='f_bfree' type-id='type-id-297' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='f_bavail' type-id='type-id-308' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='55' column='1'/>
+ <var-decl name='f_bavail' type-id='type-id-297' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='f_files' type-id='type-id-309' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='56' column='1'/>
+ <var-decl name='f_files' type-id='type-id-298' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='f_ffree' type-id='type-id-309' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='57' column='1'/>
+ <var-decl name='f_ffree' type-id='type-id-298' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='f_fsid' type-id='type-id-310' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='58' column='1'/>
+ <var-decl name='f_fsid' type-id='type-id-299' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='f_namelen' type-id='type-id-307' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='59' column='1'/>
+ <var-decl name='f_namelen' type-id='type-id-296' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='f_frsize' type-id='type-id-307' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='60' column='1'/>
+ <var-decl name='f_frsize' type-id='type-id-296' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='640'>
- <var-decl name='f_flags' type-id='type-id-307' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='61' column='1'/>
+ <var-decl name='f_flags' type-id='type-id-296' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='f_spare' type-id='type-id-311' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/statfs.h' line='62' column='1'/>
+ <var-decl name='f_spare' type-id='type-id-300' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__fsword_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='189' column='1' id='type-id-307'/>
- <typedef-decl name='__fsblkcnt64_t' type-id='type-id-45' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='182' column='1' id='type-id-308'/>
- <typedef-decl name='__fsfilcnt64_t' type-id='type-id-45' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='186' column='1' id='type-id-309'/>
- <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-310' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='153' column='1' id='type-id-312'>
+ <typedef-decl name='__fsword_t' type-id='type-id-54' id='type-id-296'/>
+ <typedef-decl name='__fsblkcnt64_t' type-id='type-id-35' id='type-id-297'/>
+ <typedef-decl name='__fsfilcnt64_t' type-id='type-id-35' id='type-id-298'/>
+ <class-decl name='__anonymous_struct__' size-in-bits='64' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-299' visibility='default' id='type-id-301'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='__val' type-id='type-id-313' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='153' column='1'/>
+ <var-decl name='__val' type-id='type-id-302' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='64' id='type-id-313'>
- <subrange length='2' type-id='type-id-43' id='type-id-72'/>
+ <array-type-def dimensions='1' type-id='type-id-8' size-in-bits='64' id='type-id-302'>
+ <subrange length='2' type-id='type-id-33' id='type-id-67'/>
</array-type-def>
- <typedef-decl name='__fsid_t' type-id='type-id-312' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='153' column='1' id='type-id-310'/>
+ <typedef-decl name='__fsid_t' type-id='type-id-301' id='type-id-299'/>
- <array-type-def dimensions='1' type-id='type-id-307' size-in-bits='256' id='type-id-311'>
- <subrange length='4' type-id='type-id-43' id='type-id-225'/>
+ <array-type-def dimensions='1' type-id='type-id-296' size-in-bits='256' id='type-id-300'>
+ <subrange length='4' type-id='type-id-33' id='type-id-217'/>
</array-type-def>
- <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-314'/>
- <function-decl name='statfs64' filepath='/usr/include/x86_64-linux-gnu/sys/statfs.h' line='43' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-314'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-295' size-in-bits='64' id='type-id-303'/>
+ <function-decl name='statfs64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-303'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='openat' mangled-name='openat64' filepath='/usr/include/fcntl.h' line='196' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
+ <function-decl name='openat' mangled-name='openat64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='__dirstream' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-315'/>
- <pointer-type-def type-id='type-id-315' size-in-bits='64' id='type-id-316'/>
- <function-decl name='fdopendir' filepath='/usr/include/dirent.h' line='141' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-316'/>
+ <class-decl name='__dirstream' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-304'/>
+ <pointer-type-def type-id='type-id-304' size-in-bits='64' id='type-id-305'/>
+ <function-decl name='fdopendir' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-305'/>
</function-decl>
- <class-decl name='dirent64' size-in-bits='2240' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='37' column='1' id='type-id-317'>
+ <class-decl name='dirent64' size-in-bits='2240' is-struct='yes' visibility='default' id='type-id-306'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='d_ino' type-id='type-id-318' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='39' column='1'/>
+ <var-decl name='d_ino' type-id='type-id-307' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='d_off' type-id='type-id-161' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='40' column='1'/>
+ <var-decl name='d_off' type-id='type-id-155' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='d_reclen' type-id='type-id-158' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='41' column='1'/>
+ <var-decl name='d_reclen' type-id='type-id-152' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='144'>
- <var-decl name='d_type' type-id='type-id-80' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='42' column='1'/>
+ <var-decl name='d_type' type-id='type-id-75' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='152'>
- <var-decl name='d_name' type-id='type-id-25' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='43' column='1'/>
+ <var-decl name='d_name' type-id='type-id-12' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__ino64_t' type-id='type-id-45' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='147' column='1' id='type-id-318'/>
- <pointer-type-def type-id='type-id-317' size-in-bits='64' id='type-id-319'/>
- <function-decl name='readdir64' filepath='/usr/include/dirent.h' line='173' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-316'/>
- <return type-id='type-id-319'/>
+ <typedef-decl name='__ino64_t' type-id='type-id-35' id='type-id-307'/>
+ <pointer-type-def type-id='type-id-306' size-in-bits='64' id='type-id-308'/>
+ <function-decl name='readdir64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-305'/>
+ <return type-id='type-id-308'/>
</function-decl>
- <function-decl name='closedir' filepath='/usr/include/dirent.h' line='149' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-316'/>
- <return type-id='type-id-1'/>
+ <function-decl name='closedir' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-305'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='do_mount' filepath='../../include/libzfs_impl.h' line='243' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='do_mount' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='libzfs_mnttab_remove' filepath='../../include/libzfs.h' line='229' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='libzfs_mnttab_remove' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='libzfs_mnttab_add' filepath='../../include/libzfs.h' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='libzfs_mnttab_add' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_spa_version' filepath='../../include/libzfs.h' line='818' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-231'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_spa_version' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-223'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_unmount' mangled-name='zfs_unmount' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='610' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unmount'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='610' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='610' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='610' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_unmount' mangled-name='zfs_unmount' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unmount'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='mountpoint'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_unshare_proto' mangled-name='zfs_unshare_proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='929' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshare_proto'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='929' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='929' column='1'/>
- <parameter type-id='type-id-95' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='930' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='sa_commit_shares' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='sa_commit_shares' filepath='../../lib/libspl/include/libshare.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='do_unmount' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='do_unmount' filepath='../../include/libzfs_impl.h' line='245' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_crypto_unload_key' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_share_proto' mangled-name='zfs_share_proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='760' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_share_proto'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='760' column='1'/>
- <parameter type-id='type-id-95' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='760' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='sa_is_shared' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zfs_crypto_unload_key' filepath='../../include/libzfs.h' line='534' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-1'/>
+ <function-decl name='sa_disable_share' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='sa_is_shared' filepath='../../lib/libspl/include/libshare.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-13'/>
+ <function-decl name='sa_errorstr' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='sa_disable_share' filepath='../../lib/libspl/include/libshare.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_shareall' mangled-name='zfs_shareall' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_shareall'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='sa_errorstr' filepath='../../lib/libspl/include/libshare.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-29'/>
+ <function-decl name='zfs_unmountall' mangled-name='zfs_unmountall' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unmountall'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_shareall' mangled-name='zfs_shareall' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='920' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_shareall'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='920' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_is_shared' mangled-name='zfs_is_shared' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_shared'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_unmountall' mangled-name='zfs_unmountall' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='684' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unmountall'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='684' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='684' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='sa_enable_share' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_is_shared' mangled-name='zfs_is_shared' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='701' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_shared'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='701' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_share' mangled-name='zfs_share' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_share'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/libzfs_impl.h' line='119' column='1' id='type-id-320'>
- <underlying-type type-id='type-id-7'/>
- <enumerator name='SHARED_NOT_SHARED' value='0'/>
- <enumerator name='SHARED_NFS' value='2'/>
- <enumerator name='SHARED_SMB' value='4'/>
- </enum-decl>
- <typedef-decl name='zfs_share_type_t' type-id='type-id-320' filepath='../../include/libzfs_impl.h' line='123' column='1' id='type-id-321'/>
- <function-decl name='zfs_is_shared_proto' mangled-name='zfs_is_shared_proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='822' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_shared_proto'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='822' column='1'/>
- <parameter type-id='type-id-92' name='where' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='822' column='1'/>
- <parameter type-id='type-id-94' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='822' column='1'/>
- <return type-id='type-id-321'/>
- </function-decl>
- <function-decl name='unshare_one' mangled-name='unshare_one' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='720' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='unshare_one'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='720' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='720' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='720' column='1'/>
- <parameter type-id='type-id-94' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='721' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='is_shared' mangled-name='is_shared' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='739' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='is_shared'>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='739' column='1'/>
- <parameter type-id='type-id-94' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='739' column='1'/>
- <return type-id='type-id-321'/>
- </function-decl>
- <function-decl name='sa_enable_share' filepath='../../lib/libspl/include/libshare.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_unshare' mangled-name='zfs_unshare' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshare'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_share' mangled-name='zfs_share' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='805' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_share'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='920' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='changelist_unshare' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-231'/>
+ <parameter type-id='type-id-294'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_unshare' mangled-name='zfs_unshare' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='812' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshare'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='812' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_unshareall' mangled-name='zfs_unshareall' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='changelist_unshare' filepath='../../include/libzfs_impl.h' line='188' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-237'/>
- <parameter type-id='type-id-305'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_is_shared_nfs' mangled-name='zfs_is_shared_nfs' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_shared_nfs'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-88' name='where'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_unshareall' mangled-name='zfs_unshareall' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1010' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='812' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_is_shared_smb' mangled-name='zfs_is_shared_smb' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_shared_smb'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-88' name='where'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_is_shared_nfs' mangled-name='zfs_is_shared_nfs' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='844' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_shared_nfs'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='844' column='1'/>
- <parameter type-id='type-id-92' name='where' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='844' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='sa_validate_shareopts' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_is_shared_smb' mangled-name='zfs_is_shared_smb' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='851' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_is_shared_smb'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='844' column='1'/>
- <parameter type-id='type-id-92' name='where' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='844' column='1'/>
+ <function-decl name='zfs_commit_shares' mangled-name='zfs_commit_shares' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_commit_shares'>
+ <parameter type-id='type-id-84' name='proto'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_parse_options' mangled-name='zfs_parse_options' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='864' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_parse_options'>
- <parameter type-id='type-id-29' name='options' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='864' column='1'/>
- <parameter type-id='type-id-94' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='864' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='sa_validate_shareopts' filepath='../../lib/libspl/include/libshare.h' line='84' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_commit_proto' mangled-name='zfs_commit_proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='870' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_commit_proto'>
- <parameter type-id='type-id-95' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='870' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_commit_shares' mangled-name='zfs_commit_shares' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='897' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_commit_shares'>
- <parameter type-id='type-id-89' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='897' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_share_nfs' mangled-name='zfs_share_nfs' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='908' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_share_nfs'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='920' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_share_smb' mangled-name='zfs_share_smb' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='914' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_share_smb'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='920' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_unshare_nfs' mangled-name='zfs_unshare_nfs' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshare_nfs'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='967' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='967' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_unshare_smb' mangled-name='zfs_unshare_smb' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='973' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshare_smb'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='967' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='967' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_unshareall_nfs' mangled-name='zfs_unshareall_nfs' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='998' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_nfs'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='812' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_unshareall_smb' mangled-name='zfs_unshareall_smb' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1004' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_smb'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='812' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_unshareall_bypath' mangled-name='zfs_unshareall_bypath' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1016' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_bypath'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='967' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='967' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_unshareall_bytype' mangled-name='zfs_unshareall_bytype' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1022' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_bytype'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1022' column='1'/>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1022' column='1'/>
- <parameter type-id='type-id-89' name='proto' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1023' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='remove_mountpoint' mangled-name='remove_mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1047' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='remove_mountpoint'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1047' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='rmdir' filepath='/usr/include/unistd.h' line='834' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_share_nfs' mangled-name='zfs_share_nfs' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_share_nfs'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_share_smb' mangled-name='zfs_share_smb' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_share_smb'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_unshare_nfs' mangled-name='zfs_unshare_nfs' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshare_nfs'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='mountpoint'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='get_all_cb' size-in-bits='192' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='626' column='1' id='type-id-322'>
+ <function-decl name='zfs_unshare_smb' mangled-name='zfs_unshare_smb' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshare_smb'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='mountpoint'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_unshareall_nfs' mangled-name='zfs_unshareall_nfs' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_nfs'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_unshareall_smb' mangled-name='zfs_unshareall_smb' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_smb'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_unshareall_bypath' mangled-name='zfs_unshareall_bypath' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_bypath'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='mountpoint'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_unshareall_bytype' mangled-name='zfs_unshareall_bytype' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_unshareall_bytype'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='mountpoint'/>
+ <parameter type-id='type-id-84' name='proto'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='rmdir' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <class-decl name='get_all_cb' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-309'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='cb_handles' type-id='type-id-323' visibility='default' filepath='../../include/libzfs.h' line='627' column='1'/>
+ <var-decl name='cb_handles' type-id='type-id-310' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='cb_alloc' type-id='type-id-38' visibility='default' filepath='../../include/libzfs.h' line='628' column='1'/>
+ <var-decl name='cb_alloc' type-id='type-id-28' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='cb_used' type-id='type-id-38' visibility='default' filepath='../../include/libzfs.h' line='629' column='1'/>
+ <var-decl name='cb_used' type-id='type-id-28' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-98' size-in-bits='64' id='type-id-323'/>
- <typedef-decl name='get_all_cb_t' type-id='type-id-322' filepath='../../include/libzfs.h' line='630' column='1' id='type-id-324'/>
- <pointer-type-def type-id='type-id-324' size-in-bits='64' id='type-id-325'/>
- <function-decl name='libzfs_add_handle' mangled-name='libzfs_add_handle' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1073' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_add_handle'>
- <parameter type-id='type-id-325' name='cbp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1073' column='1'/>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1073' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_realloc' filepath='../../include/libzfs_impl.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='zfs_foreach_mountpoint' mangled-name='zfs_foreach_mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1395' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_foreach_mountpoint'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1395' column='1'/>
- <parameter type-id='type-id-323' name='handles' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1395' column='1'/>
- <parameter type-id='type-id-38' name='num_handles' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1396' column='1'/>
- <parameter type-id='type-id-144' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1396' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1396' column='1'/>
- <parameter type-id='type-id-6' name='parallel' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1396' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='qsort' filepath='/usr/include/stdlib.h' line='827' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-67'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <class-decl name='tpool' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-326'/>
- <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-327'/>
- <pointer-type-def type-id='type-id-278' size-in-bits='64' id='type-id-328'/>
- <function-decl name='tpool_create' filepath='../../include/thread_pool.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-19'/>
- <parameter type-id='type-id-19'/>
- <parameter type-id='type-id-19'/>
- <parameter type-id='type-id-328'/>
- <return type-id='type-id-327'/>
- </function-decl>
- <pointer-type-def type-id='type-id-329' size-in-bits='64' id='type-id-330'/>
- <function-decl name='tpool_dispatch' filepath='../../include/thread_pool.h' line='44' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-327'/>
- <parameter type-id='type-id-330'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-135' size-in-bits='64' id='type-id-310'/>
+ <typedef-decl name='get_all_cb_t' type-id='type-id-309' id='type-id-311'/>
+ <pointer-type-def type-id='type-id-311' size-in-bits='64' id='type-id-312'/>
+ <function-decl name='libzfs_add_handle' mangled-name='libzfs_add_handle' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_add_handle'>
+ <parameter type-id='type-id-312' name='cbp'/>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='tpool_wait' filepath='../../include/thread_pool.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-327'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_realloc' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='zfs_foreach_mountpoint' mangled-name='zfs_foreach_mountpoint' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_foreach_mountpoint'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-310' name='handles'/>
+ <parameter type-id='type-id-28' name='num_handles'/>
+ <parameter type-id='type-id-138' name='func'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <parameter type-id='type-id-16' name='parallel'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='tpool_destroy' filepath='../../include/thread_pool.h' line='46' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-327'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_enable_datasets' mangled-name='zpool_enable_datasets' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1456' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_enable_datasets'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1456' column='1'/>
- <parameter type-id='type-id-89' name='mntopts' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1456' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1456' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_disable_datasets' mangled-name='zpool_unmount_datasets' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1526' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_unmount_datasets'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1526' column='1'/>
- <parameter type-id='type-id-6' name='force' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_mount.c' line='1526' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-type size-in-bits='64' id='type-id-329'>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-20'/>
+ <function-decl name='qsort' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-62'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <class-decl name='tpool' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-313'/>
+ <pointer-type-def type-id='type-id-313' size-in-bits='64' id='type-id-314'/>
+ <pointer-type-def type-id='type-id-272' size-in-bits='64' id='type-id-315'/>
+ <function-decl name='tpool_create' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-5'/>
+ <parameter type-id='type-id-5'/>
+ <parameter type-id='type-id-5'/>
+ <parameter type-id='type-id-315'/>
+ <return type-id='type-id-314'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-316' size-in-bits='64' id='type-id-317'/>
+ <function-decl name='tpool_dispatch' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-314'/>
+ <parameter type-id='type-id-317'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='tpool_wait' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-314'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='tpool_destroy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-314'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zpool_enable_datasets' mangled-name='zpool_enable_datasets' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_enable_datasets'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='mntopts'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_disable_datasets' mangled-name='zpool_disable_datasets' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_disable_datasets'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-16' name='force'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-316'>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-6'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_pool.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/libzfs.h' line='926' column='1' id='type-id-331'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-318'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZPOOL_COMPATIBILITY_OK' value='0'/>
<enumerator name='ZPOOL_COMPATIBILITY_WARNTOKEN' value='1'/>
<enumerator name='ZPOOL_COMPATIBILITY_BADTOKEN' value='2'/>
<enumerator name='ZPOOL_COMPATIBILITY_BADFILE' value='3'/>
<enumerator name='ZPOOL_COMPATIBILITY_NOFILES' value='4'/>
</enum-decl>
- <typedef-decl name='zpool_compat_status_t' type-id='type-id-331' filepath='../../include/libzfs.h' line='932' column='1' id='type-id-332'/>
- <function-decl name='zpool_load_compat' mangled-name='zpool_load_compat' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4747' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_load_compat'>
- <parameter type-id='type-id-89' name='compat' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4747' column='1'/>
- <parameter type-id='type-id-114' name='features' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4747' column='1'/>
- <parameter type-id='type-id-29' name='report' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4747' column='1'/>
- <parameter type-id='type-id-38' name='rlen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4748' column='1'/>
- <return type-id='type-id-332'/>
- </function-decl>
- <function-decl name='zpool_props_refresh' mangled-name='zpool_props_refresh' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='106' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_props_refresh'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='106' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <typedef-decl name='zpool_prop_t' type-id='type-id-148' filepath='../../include/sys/fs/zfs.h' line='251' column='1' id='type-id-333'/>
- <function-decl name='zpool_get_prop_int' mangled-name='zpool_get_prop_int' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_prop_int'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='146' column='1'/>
- <parameter type-id='type-id-333' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='146' column='1'/>
- <parameter type-id='type-id-239' name='src' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='146' column='1'/>
- <return type-id='type-id-32'/>
- </function-decl>
- <function-decl name='zpool_prop_to_name' filepath='../../include/libzfs.h' line='333' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-148'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zpool_prop_default_numeric' filepath='../../include/libzfs.h' line='568' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-148'/>
- <return type-id='type-id-45'/>
- </function-decl>
- <enum-decl name='vdev_state' filepath='../../include/sys/fs/zfs.h' line='867' column='1' id='type-id-334'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='zpool_compat_status_t' type-id='type-id-318' id='type-id-319'/>
+ <function-decl name='zpool_load_compat' mangled-name='zpool_load_compat' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_load_compat'>
+ <parameter type-id='type-id-84' name='compat'/>
+ <parameter type-id='type-id-106' name='features'/>
+ <parameter type-id='type-id-17' name='report'/>
+ <parameter type-id='type-id-28' name='rlen'/>
+ <return type-id='type-id-319'/>
+ </function-decl>
+ <function-decl name='zpool_props_refresh' mangled-name='zpool_props_refresh' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_props_refresh'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <typedef-decl name='zpool_prop_t' type-id='type-id-142' id='type-id-320'/>
+ <function-decl name='zpool_get_prop_int' mangled-name='zpool_get_prop_int' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_prop_int'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-320' name='prop'/>
+ <parameter type-id='type-id-233' name='src'/>
+ <return type-id='type-id-22'/>
+ </function-decl>
+ <function-decl name='zpool_prop_to_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-142'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zpool_prop_default_numeric' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-142'/>
+ <return type-id='type-id-35'/>
+ </function-decl>
+ <enum-decl name='vdev_state' id='type-id-321'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='VDEV_STATE_UNKNOWN' value='0'/>
<enumerator name='VDEV_STATE_CLOSED' value='1'/>
<enumerator name='VDEV_STATE_OFFLINE' value='2'/>
@@ -4492,9 +4214,9 @@
<enumerator name='VDEV_STATE_DEGRADED' value='6'/>
<enumerator name='VDEV_STATE_HEALTHY' value='7'/>
</enum-decl>
- <typedef-decl name='vdev_state_t' type-id='type-id-334' filepath='../../include/sys/fs/zfs.h' line='876' column='1' id='type-id-335'/>
- <enum-decl name='vdev_aux' filepath='../../include/sys/fs/zfs.h' line='884' column='1' id='type-id-336'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='vdev_state_t' type-id='type-id-321' id='type-id-322'/>
+ <enum-decl name='vdev_aux' id='type-id-323'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='VDEV_AUX_NONE' value='0'/>
<enumerator name='VDEV_AUX_OPEN_FAILED' value='1'/>
<enumerator name='VDEV_AUX_CORRUPT_DATA' value='2'/>
@@ -4517,22 +4239,22 @@
<enumerator name='VDEV_AUX_CHILDREN_OFFLINE' value='19'/>
<enumerator name='VDEV_AUX_ASHIFT_TOO_BIG' value='20'/>
</enum-decl>
- <typedef-decl name='vdev_aux_t' type-id='type-id-336' filepath='../../include/sys/fs/zfs.h' line='906' column='1' id='type-id-337'/>
- <function-decl name='zpool_state_to_name' mangled-name='zpool_state_to_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='188' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_state_to_name'>
- <parameter type-id='type-id-335' name='state' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='188' column='1'/>
- <parameter type-id='type-id-337' name='aux' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='188' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zpool_pool_state_to_name' mangled-name='zpool_pool_state_to_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='221' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_pool_state_to_name'>
- <parameter type-id='type-id-296' name='state' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='221' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zpool_get_state_str' mangled-name='zpool_get_state_str' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='252' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_state_str'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='252' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/libzfs.h' line='339' column='1' id='type-id-338'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='vdev_aux_t' type-id='type-id-323' id='type-id-324'/>
+ <function-decl name='zpool_state_to_name' mangled-name='zpool_state_to_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_state_to_name'>
+ <parameter type-id='type-id-322' name='state'/>
+ <parameter type-id='type-id-324' name='aux'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zpool_pool_state_to_name' mangled-name='zpool_pool_state_to_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_pool_state_to_name'>
+ <parameter type-id='type-id-290' name='state'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zpool_get_state_str' mangled-name='zpool_get_state_str' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_state_str'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-325'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZPOOL_STATUS_CORRUPT_CACHE' value='0'/>
<enumerator name='ZPOOL_STATUS_MISSING_DEV_R' value='1'/>
<enumerator name='ZPOOL_STATUS_MISSING_DEV_NR' value='2'/>
@@ -4567,82 +4289,82 @@
<enumerator name='ZPOOL_STATUS_INCOMPATIBLE_FEAT' value='31'/>
<enumerator name='ZPOOL_STATUS_OK' value='32'/>
</enum-decl>
- <enum-decl name='zpool_errata' filepath='../../include/sys/fs/zfs.h' line='1050' column='1' id='type-id-339'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='zpool_errata' id='type-id-326'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZPOOL_ERRATA_NONE' value='0'/>
<enumerator name='ZPOOL_ERRATA_ZOL_2094_SCRUB' value='1'/>
<enumerator name='ZPOOL_ERRATA_ZOL_2094_ASYNC_DESTROY' value='2'/>
<enumerator name='ZPOOL_ERRATA_ZOL_6845_ENCRYPTION' value='3'/>
<enumerator name='ZPOOL_ERRATA_ZOL_8308_ENCRYPTION' value='4'/>
</enum-decl>
- <pointer-type-def type-id='type-id-339' size-in-bits='64' id='type-id-340'/>
- <function-decl name='zpool_get_status' filepath='../../include/libzfs.h' line='404' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-92'/>
- <parameter type-id='type-id-340'/>
- <return type-id='type-id-338'/>
- </function-decl>
- <function-decl name='zpool_get_state' mangled-name='zpool_get_state' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_state'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1183' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_get_prop' mangled-name='zpool_get_prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='284' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_prop'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='284' column='1'/>
- <parameter type-id='type-id-333' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='284' column='1'/>
- <parameter type-id='type-id-29' name='buf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='284' column='1'/>
- <parameter type-id='type-id-38' name='len' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='285' column='1'/>
- <parameter type-id='type-id-239' name='srctype' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='285' column='1'/>
- <parameter type-id='type-id-6' name='literal' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='285' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_prop_get_type' filepath='../../include/zfs_prop.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-148'/>
- <return type-id='type-id-240'/>
- </function-decl>
- <function-decl name='zpool_prop_index_to_string' filepath='../../include/sys/fs/zfs.h' line='333' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-148'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-247'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-326' size-in-bits='64' id='type-id-327'/>
+ <function-decl name='zpool_get_status' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-88'/>
+ <parameter type-id='type-id-327'/>
+ <return type-id='type-id-325'/>
</function-decl>
- <function-decl name='zpool_get_name' mangled-name='zpool_get_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1173' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_name'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1173' column='1'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zpool_get_state' mangled-name='zpool_get_state' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_state'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_prop_default_string' filepath='../../include/libzfs.h' line='567' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-148'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zpool_get_prop' mangled-name='zpool_get_prop' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_prop'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-320' name='prop'/>
+ <parameter type-id='type-id-17' name='buf'/>
+ <parameter type-id='type-id-28' name='len'/>
+ <parameter type-id='type-id-233' name='srctype'/>
+ <parameter type-id='type-id-16' name='literal'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_set_prop' mangled-name='zpool_set_prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_set_prop'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='752' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='752' column='1'/>
- <parameter type-id='type-id-89' name='propval' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='752' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_prop_get_type' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-142'/>
+ <return type-id='type-id-234'/>
</function-decl>
- <function-decl name='zpool_standard_error' filepath='../../include/libzfs_impl.h' line='147' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_prop_index_to_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-142'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-241'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_name_to_prop' filepath='../../include/sys/fs/zfs.h' line='325' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-148'/>
+ <function-decl name='zpool_get_name' mangled-name='zpool_get_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_name'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zpool_prop_readonly' filepath='../../include/sys/fs/zfs.h' line='329' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-148'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zpool_prop_default_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-142'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zpool_prop_setonce' filepath='../../include/sys/fs/zfs.h' line='330' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-148'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zpool_set_prop' mangled-name='zpool_set_prop' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_set_prop'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-84' name='propval'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_prop_feature' filepath='../../include/sys/fs/zfs.h' line='331' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zpool_standard_error' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_name_to_prop' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-142'/>
+ </function-decl>
+ <function-decl name='zpool_prop_readonly' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-142'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='zpool_prop_setonce' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-142'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='zpool_prop_feature' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <enum-decl name='spa_feature' filepath='../../include/zfeature_common.h' line='42' column='1' id='type-id-341'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='spa_feature' id='type-id-328'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='SPA_FEATURE_NONE' value='-1'/>
<enumerator name='SPA_FEATURE_ASYNC_DESTROY' value='0'/>
<enumerator name='SPA_FEATURE_EMPTY_BPOBJ' value='1'/>
@@ -4680,218 +4402,205 @@
<enumerator name='SPA_FEATURE_DRAID' value='33'/>
<enumerator name='SPA_FEATURES' value='34'/>
</enum-decl>
- <pointer-type-def type-id='type-id-341' size-in-bits='64' id='type-id-342'/>
- <function-decl name='zfeature_lookup_name' filepath='../../include/zfeature_common.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-342'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-328' size-in-bits='64' id='type-id-329'/>
+ <function-decl name='zfeature_lookup_name' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-329'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_open_canfail' mangled-name='zpool_open_canfail' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1067' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_open_canfail'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1067' column='1'/>
- <parameter type-id='type-id-89' name='pool' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1067' column='1'/>
- <return type-id='type-id-24'/>
+ <function-decl name='zpool_open_canfail' mangled-name='zpool_open_canfail' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_open_canfail'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='pool'/>
+ <return type-id='type-id-11'/>
</function-decl>
- <function-decl name='zpool_close' mangled-name='zpool_close' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1161' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_close'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1161' column='1'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zpool_close' mangled-name='zpool_close' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_close'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='get_system_hostid' filepath='../../lib/libspl/include/sys/systeminfo.h' line='36' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-45'/>
+ <function-decl name='get_system_hostid' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-35'/>
</function-decl>
- <function-decl name='zpool_expand_proplist' mangled-name='zpool_expand_proplist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='808' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_expand_proplist'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='808' column='1'/>
- <parameter type-id='type-id-265' name='plp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='808' column='1'/>
- <parameter type-id='type-id-6' name='literal' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='809' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_expand_proplist' mangled-name='zpool_expand_proplist' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_expand_proplist'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-259' name='plp'/>
+ <parameter type-id='type-id-16' name='literal'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfeature_is_supported' filepath='../../include/zfeature_common.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfeature_is_supported' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zpool_prop_get_feature' mangled-name='zpool_prop_get_feature' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='906' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_get_feature'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='906' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='906' column='1'/>
- <parameter type-id='type-id-29' name='buf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='906' column='1'/>
- <parameter type-id='type-id-38' name='len' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='907' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_name_valid' mangled-name='zpool_name_valid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='968' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_name_valid'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='968' column='1'/>
- <parameter type-id='type-id-6' name='isopen' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='968' column='1'/>
- <parameter type-id='type-id-89' name='pool' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='968' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_prop_get_feature' mangled-name='zpool_prop_get_feature' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_get_feature'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-17' name='buf'/>
+ <parameter type-id='type-id-28' name='len'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='pool_namecheck' filepath='../../include/zfs_namecheck.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-219'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <function-decl name='pool_namecheck' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-213'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_refresh_stats' filepath='../../include/libzfs.h' line='414' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <parameter type-id='type-id-305'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <pointer-type-def type-id='type-id-24' size-in-bits='64' id='type-id-343'/>
- <function-decl name='zpool_open_silent' mangled-name='zpool_open_silent' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1109' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_open_silent'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1109' column='1'/>
- <parameter type-id='type-id-89' name='pool' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1109' column='1'/>
- <parameter type-id='type-id-343' name='ret' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1109' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_open' mangled-name='zpool_open' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1140' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_open'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1140' column='1'/>
- <parameter type-id='type-id-89' name='pool' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1140' column='1'/>
- <return type-id='type-id-24'/>
- </function-decl>
- <function-decl name='zpool_is_draid_spare' mangled-name='zpool_is_draid_spare' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1254' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_is_draid_spare'>
- <parameter type-id='type-id-89' name='name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1254' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_refresh_stats' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <parameter type-id='type-id-294'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_create' mangled-name='zpool_create' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1273' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_create'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1273' column='1'/>
- <parameter type-id='type-id-89' name='pool' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1273' column='1'/>
- <parameter type-id='type-id-28' name='nvroot' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1273' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1274' column='1'/>
- <parameter type-id='type-id-28' name='fsprops' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1274' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_open' mangled-name='zpool_open' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_open'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='pool'/>
+ <return type-id='type-id-11'/>
+ </function-decl>
+ <function-decl name='zpool_is_draid_spare' mangled-name='zpool_is_draid_spare' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_is_draid_spare'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zpool_create' mangled-name='zpool_create' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_create'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='pool'/>
+ <parameter type-id='type-id-15' name='nvroot'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <parameter type-id='type-id-15' name='fsprops'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nvlist_add_uint8_array' filepath='../../include/sys/nvpair.h' line='184' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-78'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvlist_add_uint8_array' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-73'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_destroy' mangled-name='zpool_destroy' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1452' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_destroy'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1452' column='1'/>
- <parameter type-id='type-id-89' name='log_str' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1452' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_destroy' mangled-name='zpool_destroy' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_destroy'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='log_str'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_checkpoint' mangled-name='zpool_checkpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1495' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_checkpoint'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1495' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_checkpoint' mangled-name='zpool_checkpoint' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_checkpoint'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_pool_checkpoint' filepath='../../include/libzfs_core.h' line='131' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_pool_checkpoint' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_discard_checkpoint' mangled-name='zpool_discard_checkpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1516' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_discard_checkpoint'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1495' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_discard_checkpoint' mangled-name='zpool_discard_checkpoint' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_discard_checkpoint'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_pool_checkpoint_discard' filepath='../../include/libzfs_core.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_add' mangled-name='zpool_add' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_add'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1538' column='1'/>
- <parameter type-id='type-id-28' name='nvroot' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1538' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_export' mangled-name='zpool_export' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1680' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_export'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1680' column='1'/>
- <parameter type-id='type-id-6' name='force' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1680' column='1'/>
- <parameter type-id='type-id-89' name='log_str' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1680' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_standard_error_fmt' filepath='../../include/libzfs_impl.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
+ <function-decl name='lzc_pool_checkpoint_discard' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_add' mangled-name='zpool_add' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_add'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-15' name='nvroot'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_export' mangled-name='zpool_export' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_export'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-16' name='force'/>
+ <parameter type-id='type-id-84' name='log_str'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_standard_error_fmt' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_export_force' mangled-name='zpool_export_force' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1686' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_export_force'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1686' column='1'/>
- <parameter type-id='type-id-89' name='log_str' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1686' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_explain_recover' mangled-name='zpool_explain_recover' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1744' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_explain_recover'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1744' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1744' column='1'/>
- <parameter type-id='type-id-1' name='reason' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1744' column='1'/>
- <parameter type-id='type-id-28' name='config' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1745' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_import' mangled-name='zpool_import' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1831' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_import'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1831' column='1'/>
- <parameter type-id='type-id-28' name='config' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1831' column='1'/>
- <parameter type-id='type-id-89' name='newname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1831' column='1'/>
- <parameter type-id='type-id-29' name='altroot' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1832' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_import_props' mangled-name='zpool_import_props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1920' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_import_props'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1920' column='1'/>
- <parameter type-id='type-id-28' name='config' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1920' column='1'/>
- <parameter type-id='type-id-89' name='newname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1920' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1921' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1921' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <class-decl name='zpool_load_policy' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/sys/fs/zfs.h' line='591' column='1' id='type-id-344'>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_export_force' mangled-name='zpool_export_force' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_export_force'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='log_str'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_explain_recover' mangled-name='zpool_explain_recover' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_explain_recover'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-8' name='reason'/>
+ <parameter type-id='type-id-15' name='config'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zpool_import' mangled-name='zpool_import' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_import'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-15' name='config'/>
+ <parameter type-id='type-id-84' name='newname'/>
+ <parameter type-id='type-id-17' name='altroot'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_import_props' mangled-name='zpool_import_props' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_import_props'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-15' name='config'/>
+ <parameter type-id='type-id-84' name='newname'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <class-decl name='zpool_load_policy' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-330'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zlp_rewind' type-id='type-id-48' visibility='default' filepath='../../include/sys/fs/zfs.h' line='592' column='1'/>
+ <var-decl name='zlp_rewind' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='zlp_maxmeta' type-id='type-id-32' visibility='default' filepath='../../include/sys/fs/zfs.h' line='593' column='1'/>
+ <var-decl name='zlp_maxmeta' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='zlp_maxdata' type-id='type-id-32' visibility='default' filepath='../../include/sys/fs/zfs.h' line='594' column='1'/>
+ <var-decl name='zlp_maxdata' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='zlp_txg' type-id='type-id-32' visibility='default' filepath='../../include/sys/fs/zfs.h' line='595' column='1'/>
+ <var-decl name='zlp_txg' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-344' size-in-bits='64' id='type-id-345'/>
- <function-decl name='zpool_get_load_policy' filepath='../../include/zfs_comutil.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-345'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_print_unsup_feat' mangled-name='zpool_print_unsup_feat' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1889' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_print_unsup_feat'>
- <parameter type-id='type-id-28' name='config' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='1889' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fnvlist_lookup_uint64' filepath='../../include/sys/nvpair.h' line='327' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-45'/>
+ <pointer-type-def type-id='type-id-330' size-in-bits='64' id='type-id-331'/>
+ <function-decl name='zpool_get_load_policy' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-331'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zpool_vdev_name' mangled-name='zpool_vdev_name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4068' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_name'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4068' column='1'/>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4068' column='1'/>
- <parameter type-id='type-id-28' name='nv' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4068' column='1'/>
- <parameter type-id='type-id-1' name='name_flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4069' column='1'/>
- <return type-id='type-id-29'/>
+ <function-decl name='zpool_print_unsup_feat' mangled-name='zpool_print_unsup_feat' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_print_unsup_feat'>
+ <parameter type-id='type-id-15' name='config'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fnvlist_lookup_uint64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-35'/>
+ </function-decl>
+ <function-decl name='zpool_vdev_name' mangled-name='zpool_vdev_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_name'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-15' name='nv'/>
+ <parameter type-id='type-id-8' name='name_flags'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <enum-decl name='pool_initialize_func' filepath='../../include/sys/fs/zfs.h' line='1167' column='1' id='type-id-346'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='pool_initialize_func' id='type-id-332'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='POOL_INITIALIZE_START' value='0'/>
<enumerator name='POOL_INITIALIZE_CANCEL' value='1'/>
<enumerator name='POOL_INITIALIZE_SUSPEND' value='2'/>
<enumerator name='POOL_INITIALIZE_FUNCS' value='3'/>
</enum-decl>
- <typedef-decl name='pool_initialize_func_t' type-id='type-id-346' filepath='../../include/sys/fs/zfs.h' line='1172' column='1' id='type-id-347'/>
- <function-decl name='zpool_initialize' mangled-name='zpool_initialize' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_initialize'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2309' column='1'/>
- <parameter type-id='type-id-347' name='cmd_type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2309' column='1'/>
- <parameter type-id='type-id-28' name='vds' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2310' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_initialize' filepath='../../include/libzfs_core.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-346'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='pool_initialize_func_t' type-id='type-id-332' id='type-id-333'/>
+ <function-decl name='zpool_initialize' mangled-name='zpool_initialize' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_initialize'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-333' name='cmd_type'/>
+ <parameter type-id='type-id-15' name='vds'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_initialize' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-332'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvpair_value_int64' filepath='../../include/sys/nvpair.h' line='346' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-59'/>
+ <function-decl name='fnvpair_value_int64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-54'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='1427' column='1' id='type-id-348'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-334'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZPOOL_WAIT_CKPT_DISCARD' value='0'/>
<enumerator name='ZPOOL_WAIT_FREE' value='1'/>
<enumerator name='ZPOOL_WAIT_INITIALIZE' value='2'/>
@@ -4902,751 +4611,751 @@
<enumerator name='ZPOOL_WAIT_TRIM' value='7'/>
<enumerator name='ZPOOL_WAIT_NUM_ACTIVITIES' value='8'/>
</enum-decl>
- <function-decl name='lzc_wait_tag' filepath='../../include/libzfs_core.h' line='135' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-348'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-305'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_wait_tag' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-334'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-294'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_initialize_wait' mangled-name='zpool_initialize_wait' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2316' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_initialize_wait'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2309' column='1'/>
- <parameter type-id='type-id-347' name='cmd_type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2309' column='1'/>
- <parameter type-id='type-id-28' name='vds' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2310' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_initialize_wait' mangled-name='zpool_initialize_wait' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_initialize_wait'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-333' name='cmd_type'/>
+ <parameter type-id='type-id-15' name='vds'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <enum-decl name='pool_trim_func' filepath='../../include/sys/fs/zfs.h' line='1177' column='1' id='type-id-349'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='pool_trim_func' id='type-id-335'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='POOL_TRIM_START' value='0'/>
<enumerator name='POOL_TRIM_CANCEL' value='1'/>
<enumerator name='POOL_TRIM_SUSPEND' value='2'/>
<enumerator name='POOL_TRIM_FUNCS' value='3'/>
</enum-decl>
- <typedef-decl name='pool_trim_func_t' type-id='type-id-349' filepath='../../include/sys/fs/zfs.h' line='1182' column='1' id='type-id-350'/>
- <class-decl name='trimflags' size-in-bits='192' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='267' column='1' id='type-id-351'>
+ <typedef-decl name='pool_trim_func_t' type-id='type-id-335' id='type-id-336'/>
+ <class-decl name='trimflags' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-337'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='fullpool' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='269' column='1'/>
+ <var-decl name='fullpool' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='secure' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='272' column='1'/>
+ <var-decl name='secure' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='wait' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='275' column='1'/>
+ <var-decl name='wait' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='rate' type-id='type-id-32' visibility='default' filepath='../../include/libzfs.h' line='278' column='1'/>
+ <var-decl name='rate' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='trimflags_t' type-id='type-id-351' filepath='../../include/libzfs.h' line='279' column='1' id='type-id-352'/>
- <pointer-type-def type-id='type-id-352' size-in-bits='64' id='type-id-353'/>
- <function-decl name='zpool_trim' mangled-name='zpool_trim' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2425' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_trim'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2425' column='1'/>
- <parameter type-id='type-id-350' name='cmd_type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2425' column='1'/>
- <parameter type-id='type-id-28' name='vds' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2425' column='1'/>
- <parameter type-id='type-id-353' name='trim_flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2426' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_trim' filepath='../../include/libzfs_core.h' line='67' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-349'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fnvlist_add_int64' filepath='../../include/sys/nvpair.h' line='295' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-59'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_find_vdev' mangled-name='zpool_find_vdev' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2807' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_find_vdev'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2807' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2807' column='1'/>
- <parameter type-id='type-id-114' name='avail_spare' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2807' column='1'/>
- <parameter type-id='type-id-114' name='l2cache' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2808' column='1'/>
- <parameter type-id='type-id-114' name='log' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2808' column='1'/>
- <return type-id='type-id-28'/>
+ <typedef-decl name='trimflags_t' type-id='type-id-337' id='type-id-338'/>
+ <pointer-type-def type-id='type-id-338' size-in-bits='64' id='type-id-339'/>
+ <function-decl name='zpool_trim' mangled-name='zpool_trim' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_trim'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-336' name='cmd_type'/>
+ <parameter type-id='type-id-15' name='vds'/>
+ <parameter type-id='type-id-339' name='trim_flags'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_trim' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-335'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <enum-decl name='pool_scan_func' filepath='../../include/sys/fs/zfs.h' line='938' column='1' id='type-id-354'>
- <underlying-type type-id='type-id-7'/>
+ <function-decl name='fnvlist_add_int64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-54'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zpool_find_vdev' mangled-name='zpool_find_vdev' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_find_vdev'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-106' name='avail_spare'/>
+ <parameter type-id='type-id-106' name='l2cache'/>
+ <parameter type-id='type-id-106' name='log'/>
+ <return type-id='type-id-15'/>
+ </function-decl>
+ <enum-decl name='pool_scan_func' id='type-id-340'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='POOL_SCAN_NONE' value='0'/>
<enumerator name='POOL_SCAN_SCRUB' value='1'/>
<enumerator name='POOL_SCAN_RESILVER' value='2'/>
<enumerator name='POOL_SCAN_FUNCS' value='3'/>
</enum-decl>
- <typedef-decl name='pool_scan_func_t' type-id='type-id-354' filepath='../../include/sys/fs/zfs.h' line='943' column='1' id='type-id-355'/>
- <enum-decl name='pool_scrub_cmd' filepath='../../include/sys/fs/zfs.h' line='948' column='1' id='type-id-356'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='pool_scan_func_t' type-id='type-id-340' id='type-id-341'/>
+ <enum-decl name='pool_scrub_cmd' id='type-id-342'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='POOL_SCRUB_NORMAL' value='0'/>
<enumerator name='POOL_SCRUB_PAUSE' value='1'/>
<enumerator name='POOL_SCRUB_FLAGS_END' value='2'/>
</enum-decl>
- <typedef-decl name='pool_scrub_cmd_t' type-id='type-id-356' filepath='../../include/sys/fs/zfs.h' line='952' column='1' id='type-id-357'/>
- <function-decl name='zpool_scan' mangled-name='zpool_scan' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2481' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_scan'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2481' column='1'/>
- <parameter type-id='type-id-355' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2481' column='1'/>
- <parameter type-id='type-id-357' name='cmd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2481' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_find_vdev_by_physpath' mangled-name='zpool_find_vdev_by_physpath' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2756' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_find_vdev_by_physpath'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2756' column='1'/>
- <parameter type-id='type-id-89' name='ppath' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2756' column='1'/>
- <parameter type-id='type-id-114' name='avail_spare' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2757' column='1'/>
- <parameter type-id='type-id-114' name='l2cache' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2757' column='1'/>
- <parameter type-id='type-id-114' name='log' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2757' column='1'/>
- <return type-id='type-id-28'/>
+ <typedef-decl name='pool_scrub_cmd_t' type-id='type-id-342' id='type-id-343'/>
+ <function-decl name='zpool_scan' mangled-name='zpool_scan' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_scan'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-341' name='func'/>
+ <parameter type-id='type-id-343' name='cmd'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_strcmp_pathname' filepath='../../include/libzutil.h' line='102' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_get_physpath' mangled-name='zpool_get_physpath' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2980' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_physpath'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2980' column='1'/>
- <parameter type-id='type-id-29' name='physpath' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2980' column='1'/>
- <parameter type-id='type-id-38' name='phypath_size' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='2980' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_path_to_guid' mangled-name='zpool_vdev_path_to_guid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3018' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_path_to_guid'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3018' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3018' column='1'/>
- <return type-id='type-id-32'/>
- </function-decl>
- <pointer-type-def type-id='type-id-335' size-in-bits='64' id='type-id-358'/>
- <function-decl name='zpool_vdev_online' mangled-name='zpool_vdev_online' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3028' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_online'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3028' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3028' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3028' column='1'/>
- <parameter type-id='type-id-358' name='newstate' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3029' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_resolve_shortname' filepath='../../include/libzutil.h' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_find_vdev_by_physpath' mangled-name='zpool_find_vdev_by_physpath' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_find_vdev_by_physpath'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='ppath'/>
+ <parameter type-id='type-id-106' name='avail_spare'/>
+ <parameter type-id='type-id-106' name='l2cache'/>
+ <parameter type-id='type-id-106' name='log'/>
+ <return type-id='type-id-15'/>
</function-decl>
- <function-decl name='zpool_relabel_disk' filepath='../../include/libzfs_impl.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_offline' mangled-name='zpool_vdev_offline' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3115' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_offline'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3115' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3115' column='1'/>
- <parameter type-id='type-id-6' name='istmp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3115' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_fault' mangled-name='zpool_vdev_fault' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3165' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_fault'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3165' column='1'/>
- <parameter type-id='type-id-32' name='guid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3165' column='1'/>
- <parameter type-id='type-id-337' name='aux' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3165' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_degrade' mangled-name='zpool_vdev_degrade' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3200' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_degrade'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3200' column='1'/>
- <parameter type-id='type-id-32' name='guid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3200' column='1'/>
- <parameter type-id='type-id-337' name='aux' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3200' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_attach' mangled-name='zpool_vdev_attach' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3254' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_attach'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3254' column='1'/>
- <parameter type-id='type-id-89' name='old_disk' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3254' column='1'/>
- <parameter type-id='type-id-89' name='new_disk' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3255' column='1'/>
- <parameter type-id='type-id-28' name='nvroot' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3255' column='1'/>
- <parameter type-id='type-id-1' name='replacing' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3255' column='1'/>
- <parameter type-id='type-id-6' name='rebuild' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3255' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfeature_lookup_guid' filepath='../../include/zfeature_common.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-342'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_strcmp_pathname' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='realpath' filepath='/usr/include/stdlib.h' line='797' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-29'/>
+ <function-decl name='zpool_get_physpath' mangled-name='zpool_get_physpath' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_physpath'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-17' name='physpath'/>
+ <parameter type-id='type-id-28' name='phypath_size'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_vdev_path_to_guid' mangled-name='zpool_vdev_path_to_guid' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_path_to_guid'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <return type-id='type-id-22'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-322' size-in-bits='64' id='type-id-344'/>
+ <function-decl name='zpool_vdev_online' mangled-name='zpool_vdev_online' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_online'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <parameter type-id='type-id-344' name='newstate'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_resolve_shortname' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_relabel_disk' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_vdev_offline' mangled-name='zpool_vdev_offline' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_offline'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-16' name='istmp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_vdev_fault' mangled-name='zpool_vdev_fault' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_fault'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-22' name='guid'/>
+ <parameter type-id='type-id-324' name='aux'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_vdev_degrade' mangled-name='zpool_vdev_degrade' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_degrade'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-22' name='guid'/>
+ <parameter type-id='type-id-324' name='aux'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_vdev_attach' mangled-name='zpool_vdev_attach' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_attach'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='old_disk'/>
+ <parameter type-id='type-id-84' name='new_disk'/>
+ <parameter type-id='type-id-15' name='nvroot'/>
+ <parameter type-id='type-id-8' name='replacing'/>
+ <parameter type-id='type-id-16' name='rebuild'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfeature_lookup_guid' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-329'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_strip_path' filepath='../../include/libzutil.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-29'/>
+ <function-decl name='realpath' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='zfs_strip_partition' filepath='../../include/libzutil.h' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-29'/>
+ <function-decl name='zfs_strip_path' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-17'/>
+ </function-decl>
+ <function-decl name='zfs_strip_partition' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-17'/>
</function-decl>
- <function-decl name='zpool_vdev_detach' mangled-name='zpool_vdev_detach' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3427' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_detach'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3427' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3427' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_vdev_detach' mangled-name='zpool_vdev_detach' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_detach'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='splitflags' size-in-bits='64' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='258' column='1' id='type-id-359'>
+ <class-decl name='splitflags' size-in-bits='64' is-struct='yes' visibility='default' id='type-id-345'>
<data-member access='public' layout-offset-in-bits='31'>
- <var-decl name='dryrun' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='260' column='1'/>
+ <var-decl name='dryrun' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='30'>
- <var-decl name='import' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='263' column='1'/>
+ <var-decl name='import' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='name_flags' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='264' column='1'/>
+ <var-decl name='name_flags' type-id='type-id-8' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='splitflags_t' type-id='type-id-359' filepath='../../include/libzfs.h' line='265' column='1' id='type-id-360'/>
- <function-decl name='zpool_vdev_split' mangled-name='zpool_vdev_split' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3524' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_split'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3524' column='1'/>
- <parameter type-id='type-id-29' name='newname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3524' column='1'/>
- <parameter type-id='type-id-113' name='newroot' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3524' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3525' column='1'/>
- <parameter type-id='type-id-360' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3525' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='nvlist_add_nvlist_array' filepath='../../include/sys/nvpair.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-115'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_remove' mangled-name='zpool_vdev_remove' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3768' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_remove'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3768' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3768' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_remove_cancel' mangled-name='zpool_vdev_remove_cancel' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3840' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_remove_cancel'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3840' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_indirect_size' mangled-name='zpool_vdev_indirect_size' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3860' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_indirect_size'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3860' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3860' column='1'/>
- <parameter type-id='type-id-254' name='sizep' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3861' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_clear' mangled-name='zpool_clear' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3893' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_clear'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3893' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3893' column='1'/>
- <parameter type-id='type-id-28' name='rewindnvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3893' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_vdev_clear' mangled-name='zpool_vdev_clear' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3969' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_clear'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3969' column='1'/>
- <parameter type-id='type-id-32' name='guid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3969' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_reguid' mangled-name='zpool_reguid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3993' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_reguid'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='3840' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_reopen_one' mangled-name='zpool_reopen_one' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4013' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_reopen_one'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4013' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4013' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_get_handle' filepath='../../include/libzfs.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-134'/>
- <return type-id='type-id-99'/>
- </function-decl>
- <function-decl name='lzc_reopen' filepath='../../include/libzfs_core.h' line='129' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='splitflags_t' type-id='type-id-345' id='type-id-346'/>
+ <function-decl name='zpool_vdev_split' mangled-name='zpool_vdev_split' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_split'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-17' name='newname'/>
+ <parameter type-id='type-id-105' name='newroot'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <parameter type-id='type-id-346' name='flags'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_sync_one' mangled-name='zpool_sync_one' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4031' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_sync_one'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4031' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4031' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvlist_add_nvlist_array' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-107'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvlist_add_boolean_value' filepath='../../include/sys/nvpair.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zpool_vdev_remove' mangled-name='zpool_vdev_remove' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_remove'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_sync' filepath='../../include/libzfs_core.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_get_errlog' mangled-name='zpool_get_errlog' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4193' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_errlog'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4193' column='1'/>
- <parameter type-id='type-id-113' name='nverrlistp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4193' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_upgrade' mangled-name='zpool_upgrade' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4292' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_upgrade'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4292' column='1'/>
- <parameter type-id='type-id-32' name='new_version' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4292' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_save_arguments' mangled-name='zfs_save_arguments' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4308' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_save_arguments'>
- <parameter type-id='type-id-1' name='argc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4308' column='1'/>
- <parameter type-id='type-id-92' name='argv' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4308' column='1'/>
- <parameter type-id='type-id-29' name='string' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4308' column='1'/>
- <parameter type-id='type-id-1' name='len' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4308' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_log_history' mangled-name='zpool_log_history' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4320' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_log_history'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4320' column='1'/>
- <parameter type-id='type-id-89' name='message' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4320' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_get_history' mangled-name='zpool_get_history' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4389' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_history'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4389' column='1'/>
- <parameter type-id='type-id-113' name='nvhisp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4389' column='1'/>
- <parameter type-id='type-id-254' name='off' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4389' column='1'/>
- <parameter type-id='type-id-114' name='eof' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4390' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_history_unpack' filepath='../../include/libzutil.h' line='144' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-273'/>
- <parameter type-id='type-id-250'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_events_next' mangled-name='zpool_events_next' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4459' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_events_next'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4459' column='1'/>
- <parameter type-id='type-id-113' name='nvp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4459' column='1'/>
- <parameter type-id='type-id-231' name='dropped' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4460' column='1'/>
- <parameter type-id='type-id-19' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4460' column='1'/>
- <parameter type-id='type-id-1' name='zevent_fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4460' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_events_clear' mangled-name='zpool_events_clear' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4519' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_events_clear'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4519' column='1'/>
- <parameter type-id='type-id-231' name='count' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4519' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_events_seek' mangled-name='zpool_events_seek' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4539' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_events_seek'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4539' column='1'/>
- <parameter type-id='type-id-32' name='eid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4539' column='1'/>
- <parameter type-id='type-id-1' name='zevent_fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4539' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_obj_to_path' mangled-name='zpool_obj_to_path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4621' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_obj_to_path'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4621' column='1'/>
- <parameter type-id='type-id-32' name='dsobj' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4621' column='1'/>
- <parameter type-id='type-id-32' name='obj' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4621' column='1'/>
- <parameter type-id='type-id-29' name='pathname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4622' column='1'/>
- <parameter type-id='type-id-38' name='len' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4622' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_obj_to_path_ds' mangled-name='zpool_obj_to_path_ds' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4628' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_obj_to_path_ds'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4621' column='1'/>
- <parameter type-id='type-id-32' name='dsobj' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4621' column='1'/>
- <parameter type-id='type-id-32' name='obj' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4621' column='1'/>
- <parameter type-id='type-id-29' name='pathname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4622' column='1'/>
- <parameter type-id='type-id-38' name='len' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4622' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <typedef-decl name='zpool_wait_activity_t' type-id='type-id-348' filepath='../../include/sys/fs/zfs.h' line='1437' column='1' id='type-id-361'/>
- <function-decl name='zpool_wait' mangled-name='zpool_wait' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4637' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_wait'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4637' column='1'/>
- <parameter type-id='type-id-361' name='activity' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4637' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='lzc_wait' filepath='../../include/libzfs_core.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-348'/>
- <parameter type-id='type-id-305'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_wait_status' mangled-name='zpool_wait_status' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4664' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_wait_status'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4664' column='1'/>
- <parameter type-id='type-id-361' name='activity' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4664' column='1'/>
- <parameter type-id='type-id-114' name='missing' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4665' column='1'/>
- <parameter type-id='type-id-114' name='waited' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4665' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <qualified-type-def type-id='type-id-52' const='yes' id='type-id-362'/>
- <pointer-type-def type-id='type-id-362' size-in-bits='64' id='type-id-363'/>
- <function-decl name='zpool_set_bootenv' mangled-name='zpool_set_bootenv' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4682' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_set_bootenv'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4682' column='1'/>
- <parameter type-id='type-id-363' name='envmap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4682' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <qualified-type-def type-id='type-id-46' const='yes' id='type-id-364'/>
- <pointer-type-def type-id='type-id-364' size-in-bits='64' id='type-id-365'/>
- <function-decl name='lzc_set_bootenv' filepath='../../include/libzfs_core.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-365'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_vdev_remove_cancel' mangled-name='zpool_vdev_remove_cancel' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_remove_cancel'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_get_bootenv' mangled-name='zpool_get_bootenv' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4695' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_bootenv'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4695' column='1'/>
- <parameter type-id='type-id-113' name='nvlp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_pool.c' line='4695' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_vdev_indirect_size' mangled-name='zpool_vdev_indirect_size' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_indirect_size'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-248' name='sizep'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_get_bootenv' filepath='../../include/libzfs_core.h' line='139' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_clear' mangled-name='zpool_clear' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_clear'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-15' name='rewindnvl'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='strtok_r' filepath='/usr/include/string.h' line='345' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-92'/>
- <return type-id='type-id-29'/>
- </function-decl>
- <function-decl name='mmap' mangled-name='mmap64' filepath='/usr/include/x86_64-linux-gnu/sys/mman.h' line='61' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-59'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='strchrnul' filepath='/usr/include/string.h' line='265' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-29'/>
+ <function-decl name='zpool_vdev_clear' mangled-name='zpool_vdev_clear' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_vdev_clear'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-22' name='guid'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='munmap' filepath='/usr/include/x86_64-linux-gnu/sys/mman.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_reguid' mangled-name='zpool_reguid' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_reguid'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_name_valid' filepath='../../include/libzfs.h' line='812' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_reopen_one' mangled-name='zpool_reopen_one' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_reopen_one'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_get_handle' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-126'/>
+ <return type-id='type-id-91'/>
+ </function-decl>
+ <function-decl name='lzc_reopen' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_sync_one' mangled-name='zpool_sync_one' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_sync_one'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fnvlist_add_boolean_value' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='lzc_sync' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_get_errlog' mangled-name='zpool_get_errlog' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_errlog'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-105' name='nverrlistp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_upgrade' mangled-name='zpool_upgrade' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_upgrade'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-22' name='new_version'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_save_arguments' mangled-name='zfs_save_arguments' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_save_arguments'>
+ <parameter type-id='type-id-8' name='argc'/>
+ <parameter type-id='type-id-88' name='argv'/>
+ <parameter type-id='type-id-17' name='string'/>
+ <parameter type-id='type-id-8' name='len'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zpool_log_history' mangled-name='zpool_log_history' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_log_history'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='message'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_get_history' mangled-name='zpool_get_history' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_history'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-105' name='nvhisp'/>
+ <parameter type-id='type-id-248' name='off'/>
+ <parameter type-id='type-id-106' name='eof'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_history_unpack' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-267'/>
+ <parameter type-id='type-id-244'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_events_next' mangled-name='zpool_events_next' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_events_next'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-105' name='nvp'/>
+ <parameter type-id='type-id-223' name='dropped'/>
+ <parameter type-id='type-id-5' name='flags'/>
+ <parameter type-id='type-id-8' name='zevent_fd'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_events_clear' mangled-name='zpool_events_clear' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_events_clear'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-223' name='count'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_events_seek' mangled-name='zpool_events_seek' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_events_seek'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-22' name='eid'/>
+ <parameter type-id='type-id-8' name='zevent_fd'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_obj_to_path' mangled-name='zpool_obj_to_path' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_obj_to_path'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-22' name='dsobj'/>
+ <parameter type-id='type-id-22' name='obj'/>
+ <parameter type-id='type-id-17' name='pathname'/>
+ <parameter type-id='type-id-28' name='len'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zpool_obj_to_path_ds' mangled-name='zpool_obj_to_path_ds' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_obj_to_path_ds'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-22' name='dsobj'/>
+ <parameter type-id='type-id-22' name='obj'/>
+ <parameter type-id='type-id-17' name='pathname'/>
+ <parameter type-id='type-id-28' name='len'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <typedef-decl name='zpool_wait_activity_t' type-id='type-id-334' id='type-id-347'/>
+ <function-decl name='zpool_wait' mangled-name='zpool_wait' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_wait'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-347' name='activity'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_wait' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-334'/>
+ <parameter type-id='type-id-294'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_wait_status' mangled-name='zpool_wait_status' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_wait_status'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-347' name='activity'/>
+ <parameter type-id='type-id-106' name='missing'/>
+ <parameter type-id='type-id-106' name='waited'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-42' const='yes' id='type-id-348'/>
+ <pointer-type-def type-id='type-id-348' size-in-bits='64' id='type-id-349'/>
+ <function-decl name='zpool_set_bootenv' mangled-name='zpool_set_bootenv' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_set_bootenv'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-349' name='envmap'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-36' const='yes' id='type-id-350'/>
+ <pointer-type-def type-id='type-id-350' size-in-bits='64' id='type-id-351'/>
+ <function-decl name='lzc_set_bootenv' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-351'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_get_bootenv' mangled-name='zpool_get_bootenv' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_bootenv'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-105' name='nvlp'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_get_bootenv' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='strtok_r' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-88'/>
+ <return type-id='type-id-17'/>
+ </function-decl>
+ <function-decl name='mmap' mangled-name='mmap64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-54'/>
+ <return type-id='type-id-7'/>
+ </function-decl>
+ <function-decl name='strchrnul' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-17'/>
+ </function-decl>
+ <function-decl name='munmap' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_name_valid' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-8'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_sendrecv.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <class-decl name='sendflags' size-in-bits='544' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='664' column='1' id='type-id-366'>
+ <class-decl name='sendflags' size-in-bits='544' is-struct='yes' visibility='default' id='type-id-352'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='verbosity' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='666' column='1'/>
+ <var-decl name='verbosity' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='replicate' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='669' column='1'/>
+ <var-decl name='replicate' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='skipmissing' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='672' column='1'/>
+ <var-decl name='skipmissing' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='doall' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='675' column='1'/>
+ <var-decl name='doall' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='fromorigin' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='678' column='1'/>
+ <var-decl name='fromorigin' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='pad' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='681' column='1'/>
+ <var-decl name='pad' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='props' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='684' column='1'/>
+ <var-decl name='props' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
- <var-decl name='dryrun' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='687' column='1'/>
+ <var-decl name='dryrun' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='parsable' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='690' column='1'/>
+ <var-decl name='parsable' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='progress' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='693' column='1'/>
+ <var-decl name='progress' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='largeblock' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='696' column='1'/>
+ <var-decl name='largeblock' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='352'>
- <var-decl name='embed_data' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='699' column='1'/>
+ <var-decl name='embed_data' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='compress' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='702' column='1'/>
+ <var-decl name='compress' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='416'>
- <var-decl name='raw' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='705' column='1'/>
+ <var-decl name='raw' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='backup' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='708' column='1'/>
+ <var-decl name='backup' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='480'>
- <var-decl name='holds' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='711' column='1'/>
+ <var-decl name='holds' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='saved' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='714' column='1'/>
+ <var-decl name='saved' type-id='type-id-16' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='sendflags_t' type-id='type-id-366' filepath='../../include/libzfs.h' line='715' column='1' id='type-id-367'/>
- <pointer-type-def type-id='type-id-367' size-in-bits='64' id='type-id-368'/>
- <typedef-decl name='snapfilter_cb_t' type-id='type-id-369' filepath='../../include/libzfs.h' line='717' column='1' id='type-id-370'/>
- <pointer-type-def type-id='type-id-370' size-in-bits='64' id='type-id-371'/>
- <function-decl name='zfs_send' mangled-name='zfs_send' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2120' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2120' column='1'/>
- <parameter type-id='type-id-89' name='fromsnap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2120' column='1'/>
- <parameter type-id='type-id-89' name='tosnap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2120' column='1'/>
- <parameter type-id='type-id-368' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2121' column='1'/>
- <parameter type-id='type-id-1' name='outfd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2121' column='1'/>
- <parameter type-id='type-id-371' name='filter_func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2121' column='1'/>
- <parameter type-id='type-id-21' name='cb_arg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2122' column='1'/>
- <parameter type-id='type-id-113' name='debugnvp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2122' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_send_progress' mangled-name='zfs_send_progress' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='883' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_progress'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='883' column='1'/>
- <parameter type-id='type-id-1' name='fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='883' column='1'/>
- <parameter type-id='type-id-254' name='bytes_written' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='883' column='1'/>
- <parameter type-id='type-id-254' name='blocks_visited' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='884' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_send_resume_token_to_nvlist' mangled-name='zfs_send_resume_token_to_nvlist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1369' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_resume_token_to_nvlist'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1369' column='1'/>
- <parameter type-id='type-id-89' name='token' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1369' column='1'/>
- <return type-id='type-id-28'/>
+ <typedef-decl name='sendflags_t' type-id='type-id-352' id='type-id-353'/>
+ <pointer-type-def type-id='type-id-353' size-in-bits='64' id='type-id-354'/>
+ <typedef-decl name='snapfilter_cb_t' type-id='type-id-355' id='type-id-356'/>
+ <pointer-type-def type-id='type-id-356' size-in-bits='64' id='type-id-357'/>
+ <function-decl name='zfs_send' mangled-name='zfs_send' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='fromsnap'/>
+ <parameter type-id='type-id-84' name='tosnap'/>
+ <parameter type-id='type-id-354' name='flags'/>
+ <parameter type-id='type-id-8' name='outfd'/>
+ <parameter type-id='type-id-357' name='filter_func'/>
+ <parameter type-id='type-id-7' name='cb_arg'/>
+ <parameter type-id='type-id-105' name='debugnvp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='zio_cksum' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/sys/spa_checksum.h' line='38' column='1' id='type-id-372'>
+ <function-decl name='zfs_send_progress' mangled-name='zfs_send_progress' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_progress'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-8' name='fd'/>
+ <parameter type-id='type-id-248' name='bytes_written'/>
+ <parameter type-id='type-id-248' name='blocks_visited'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_send_resume_token_to_nvlist' mangled-name='zfs_send_resume_token_to_nvlist' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_resume_token_to_nvlist'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='token'/>
+ <return type-id='type-id-15'/>
+ </function-decl>
+ <class-decl name='zio_cksum' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-358'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='zc_word' type-id='type-id-373' visibility='default' filepath='../../include/sys/spa_checksum.h' line='39' column='1'/>
+ <var-decl name='zc_word' type-id='type-id-359' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='256' id='type-id-373'>
- <subrange length='4' type-id='type-id-43' id='type-id-225'/>
+ <array-type-def dimensions='1' type-id='type-id-22' size-in-bits='256' id='type-id-359'>
+ <subrange length='4' type-id='type-id-33' id='type-id-217'/>
</array-type-def>
- <pointer-type-def type-id='type-id-372' size-in-bits='64' id='type-id-374'/>
- <function-decl name='fletcher_4_native_varsize' filepath='../../include/zfs_fletcher.h' line='57' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-374'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='uncompress' filepath='/usr/include/zlib.h' line='1265' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-78'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-171'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_send_resume' mangled-name='zfs_send_resume' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_resume'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1842' column='1'/>
- <parameter type-id='type-id-368' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1842' column='1'/>
- <parameter type-id='type-id-1' name='outfd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1842' column='1'/>
- <parameter type-id='type-id-89' name='resume_token' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1843' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='nvlist_print' filepath='../../include/libnvpair.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-156'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <enum-decl name='lzc_send_flags' filepath='../../include/libzfs_core.h' line='77' column='1' id='type-id-375'>
- <underlying-type type-id='type-id-7'/>
+ <pointer-type-def type-id='type-id-358' size-in-bits='64' id='type-id-360'/>
+ <function-decl name='fletcher_4_native_varsize' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-360'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='uncompress' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-73'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-165'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_send_resume' mangled-name='zfs_send_resume' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_resume'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-354' name='flags'/>
+ <parameter type-id='type-id-8' name='outfd'/>
+ <parameter type-id='type-id-84' name='resume_token'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='nvlist_print' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-150'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <enum-decl name='lzc_send_flags' id='type-id-361'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='LZC_SEND_FLAG_EMBED_DATA' value='1'/>
<enumerator name='LZC_SEND_FLAG_LARGE_BLOCK' value='2'/>
<enumerator name='LZC_SEND_FLAG_COMPRESS' value='4'/>
<enumerator name='LZC_SEND_FLAG_RAW' value='8'/>
<enumerator name='LZC_SEND_FLAG_SAVED' value='16'/>
</enum-decl>
- <function-decl name='lzc_send_resume_redacted' filepath='../../include/libzfs_core.h' line='94' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-375'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_send_resume_redacted' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-361'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_send_saved' mangled-name='zfs_send_saved' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1868' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_saved'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1868' column='1'/>
- <parameter type-id='type-id-368' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1868' column='1'/>
- <parameter type-id='type-id-1' name='outfd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1868' column='1'/>
- <parameter type-id='type-id-89' name='resume_token' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='1869' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_send_saved' mangled-name='zfs_send_saved' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_saved'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-354' name='flags'/>
+ <parameter type-id='type-id-8' name='outfd'/>
+ <parameter type-id='type-id-84' name='resume_token'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_get_pool_handle' filepath='../../include/libzfs.h' line='473' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-105'/>
- <return type-id='type-id-134'/>
+ <function-decl name='zfs_get_pool_handle' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-97'/>
+ <return type-id='type-id-126'/>
</function-decl>
- <function-decl name='zfs_hold_nvl' filepath='../../include/libzfs.h' line='733' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fletcher_4_incremental_native' filepath='../../include/zfs_fletcher.h' line='59' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='write' filepath='/usr/include/unistd.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-59'/>
- </function-decl>
- <function-decl name='fnvlist_size' filepath='../../include/sys/nvpair.h' line='278' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-45'/>
- </function-decl>
- <function-decl name='nvlist_lookup_boolean' filepath='../../include/sys/nvpair.h' line='202' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_hold_nvl' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_send_one' mangled-name='zfs_send_one' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2395' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_one'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2395' column='1'/>
- <parameter type-id='type-id-89' name='from' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2395' column='1'/>
- <parameter type-id='type-id-1' name='fd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2395' column='1'/>
- <parameter type-id='type-id-368' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2395' column='1'/>
- <parameter type-id='type-id-89' name='redactbook' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='2396' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fletcher_4_incremental_native' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='lzc_send_redacted' filepath='../../include/libzfs_core.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-375'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='write' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-54'/>
</function-decl>
- <function-decl name='lzc_send_space_resume_redacted' filepath='../../include/libzfs_core.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-375'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-110'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fnvlist_size' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <function-decl name='sleep' filepath='/usr/include/unistd.h' line='444' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-19'/>
+ <function-decl name='nvlist_lookup_boolean' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='time' filepath='/usr/include/time.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-248'/>
- <return type-id='type-id-59'/>
+ <function-decl name='zfs_send_one' mangled-name='zfs_send_one' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_send_one'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='from'/>
+ <parameter type-id='type-id-8' name='fd'/>
+ <parameter type-id='type-id-354' name='flags'/>
+ <parameter type-id='type-id-84' name='redactbook'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='localtime' filepath='/usr/include/time.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-244'/>
- <return type-id='type-id-242'/>
+ <function-decl name='lzc_send_redacted' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-361'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='lzc_send_space_resume_redacted' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-361'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-102'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='sleep' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-5'/>
+ </function-decl>
+ <function-decl name='time' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-242'/>
+ <return type-id='type-id-54'/>
</function-decl>
- <class-decl name='recvflags' size-in-bits='416' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='748' column='1' id='type-id-376'>
+ <function-decl name='localtime' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-238'/>
+ <return type-id='type-id-236'/>
+ </function-decl>
+ <class-decl name='recvflags' size-in-bits='416' is-struct='yes' visibility='default' id='type-id-362'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='verbose' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='750' column='1'/>
+ <var-decl name='verbose' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='isprefix' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='753' column='1'/>
+ <var-decl name='isprefix' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='istail' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='759' column='1'/>
+ <var-decl name='istail' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='dryrun' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='762' column='1'/>
+ <var-decl name='dryrun' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='force' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='765' column='1'/>
+ <var-decl name='force' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='canmountoff' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='768' column='1'/>
+ <var-decl name='canmountoff' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='resumable' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='774' column='1'/>
+ <var-decl name='resumable' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
- <var-decl name='byteswap' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='777' column='1'/>
+ <var-decl name='byteswap' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='nomount' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='780' column='1'/>
+ <var-decl name='nomount' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='holds' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='783' column='1'/>
+ <var-decl name='holds' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='skipholds' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='786' column='1'/>
+ <var-decl name='skipholds' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='352'>
- <var-decl name='domount' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='789' column='1'/>
+ <var-decl name='domount' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='forceunmount' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='792' column='1'/>
+ <var-decl name='forceunmount' type-id='type-id-16' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='recvflags_t' type-id='type-id-376' filepath='../../include/libzfs.h' line='793' column='1' id='type-id-377'/>
- <pointer-type-def type-id='type-id-377' size-in-bits='64' id='type-id-378'/>
- <pointer-type-def type-id='type-id-35' size-in-bits='64' id='type-id-379'/>
- <function-decl name='zfs_receive' mangled-name='zfs_receive' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='5128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_receive'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='5128' column='1'/>
- <parameter type-id='type-id-89' name='tosnap' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='5128' column='1'/>
- <parameter type-id='type-id-28' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='5128' column='1'/>
- <parameter type-id='type-id-378' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='5129' column='1'/>
- <parameter type-id='type-id-1' name='infd' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='5129' column='1'/>
- <parameter type-id='type-id-379' name='stream_avl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_sendrecv.c' line='5129' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='libzfs_set_pipe_max' filepath='../../include/libzfs_impl.h' line='257' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='perror' filepath='/usr/include/stdio.h' line='781' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <typedef-decl name='recvflags_t' type-id='type-id-362' id='type-id-363'/>
+ <pointer-type-def type-id='type-id-363' size-in-bits='64' id='type-id-364'/>
+ <pointer-type-def type-id='type-id-25' size-in-bits='64' id='type-id-365'/>
+ <function-decl name='zfs_receive' mangled-name='zfs_receive' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_receive'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='tosnap'/>
+ <parameter type-id='type-id-15' name='props'/>
+ <parameter type-id='type-id-364' name='flags'/>
+ <parameter type-id='type-id-8' name='infd'/>
+ <parameter type-id='type-id-365' name='stream_avl'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fletcher_4_incremental_byteswap' filepath='../../include/zfs_fletcher.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='libzfs_set_pipe_max' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='fnvlist_lookup_uint64_array' filepath='../../include/sys/nvpair.h' line='339' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-250'/>
- <return type-id='type-id-110'/>
+ <function-decl name='perror' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='fnvlist_lookup_boolean_value' filepath='../../include/sys/nvpair.h' line='318' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='fletcher_4_incremental_byteswap' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_iter_snapshots_sorted' filepath='../../include/libzfs.h' line='620' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-103'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fnvlist_lookup_uint64_array' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-244'/>
+ <return type-id='type-id-102'/>
+ </function-decl>
+ <function-decl name='fnvlist_lookup_boolean_value' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='zfs_iter_snapshots_sorted' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-95'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_get_recvd_props' filepath='../../include/libzfs.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <return type-id='type-id-112'/>
+ <function-decl name='zfs_get_recvd_props' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <return type-id='type-id-104'/>
</function-decl>
- <function-decl name='lzc_send_space' filepath='../../include/libzfs_core.h' line='109' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-375'/>
- <parameter type-id='type-id-110'/>
- <return type-id='type-id-1'/>
+ <function-decl name='lzc_send_space' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-361'/>
+ <parameter type-id='type-id-102'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvlist_merge' filepath='../../include/sys/nvpair.h' line='283' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-112'/>
- <return type-id='type-id-20'/>
+ <function-decl name='fnvlist_merge' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-104'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <class-decl name='dmu_replay_record' size-in-bits='2496' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='242' column='1' id='type-id-380'>
+ <class-decl name='dmu_replay_record' size-in-bits='2496' is-struct='yes' visibility='default' id='type-id-366'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_type' type-id='type-id-381' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='248' column='1'/>
+ <var-decl name='drr_type' type-id='type-id-367' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='drr_payloadlen' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='249' column='1'/>
+ <var-decl name='drr_payloadlen' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_u' type-id='type-id-382' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='384' column='1'/>
+ <var-decl name='drr_u' type-id='type-id-368' visibility='default'/>
</data-member>
</class-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/zfs_ioctl.h' line='243' column='1' id='type-id-381'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-367'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='DRR_BEGIN' value='0'/>
<enumerator name='DRR_OBJECT' value='1'/>
<enumerator name='DRR_FREEOBJECTS' value='2'/>
@@ -5660,105 +5369,105 @@
<enumerator name='DRR_REDACT' value='10'/>
<enumerator name='DRR_NUMTYPES' value='11'/>
</enum-decl>
- <union-decl name='__anonymous_union__' size-in-bits='2432' is-anonymous='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='250' column='1' id='type-id-382'>
+ <union-decl name='__anonymous_union__' size-in-bits='2432' is-anonymous='yes' visibility='default' id='type-id-368'>
<data-member access='private'>
- <var-decl name='drr_begin' type-id='type-id-120' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='251' column='1'/>
+ <var-decl name='drr_begin' type-id='type-id-112' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_end' type-id='type-id-383' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='255' column='1'/>
+ <var-decl name='drr_end' type-id='type-id-369' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_object' type-id='type-id-384' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='275' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-370' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_freeobjects' type-id='type-id-385' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='280' column='1'/>
+ <var-decl name='drr_freeobjects' type-id='type-id-371' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_write' type-id='type-id-386' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='301' column='1'/>
+ <var-decl name='drr_write' type-id='type-id-372' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_free' type-id='type-id-387' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='307' column='1'/>
+ <var-decl name='drr_free' type-id='type-id-373' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_write_byref' type-id='type-id-388' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='323' column='1'/>
+ <var-decl name='drr_write_byref' type-id='type-id-374' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_spill' type-id='type-id-389' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='338' column='1'/>
+ <var-decl name='drr_spill' type-id='type-id-375' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_write_embedded' type-id='type-id-390' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='351' column='1'/>
+ <var-decl name='drr_write_embedded' type-id='type-id-376' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_object_range' type-id='type-id-391' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='361' column='1'/>
+ <var-decl name='drr_object_range' type-id='type-id-377' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_redact' type-id='type-id-392' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='367' column='1'/>
+ <var-decl name='drr_redact' type-id='type-id-378' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='drr_checksum' type-id='type-id-393' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='383' column='1'/>
+ <var-decl name='drr_checksum' type-id='type-id-379' visibility='default'/>
</data-member>
</union-decl>
- <class-decl name='drr_end' size-in-bits='320' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='252' column='1' id='type-id-383'>
+ <class-decl name='drr_end' size-in-bits='320' is-struct='yes' visibility='default' id='type-id-369'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_checksum' type-id='type-id-394' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='253' column='1'/>
+ <var-decl name='drr_checksum' type-id='type-id-380' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='254' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zio_cksum_t' type-id='type-id-372' filepath='../../include/sys/spa_checksum.h' line='40' column='1' id='type-id-394'/>
- <class-decl name='drr_object' size-in-bits='448' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='256' column='1' id='type-id-384'>
+ <typedef-decl name='zio_cksum_t' type-id='type-id-358' id='type-id-380'/>
+ <class-decl name='drr_object' size-in-bits='448' is-struct='yes' visibility='default' id='type-id-370'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='257' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_type' type-id='type-id-395' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='258' column='1'/>
+ <var-decl name='drr_type' type-id='type-id-381' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='drr_bonustype' type-id='type-id-395' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='259' column='1'/>
+ <var-decl name='drr_bonustype' type-id='type-id-381' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_blksz' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='260' column='1'/>
+ <var-decl name='drr_blksz' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='160'>
- <var-decl name='drr_bonuslen' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='261' column='1'/>
+ <var-decl name='drr_bonuslen' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_checksumtype' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='262' column='1'/>
+ <var-decl name='drr_checksumtype' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='200'>
- <var-decl name='drr_compress' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='263' column='1'/>
+ <var-decl name='drr_compress' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='208'>
- <var-decl name='drr_dn_slots' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='264' column='1'/>
+ <var-decl name='drr_dn_slots' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='216'>
- <var-decl name='drr_flags' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='265' column='1'/>
+ <var-decl name='drr_flags' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
- <var-decl name='drr_raw_bonuslen' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='266' column='1'/>
+ <var-decl name='drr_raw_bonuslen' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='267' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='drr_indblkshift' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='269' column='1'/>
+ <var-decl name='drr_indblkshift' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='328'>
- <var-decl name='drr_nlevels' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='270' column='1'/>
+ <var-decl name='drr_nlevels' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='336'>
- <var-decl name='drr_nblkptr' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='271' column='1'/>
+ <var-decl name='drr_nblkptr' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='344'>
- <var-decl name='drr_pad' type-id='type-id-396' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='272' column='1'/>
+ <var-decl name='drr_pad' type-id='type-id-382' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='drr_maxblkid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='273' column='1'/>
+ <var-decl name='drr_maxblkid' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <enum-decl name='dmu_object_type' filepath='../../include/sys/dmu.h' line='165' column='1' id='type-id-397'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='dmu_object_type' id='type-id-383'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='DMU_OT_NONE' value='0'/>
<enumerator name='DMU_OT_OBJECT_DIRECTORY' value='1'/>
<enumerator name='DMU_OT_OBJECT_ARRAY' value='2'/>
@@ -5835,862 +5544,756 @@
<enumerator name='DMU_OTN_ZAP_ENC_DATA' value='164'/>
<enumerator name='DMU_OTN_ZAP_ENC_METADATA' value='228'/>
</enum-decl>
- <typedef-decl name='dmu_object_type_t' type-id='type-id-397' filepath='../../include/sys/dmu.h' line='269' column='1' id='type-id-395'/>
+ <typedef-decl name='dmu_object_type_t' type-id='type-id-383' id='type-id-381'/>
- <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='40' id='type-id-396'>
- <subrange length='5' type-id='type-id-43' id='type-id-398'/>
+ <array-type-def dimensions='1' type-id='type-id-79' size-in-bits='40' id='type-id-382'>
+ <subrange length='5' type-id='type-id-33' id='type-id-384'/>
</array-type-def>
- <class-decl name='drr_freeobjects' size-in-bits='192' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='276' column='1' id='type-id-385'>
+ <class-decl name='drr_freeobjects' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-371'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_firstobj' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='277' column='1'/>
+ <var-decl name='drr_firstobj' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_numobjs' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='278' column='1'/>
+ <var-decl name='drr_numobjs' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='279' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='drr_write' size-in-bits='1088' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='281' column='1' id='type-id-386'>
+ <class-decl name='drr_write' size-in-bits='1088' is-struct='yes' visibility='default' id='type-id-372'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='282' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_type' type-id='type-id-395' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='283' column='1'/>
+ <var-decl name='drr_type' type-id='type-id-381' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='drr_pad' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='284' column='1'/>
+ <var-decl name='drr_pad' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_offset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='285' column='1'/>
+ <var-decl name='drr_offset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_logical_size' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='286' column='1'/>
+ <var-decl name='drr_logical_size' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='287' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='drr_checksumtype' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='288' column='1'/>
+ <var-decl name='drr_checksumtype' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='328'>
- <var-decl name='drr_flags' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='289' column='1'/>
+ <var-decl name='drr_flags' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='336'>
- <var-decl name='drr_compressiontype' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='290' column='1'/>
+ <var-decl name='drr_compressiontype' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='344'>
- <var-decl name='drr_pad2' type-id='type-id-396' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='291' column='1'/>
+ <var-decl name='drr_pad2' type-id='type-id-382' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='drr_key' type-id='type-id-399' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='293' column='1'/>
+ <var-decl name='drr_key' type-id='type-id-385' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='drr_compressed_size' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='295' column='1'/>
+ <var-decl name='drr_compressed_size' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='768'>
- <var-decl name='drr_salt' type-id='type-id-400' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='297' column='1'/>
+ <var-decl name='drr_salt' type-id='type-id-386' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='832'>
- <var-decl name='drr_iv' type-id='type-id-401' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='298' column='1'/>
+ <var-decl name='drr_iv' type-id='type-id-387' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='928'>
- <var-decl name='drr_mac' type-id='type-id-402' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='299' column='1'/>
+ <var-decl name='drr_mac' type-id='type-id-388' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='ddt_key' size-in-bits='320' is-struct='yes' visibility='default' filepath='../../include/sys/ddt.h' line='67' column='1' id='type-id-403'>
+ <class-decl name='ddt_key' size-in-bits='320' is-struct='yes' visibility='default' id='type-id-389'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='ddk_cksum' type-id='type-id-394' visibility='default' filepath='../../include/sys/ddt.h' line='68' column='1'/>
+ <var-decl name='ddk_cksum' type-id='type-id-380' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='ddk_prop' type-id='type-id-32' visibility='default' filepath='../../include/sys/ddt.h' line='76' column='1'/>
+ <var-decl name='ddk_prop' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='ddt_key_t' type-id='type-id-403' filepath='../../include/sys/ddt.h' line='77' column='1' id='type-id-399'/>
+ <typedef-decl name='ddt_key_t' type-id='type-id-389' id='type-id-385'/>
- <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='64' id='type-id-400'>
- <subrange length='8' type-id='type-id-43' id='type-id-404'/>
+ <array-type-def dimensions='1' type-id='type-id-79' size-in-bits='64' id='type-id-386'>
+ <subrange length='8' type-id='type-id-33' id='type-id-390'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='96' id='type-id-401'>
- <subrange length='12' type-id='type-id-43' id='type-id-405'/>
+ <array-type-def dimensions='1' type-id='type-id-79' size-in-bits='96' id='type-id-387'>
+ <subrange length='12' type-id='type-id-33' id='type-id-391'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='128' id='type-id-402'>
- <subrange length='16' type-id='type-id-43' id='type-id-175'/>
+ <array-type-def dimensions='1' type-id='type-id-79' size-in-bits='128' id='type-id-388'>
+ <subrange length='16' type-id='type-id-33' id='type-id-169'/>
</array-type-def>
- <class-decl name='drr_free' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='302' column='1' id='type-id-387'>
+ <class-decl name='drr_free' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-373'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='303' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_offset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='304' column='1'/>
+ <var-decl name='drr_offset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_length' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='305' column='1'/>
+ <var-decl name='drr_length' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='306' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='drr_write_byref' size-in-bits='832' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='308' column='1' id='type-id-388'>
+ <class-decl name='drr_write_byref' size-in-bits='832' is-struct='yes' visibility='default' id='type-id-374'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='310' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_offset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='311' column='1'/>
+ <var-decl name='drr_offset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_length' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='312' column='1'/>
+ <var-decl name='drr_length' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='313' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_refguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='315' column='1'/>
+ <var-decl name='drr_refguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='drr_refobject' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='316' column='1'/>
+ <var-decl name='drr_refobject' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='drr_refoffset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='317' column='1'/>
+ <var-decl name='drr_refoffset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='drr_checksumtype' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='319' column='1'/>
+ <var-decl name='drr_checksumtype' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='456'>
- <var-decl name='drr_flags' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='320' column='1'/>
+ <var-decl name='drr_flags' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='464'>
- <var-decl name='drr_pad2' type-id='type-id-406' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='321' column='1'/>
+ <var-decl name='drr_pad2' type-id='type-id-392' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='drr_key' type-id='type-id-399' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='322' column='1'/>
+ <var-decl name='drr_key' type-id='type-id-385' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='48' id='type-id-406'>
- <subrange length='6' type-id='type-id-43' id='type-id-407'/>
+ <array-type-def dimensions='1' type-id='type-id-79' size-in-bits='48' id='type-id-392'>
+ <subrange length='6' type-id='type-id-33' id='type-id-393'/>
</array-type-def>
- <class-decl name='drr_spill' size-in-bits='640' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='324' column='1' id='type-id-389'>
+ <class-decl name='drr_spill' size-in-bits='640' is-struct='yes' visibility='default' id='type-id-375'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='325' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_length' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='326' column='1'/>
+ <var-decl name='drr_length' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='327' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_flags' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='328' column='1'/>
+ <var-decl name='drr_flags' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='200'>
- <var-decl name='drr_compressiontype' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='329' column='1'/>
+ <var-decl name='drr_compressiontype' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='208'>
- <var-decl name='drr_pad' type-id='type-id-406' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='330' column='1'/>
+ <var-decl name='drr_pad' type-id='type-id-392' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_compressed_size' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='332' column='1'/>
+ <var-decl name='drr_compressed_size' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='drr_salt' type-id='type-id-400' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='333' column='1'/>
+ <var-decl name='drr_salt' type-id='type-id-386' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='drr_iv' type-id='type-id-401' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='334' column='1'/>
+ <var-decl name='drr_iv' type-id='type-id-387' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='480'>
- <var-decl name='drr_mac' type-id='type-id-402' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='335' column='1'/>
+ <var-decl name='drr_mac' type-id='type-id-388' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='608'>
- <var-decl name='drr_type' type-id='type-id-395' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='336' column='1'/>
+ <var-decl name='drr_type' type-id='type-id-381' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='drr_write_embedded' size-in-bits='384' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='339' column='1' id='type-id-390'>
+ <class-decl name='drr_write_embedded' size-in-bits='384' is-struct='yes' visibility='default' id='type-id-376'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='340' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_offset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='341' column='1'/>
+ <var-decl name='drr_offset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_length' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='343' column='1'/>
+ <var-decl name='drr_length' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='344' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_compression' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='345' column='1'/>
+ <var-decl name='drr_compression' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='264'>
- <var-decl name='drr_etype' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='346' column='1'/>
+ <var-decl name='drr_etype' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='272'>
- <var-decl name='drr_pad' type-id='type-id-406' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='347' column='1'/>
+ <var-decl name='drr_pad' type-id='type-id-392' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='drr_lsize' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='348' column='1'/>
+ <var-decl name='drr_lsize' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='352'>
- <var-decl name='drr_psize' type-id='type-id-48' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='349' column='1'/>
+ <var-decl name='drr_psize' type-id='type-id-38' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='drr_object_range' size-in-bits='512' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='352' column='1' id='type-id-391'>
+ <class-decl name='drr_object_range' size-in-bits='512' is-struct='yes' visibility='default' id='type-id-377'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_firstobj' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='353' column='1'/>
+ <var-decl name='drr_firstobj' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_numslots' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='354' column='1'/>
+ <var-decl name='drr_numslots' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='355' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_salt' type-id='type-id-400' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='356' column='1'/>
+ <var-decl name='drr_salt' type-id='type-id-386' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='drr_iv' type-id='type-id-401' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='357' column='1'/>
+ <var-decl name='drr_iv' type-id='type-id-387' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='352'>
- <var-decl name='drr_mac' type-id='type-id-402' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='358' column='1'/>
+ <var-decl name='drr_mac' type-id='type-id-388' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='480'>
- <var-decl name='drr_flags' type-id='type-id-84' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='359' column='1'/>
+ <var-decl name='drr_flags' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='488'>
- <var-decl name='drr_pad' type-id='type-id-122' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='360' column='1'/>
+ <var-decl name='drr_pad' type-id='type-id-114' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='drr_redact' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='362' column='1' id='type-id-392'>
+ <class-decl name='drr_redact' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-378'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_object' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='363' column='1'/>
+ <var-decl name='drr_object' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='drr_offset' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='364' column='1'/>
+ <var-decl name='drr_offset' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='drr_length' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='365' column='1'/>
+ <var-decl name='drr_length' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='drr_toguid' type-id='type-id-32' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='366' column='1'/>
+ <var-decl name='drr_toguid' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='drr_checksum' size-in-bits='2432' is-struct='yes' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='376' column='1' id='type-id-393'>
+ <class-decl name='drr_checksum' size-in-bits='2432' is-struct='yes' visibility='default' id='type-id-379'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='drr_pad' type-id='type-id-408' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='377' column='1'/>
+ <var-decl name='drr_pad' type-id='type-id-394' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2176'>
- <var-decl name='drr_checksum' type-id='type-id-394' visibility='default' filepath='../../include/sys/zfs_ioctl.h' line='382' column='1'/>
+ <var-decl name='drr_checksum' type-id='type-id-380' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='2176' id='type-id-408'>
- <subrange length='34' type-id='type-id-43' id='type-id-409'/>
+ <array-type-def dimensions='1' type-id='type-id-22' size-in-bits='2176' id='type-id-394'>
+ <subrange length='34' type-id='type-id-33' id='type-id-395'/>
</array-type-def>
- <qualified-type-def type-id='type-id-380' const='yes' id='type-id-410'/>
- <pointer-type-def type-id='type-id-410' size-in-bits='64' id='type-id-411'/>
- <function-decl name='lzc_receive_with_cmdprops' filepath='../../include/libzfs_core.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-78'/>
- <parameter type-id='type-id-19'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-411'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-115'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='nvpair_value_int32' filepath='../../include/sys/nvpair.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <parameter type-id='type-id-231'/>
- <return type-id='type-id-1'/>
+ <qualified-type-def type-id='type-id-366' const='yes' id='type-id-396'/>
+ <pointer-type-def type-id='type-id-396' size-in-bits='64' id='type-id-397'/>
+ <function-decl name='lzc_receive_with_cmdprops' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-73'/>
+ <parameter type-id='type-id-5'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-397'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-107'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='create_parents' filepath='../../include/libzfs_impl.h' line='192' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvpair_value_int32' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <parameter type-id='type-id-223'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvlist_add_nvpair' filepath='../../include/sys/nvpair.h' line='299' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-141'/>
- <return type-id='type-id-20'/>
+ <function-decl name='create_parents' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='fnvlist_remove' filepath='../../include/sys/nvpair.h' line='313' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-112'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='fnvlist_add_nvpair' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-133'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_prop_set' filepath='../../include/libzfs.h' line='493' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-87'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fnvlist_remove' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-104'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='lzc_rename' filepath='../../include/libzfs_core.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_prop_set' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-82'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-369'>
- <parameter type-id='type-id-98'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-6'/>
+ <function-decl name='lzc_rename' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-355'>
+ <parameter type-id='type-id-135'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-16'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_status.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <typedef-decl name='zpool_status_t' type-id='type-id-338' filepath='../../include/libzfs.h' line='402' column='1' id='type-id-412'/>
- <typedef-decl name='zpool_errata_t' type-id='type-id-339' filepath='../../include/sys/fs/zfs.h' line='1056' column='1' id='type-id-413'/>
- <pointer-type-def type-id='type-id-413' size-in-bits='64' id='type-id-414'/>
- <function-decl name='zpool_get_status' mangled-name='zpool_get_status' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='509' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_status'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='509' column='1'/>
- <parameter type-id='type-id-92' name='msgid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='509' column='1'/>
- <parameter type-id='type-id-414' name='errata' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='509' column='1'/>
- <return type-id='type-id-412'/>
- </function-decl>
- <function-decl name='zpool_load_compat' filepath='../../include/libzfs.h' line='934' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-305'/>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-331'/>
+ <typedef-decl name='zpool_status_t' type-id='type-id-325' id='type-id-398'/>
+ <typedef-decl name='zpool_errata_t' type-id='type-id-326' id='type-id-399'/>
+ <pointer-type-def type-id='type-id-399' size-in-bits='64' id='type-id-400'/>
+ <function-decl name='zpool_get_status' mangled-name='zpool_get_status' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_status'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-88' name='msgid'/>
+ <parameter type-id='type-id-400' name='errata'/>
+ <return type-id='type-id-398'/>
+ </function-decl>
+ <function-decl name='zpool_load_compat' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-294'/>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-318'/>
</function-decl>
- <function-decl name='zpool_import_status' mangled-name='zpool_import_status' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='533' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_import_status'>
- <parameter type-id='type-id-28' name='config' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='533' column='1'/>
- <parameter type-id='type-id-92' name='msgid' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='533' column='1'/>
- <parameter type-id='type-id-414' name='errata' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_status.c' line='533' column='1'/>
- <return type-id='type-id-412'/>
+ <function-decl name='zpool_import_status' mangled-name='zpool_import_status' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_import_status'>
+ <parameter type-id='type-id-15' name='config'/>
+ <parameter type-id='type-id-88' name='msgid'/>
+ <parameter type-id='type-id-400' name='errata'/>
+ <return type-id='type-id-398'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libzfs_util.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zprop_get_list' mangled-name='zprop_get_list' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1798' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_get_list'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1798' column='1'/>
- <parameter type-id='type-id-29' name='props' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1798' column='1'/>
- <parameter type-id='type-id-265' name='listp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1798' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1799' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='libzfs_errno' mangled-name='libzfs_errno' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='73' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_errno'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='73' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='libzfs_error_action' mangled-name='libzfs_error_action' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='79' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_error_action'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='79' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='libzfs_error_description' mangled-name='libzfs_error_description' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='85' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_error_description'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='85' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zfs_error_aux' mangled-name='zfs_error_aux' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='309' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_error_aux'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='309' column='1'/>
- <parameter type-id='type-id-89' name='fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='309' column='1'/>
- <parameter is-variadic='yes'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_error' mangled-name='zfs_error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_error'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <parameter type-id='type-id-1' name='error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <parameter type-id='type-id-89' name='msg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_error_fmt' mangled-name='zfs_error_fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='357' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_error_fmt'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='357' column='1'/>
- <parameter type-id='type-id-1' name='error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='357' column='1'/>
- <parameter type-id='type-id-89' name='fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='357' column='1'/>
- <parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_standard_error' mangled-name='zfs_standard_error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_standard_error'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <parameter type-id='type-id-1' name='error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <parameter type-id='type-id-89' name='msg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_standard_error_fmt' mangled-name='zfs_standard_error_fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='408' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_standard_error_fmt'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='408' column='1'/>
- <parameter type-id='type-id-1' name='error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='408' column='1'/>
- <parameter type-id='type-id-89' name='fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='408' column='1'/>
- <parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_setprop_error' mangled-name='zfs_setprop_error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='499' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_setprop_error'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='499' column='1'/>
- <parameter type-id='type-id-3' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='499' column='1'/>
- <parameter type-id='type-id-1' name='err' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='499' column='1'/>
- <parameter type-id='type-id-29' name='errbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='500' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zpool_standard_error' mangled-name='zpool_standard_error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='611' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_standard_error'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <parameter type-id='type-id-1' name='error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <parameter type-id='type-id-89' name='msg' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='350' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_standard_error_fmt' mangled-name='zpool_standard_error_fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='618' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_standard_error_fmt'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='618' column='1'/>
- <parameter type-id='type-id-1' name='error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='618' column='1'/>
- <parameter type-id='type-id-89' name='fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='618' column='1'/>
- <parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zprop_get_list' mangled-name='zprop_get_list' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_get_list'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-17' name='props'/>
+ <parameter type-id='type-id-259' name='listp'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='no_memory' mangled-name='no_memory' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='752' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='no_memory'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='752' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='libzfs_errno' mangled-name='libzfs_errno' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_errno'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_alloc' mangled-name='zfs_alloc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='761' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_alloc'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='761' column='1'/>
- <parameter type-id='type-id-38' name='size' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='761' column='1'/>
- <return type-id='type-id-21'/>
+ <function-decl name='libzfs_error_action' mangled-name='libzfs_error_action' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_error_action'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zfs_asprintf' mangled-name='zfs_asprintf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='776' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_asprintf'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='776' column='1'/>
- <parameter type-id='type-id-89' name='fmt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='776' column='1'/>
- <parameter is-variadic='yes'/>
- <return type-id='type-id-29'/>
+ <function-decl name='libzfs_error_description' mangled-name='libzfs_error_description' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_error_description'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zfs_standard_error' mangled-name='zfs_standard_error' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_standard_error'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-8' name='error'/>
+ <parameter type-id='type-id-84' name='msg'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='__va_list_tag' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-415'>
+ <class-decl name='__va_list_tag' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-401'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='gp_offset' type-id='type-id-19' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='311' column='1'/>
+ <var-decl name='gp_offset' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='fp_offset' type-id='type-id-19' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='311' column='1'/>
+ <var-decl name='fp_offset' type-id='type-id-5' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='overflow_arg_area' type-id='type-id-21' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='311' column='1'/>
+ <var-decl name='overflow_arg_area' type-id='type-id-7' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='reg_save_area' type-id='type-id-21' visibility='default' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='311' column='1'/>
+ <var-decl name='reg_save_area' type-id='type-id-7' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-415' size-in-bits='64' id='type-id-416'/>
- <function-decl name='vasprintf' filepath='/usr/include/stdio.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-92'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-416'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_realloc' mangled-name='zfs_realloc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='800' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_realloc'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='800' column='1'/>
- <parameter type-id='type-id-21' name='ptr' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='800' column='1'/>
- <parameter type-id='type-id-38' name='oldsize' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='800' column='1'/>
- <parameter type-id='type-id-38' name='newsize' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='800' column='1'/>
- <return type-id='type-id-21'/>
- </function-decl>
- <function-decl name='zfs_strdup' mangled-name='zfs_strdup' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='817' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_strdup'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='817' column='1'/>
- <parameter type-id='type-id-89' name='str' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='817' column='1'/>
- <return type-id='type-id-29'/>
- </function-decl>
- <function-decl name='libzfs_print_on_error' mangled-name='libzfs_print_on_error' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='828' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_print_on_error'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='866' column='1'/>
- <parameter type-id='type-id-6' name='enable' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_dataset.c' line='866' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='libzfs_run_process' mangled-name='libzfs_run_process' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='946' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_run_process'>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='946' column='1'/>
- <parameter type-id='type-id-92' name='argv' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='946' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='946' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fork' filepath='/usr/include/unistd.h' line='756' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='waitpid' filepath='/usr/include/x86_64-linux-gnu/sys/wait.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-231'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-401' size-in-bits='64' id='type-id-402'/>
+ <function-decl name='vasprintf' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-88'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-402'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='dup2' filepath='/usr/include/unistd.h' line='534' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='libzfs_print_on_error' mangled-name='libzfs_print_on_error' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_print_on_error'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-16' name='enable'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <qualified-type-def type-id='type-id-29' const='yes' id='type-id-417'/>
- <pointer-type-def type-id='type-id-417' size-in-bits='64' id='type-id-418'/>
- <function-decl name='execv' filepath='/usr/include/unistd.h' line='563' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-418'/>
- <return type-id='type-id-1'/>
+ <function-decl name='libzfs_run_process' mangled-name='libzfs_run_process' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_run_process'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-88' name='argv'/>
+ <parameter type-id='type-id-8' name='flags'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='execvp' filepath='/usr/include/unistd.h' line='578' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-418'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fork' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='execve' filepath='/usr/include/unistd.h' line='551' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-418'/>
- <parameter type-id='type-id-418'/>
- <return type-id='type-id-1'/>
+ <function-decl name='waitpid' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-223'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='execvpe' filepath='/usr/include/unistd.h' line='590' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-418'/>
- <parameter type-id='type-id-418'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <pointer-type-def type-id='type-id-92' size-in-bits='64' id='type-id-419'/>
- <function-decl name='libzfs_run_process_get_stdout' mangled-name='libzfs_run_process_get_stdout' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_run_process_get_stdout'>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='958' column='1'/>
- <parameter type-id='type-id-92' name='argv' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='958' column='1'/>
- <parameter type-id='type-id-92' name='env' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='958' column='1'/>
- <parameter type-id='type-id-419' name='lines' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='959' column='1'/>
- <parameter type-id='type-id-231' name='lines_cnt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='959' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='libzfs_run_process_get_stdout_nopath' mangled-name='libzfs_run_process_get_stdout_nopath' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='969' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_run_process_get_stdout_nopath'>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='958' column='1'/>
- <parameter type-id='type-id-92' name='argv' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='958' column='1'/>
- <parameter type-id='type-id-92' name='env' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='958' column='1'/>
- <parameter type-id='type-id-419' name='lines' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='959' column='1'/>
- <parameter type-id='type-id-231' name='lines_cnt' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='959' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='libzfs_free_str_array' mangled-name='libzfs_free_str_array' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='981' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_free_str_array'>
- <parameter type-id='type-id-92' name='strs' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='981' column='1'/>
- <parameter type-id='type-id-1' name='count' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='981' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='libzfs_envvar_is_set' mangled-name='libzfs_envvar_is_set' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='996' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_envvar_is_set'>
- <parameter type-id='type-id-29' name='envvar' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='996' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='strnlen' filepath='/usr/include/string.h' line='390' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-45'/>
+ <function-decl name='dup2' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='libzfs_init' mangled-name='libzfs_init' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1008' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_init'>
- <return type-id='type-id-23'/>
+ <qualified-type-def type-id='type-id-17' const='yes' id='type-id-403'/>
+ <pointer-type-def type-id='type-id-403' size-in-bits='64' id='type-id-404'/>
+ <function-decl name='execv' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-404'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='libzfs_load_module' filepath='../../include/libzfs_impl.h' line='253' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-1'/>
+ <function-decl name='execvp' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-404'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <pointer-type-def type-id='type-id-74' size-in-bits='64' id='type-id-420'/>
- <function-decl name='regcomp' filepath='/usr/include/regex.h' line='639' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-420'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='execve' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-404'/>
+ <parameter type-id='type-id-404'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='execvpe' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-404'/>
+ <parameter type-id='type-id-404'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-88' size-in-bits='64' id='type-id-405'/>
+ <function-decl name='libzfs_run_process_get_stdout' mangled-name='libzfs_run_process_get_stdout' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_run_process_get_stdout'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-88' name='argv'/>
+ <parameter type-id='type-id-88' name='env'/>
+ <parameter type-id='type-id-405' name='lines'/>
+ <parameter type-id='type-id-223' name='lines_cnt'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='libzfs_run_process_get_stdout_nopath' mangled-name='libzfs_run_process_get_stdout_nopath' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_run_process_get_stdout_nopath'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-88' name='argv'/>
+ <parameter type-id='type-id-88' name='env'/>
+ <parameter type-id='type-id-405' name='lines'/>
+ <parameter type-id='type-id-223' name='lines_cnt'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='libzfs_free_str_array' mangled-name='libzfs_free_str_array' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_free_str_array'>
+ <parameter type-id='type-id-88' name='strs'/>
+ <parameter type-id='type-id-8' name='count'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='libzfs_envvar_is_set' mangled-name='libzfs_envvar_is_set' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_envvar_is_set'>
+ <parameter type-id='type-id-17' name='envvar'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='strnlen' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-35'/>
+ </function-decl>
+ <function-decl name='libzfs_init' mangled-name='libzfs_init' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_init'>
+ <return type-id='type-id-10'/>
+ </function-decl>
+ <function-decl name='libzfs_load_module' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='libzfs_core_init' filepath='../../include/libzfs_core.h' line='41' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-69' size-in-bits='64' id='type-id-406'/>
+ <function-decl name='regcomp' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-406'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_init' filepath='../../include/zfs_prop.h' line='90' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <function-decl name='libzfs_core_init' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_prop_init' filepath='../../include/zfs_prop.h' line='98' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_prop_init' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zpool_feature_init' filepath='../../include/zfeature_common.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <function-decl name='zpool_prop_init' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zpool_feature_init' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='libzfs_mnttab_init' filepath='../../include/libzfs.h' line='222' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <return type-id='type-id-20'/>
+ <function-decl name='libzfs_mnttab_init' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='fletcher_4_init' filepath='../../include/zfs_fletcher.h' line='62' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <function-decl name='fletcher_4_init' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_nicestrtonum' mangled-name='zfs_nicestrtonum' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1505' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_nicestrtonum'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1505' column='1'/>
- <parameter type-id='type-id-89' name='value' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1505' column='1'/>
- <parameter type-id='type-id-254' name='num' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1505' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_nicestrtonum' mangled-name='zfs_nicestrtonum' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_nicestrtonum'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='value'/>
+ <parameter type-id='type-id-248' name='num'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <class-decl name='__anonymous_struct__' size-in-bits='704' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-421' visibility='default' filepath='../../include/zfs_prop.h' line='67' column='1' id='type-id-422'>
+ <class-decl name='__anonymous_struct__' size-in-bits='704' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-407' visibility='default' id='type-id-408'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='pd_name' type-id='type-id-89' visibility='default' filepath='../../include/zfs_prop.h' line='68' column='1'/>
+ <var-decl name='pd_name' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='pd_propnum' type-id='type-id-1' visibility='default' filepath='../../include/zfs_prop.h' line='69' column='1'/>
+ <var-decl name='pd_propnum' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='pd_proptype' type-id='type-id-423' visibility='default' filepath='../../include/zfs_prop.h' line='70' column='1'/>
+ <var-decl name='pd_proptype' type-id='type-id-409' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='pd_strdefault' type-id='type-id-89' visibility='default' filepath='../../include/zfs_prop.h' line='71' column='1'/>
+ <var-decl name='pd_strdefault' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='pd_numdefault' type-id='type-id-32' visibility='default' filepath='../../include/zfs_prop.h' line='72' column='1'/>
+ <var-decl name='pd_numdefault' type-id='type-id-22' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='pd_attr' type-id='type-id-424' visibility='default' filepath='../../include/zfs_prop.h' line='73' column='1'/>
+ <var-decl name='pd_attr' type-id='type-id-410' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='pd_types' type-id='type-id-1' visibility='default' filepath='../../include/zfs_prop.h' line='74' column='1'/>
+ <var-decl name='pd_types' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='pd_values' type-id='type-id-89' visibility='default' filepath='../../include/zfs_prop.h' line='76' column='1'/>
+ <var-decl name='pd_values' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='pd_colname' type-id='type-id-89' visibility='default' filepath='../../include/zfs_prop.h' line='77' column='1'/>
+ <var-decl name='pd_colname' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='pd_rightalign' type-id='type-id-6' visibility='default' filepath='../../include/zfs_prop.h' line='78' column='1'/>
+ <var-decl name='pd_rightalign' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='480'>
- <var-decl name='pd_visible' type-id='type-id-6' visibility='default' filepath='../../include/zfs_prop.h' line='79' column='1'/>
+ <var-decl name='pd_visible' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='pd_zfs_mod_supported' type-id='type-id-6' visibility='default' filepath='../../include/zfs_prop.h' line='81' column='1'/>
+ <var-decl name='pd_zfs_mod_supported' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='pd_table' type-id='type-id-425' visibility='default' filepath='../../include/zfs_prop.h' line='82' column='1'/>
+ <var-decl name='pd_table' type-id='type-id-411' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='640'>
- <var-decl name='pd_table_size' type-id='type-id-38' visibility='default' filepath='../../include/zfs_prop.h' line='84' column='1'/>
+ <var-decl name='pd_table_size' type-id='type-id-28' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zprop_type_t' type-id='type-id-240' filepath='../../include/zfs_prop.h' line='44' column='1' id='type-id-423'/>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/zfs_prop.h' line='46' column='1' id='type-id-426'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='zprop_type_t' type-id='type-id-234' id='type-id-409'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-412'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='PROP_DEFAULT' value='0'/>
<enumerator name='PROP_READONLY' value='1'/>
<enumerator name='PROP_INHERIT' value='2'/>
<enumerator name='PROP_ONETIME' value='3'/>
<enumerator name='PROP_ONETIME_DEFAULT' value='4'/>
</enum-decl>
- <typedef-decl name='zprop_attr_t' type-id='type-id-426' filepath='../../include/zfs_prop.h' line='60' column='1' id='type-id-424'/>
- <class-decl name='zfs_index' size-in-bits='128' is-struct='yes' visibility='default' filepath='../../include/zfs_prop.h' line='62' column='1' id='type-id-427'>
+ <typedef-decl name='zprop_attr_t' type-id='type-id-412' id='type-id-410'/>
+ <class-decl name='zfs_index' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-413'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='pi_name' type-id='type-id-89' visibility='default' filepath='../../include/zfs_prop.h' line='63' column='1'/>
+ <var-decl name='pi_name' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='pi_value' type-id='type-id-32' visibility='default' filepath='../../include/zfs_prop.h' line='64' column='1'/>
+ <var-decl name='pi_value' type-id='type-id-22' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zprop_index_t' type-id='type-id-427' filepath='../../include/zfs_prop.h' line='65' column='1' id='type-id-428'/>
- <qualified-type-def type-id='type-id-428' const='yes' id='type-id-429'/>
- <pointer-type-def type-id='type-id-429' size-in-bits='64' id='type-id-425'/>
- <pointer-type-def type-id='type-id-422' size-in-bits='64' id='type-id-430'/>
- <function-decl name='zpool_prop_get_table' filepath='../../include/zfs_prop.h' line='100' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-430'/>
- </function-decl>
- <function-decl name='zfs_prop_get_table' filepath='../../include/zfs_prop.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-430'/>
- </function-decl>
- <function-decl name='libzfs_fini' mangled-name='libzfs_fini' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1080' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_fini'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1080' column='1'/>
- <return type-id='type-id-20'/>
+ <typedef-decl name='zprop_index_t' type-id='type-id-413' id='type-id-414'/>
+ <qualified-type-def type-id='type-id-414' const='yes' id='type-id-415'/>
+ <pointer-type-def type-id='type-id-415' size-in-bits='64' id='type-id-411'/>
+ <pointer-type-def type-id='type-id-408' size-in-bits='64' id='type-id-416'/>
+ <function-decl name='zpool_prop_get_table' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-416'/>
+ </function-decl>
+ <function-decl name='zfs_prop_get_table' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-416'/>
+ </function-decl>
+ <function-decl name='libzfs_fini' mangled-name='libzfs_fini' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_fini'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zpool_free_handles' filepath='../../include/libzfs.h' line='241' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zpool_free_handles' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='namespace_clear' filepath='../../include/libzfs_impl.h' line='206' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <return type-id='type-id-20'/>
+ <function-decl name='namespace_clear' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='libzfs_mnttab_fini' filepath='../../include/libzfs.h' line='223' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-99'/>
- <return type-id='type-id-20'/>
+ <function-decl name='libzfs_mnttab_fini' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-91'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='libzfs_core_fini' filepath='../../include/libzfs_core.h' line='42' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
+ <function-decl name='libzfs_core_fini' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='regfree' filepath='/usr/include/regex.h' line='651' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-420'/>
- <return type-id='type-id-20'/>
+ <function-decl name='regfree' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-406'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='fletcher_4_fini' mangled-name='fletcher_4_fini' filepath='../../include/zfs_fletcher.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_fini'>
- <return type-id='type-id-20'/>
+ <function-decl name='fletcher_4_fini' mangled-name='fletcher_4_fini' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_fini'>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='dlclose' filepath='/usr/include/dlfcn.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='dlclose' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_get_handle' mangled-name='zpool_get_handle' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1098' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_handle'>
- <parameter type-id='type-id-24' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1098' column='1'/>
- <return type-id='type-id-23'/>
+ <function-decl name='zpool_get_handle' mangled-name='zpool_get_handle' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_handle'>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <return type-id='type-id-10'/>
</function-decl>
- <function-decl name='zfs_get_handle' mangled-name='zfs_get_handle' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1104' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_handle'>
- <parameter type-id='type-id-98' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1104' column='1'/>
- <return type-id='type-id-23'/>
+ <function-decl name='zfs_get_handle' mangled-name='zfs_get_handle' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_handle'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <return type-id='type-id-10'/>
</function-decl>
- <function-decl name='zfs_get_pool_handle' mangled-name='zfs_get_pool_handle' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1110' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_pool_handle'>
- <parameter type-id='type-id-256' name='zhp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1110' column='1'/>
- <return type-id='type-id-24'/>
+ <function-decl name='zfs_get_pool_handle' mangled-name='zfs_get_pool_handle' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_get_pool_handle'>
+ <parameter type-id='type-id-250' name='zhp'/>
+ <return type-id='type-id-11'/>
</function-decl>
- <function-decl name='zfs_path_to_zhandle' mangled-name='zfs_path_to_zhandle' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_path_to_zhandle'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1122' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1122' column='1'/>
- <parameter type-id='type-id-26' name='argtype' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1122' column='1'/>
- <return type-id='type-id-98'/>
+ <function-decl name='zfs_path_to_zhandle' mangled-name='zfs_path_to_zhandle' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_path_to_zhandle'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-13' name='argtype'/>
+ <return type-id='type-id-135'/>
</function-decl>
- <class-decl name='extmnttab' size-in-bits='320' is-struct='yes' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='62' column='1' id='type-id-431'>
+ <class-decl name='extmnttab' size-in-bits='320' is-struct='yes' visibility='default' id='type-id-417'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='mnt_special' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='63' column='1'/>
+ <var-decl name='mnt_special' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='mnt_mountp' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='64' column='1'/>
+ <var-decl name='mnt_mountp' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='mnt_fstype' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='65' column='1'/>
+ <var-decl name='mnt_fstype' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='mnt_mntopts' type-id='type-id-29' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='66' column='1'/>
+ <var-decl name='mnt_mntopts' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='mnt_major' type-id='type-id-146' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='67' column='1'/>
+ <var-decl name='mnt_major' type-id='type-id-140' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='mnt_minor' type-id='type-id-146' visibility='default' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='68' column='1'/>
+ <var-decl name='mnt_minor' type-id='type-id-140' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-431' size-in-bits='64' id='type-id-432'/>
- <class-decl name='stat64' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='119' column='1' id='type-id-433'>
+ <pointer-type-def type-id='type-id-417' size-in-bits='64' id='type-id-418'/>
+ <class-decl name='stat64' size-in-bits='1152' is-struct='yes' visibility='default' id='type-id-419'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='st_dev' type-id='type-id-434' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='121' column='1'/>
+ <var-decl name='st_dev' type-id='type-id-420' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='st_ino' type-id='type-id-318' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='123' column='1'/>
+ <var-decl name='st_ino' type-id='type-id-307' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='st_nlink' type-id='type-id-435' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='124' column='1'/>
+ <var-decl name='st_nlink' type-id='type-id-421' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='st_mode' type-id='type-id-436' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='125' column='1'/>
+ <var-decl name='st_mode' type-id='type-id-422' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='224'>
- <var-decl name='st_uid' type-id='type-id-197' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='132' column='1'/>
+ <var-decl name='st_uid' type-id='type-id-191' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='st_gid' type-id='type-id-233' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='133' column='1'/>
+ <var-decl name='st_gid' type-id='type-id-225' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='__pad0' type-id='type-id-1' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='135' column='1'/>
+ <var-decl name='__pad0' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='st_rdev' type-id='type-id-434' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='136' column='1'/>
+ <var-decl name='st_rdev' type-id='type-id-420' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='st_size' type-id='type-id-157' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='137' column='1'/>
+ <var-decl name='st_size' type-id='type-id-151' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='st_blksize' type-id='type-id-437' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='143' column='1'/>
+ <var-decl name='st_blksize' type-id='type-id-423' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='st_blocks' type-id='type-id-438' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='144' column='1'/>
+ <var-decl name='st_blocks' type-id='type-id-424' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='st_atim' type-id='type-id-439' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='152' column='1'/>
+ <var-decl name='st_atim' type-id='type-id-425' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='st_mtim' type-id='type-id-439' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='153' column='1'/>
+ <var-decl name='st_mtim' type-id='type-id-425' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='832'>
- <var-decl name='st_ctim' type-id='type-id-439' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='154' column='1'/>
+ <var-decl name='st_ctim' type-id='type-id-425' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='960'>
- <var-decl name='__glibc_reserved' type-id='type-id-440' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/stat.h' line='164' column='1'/>
+ <var-decl name='__glibc_reserved' type-id='type-id-426' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__dev_t' type-id='type-id-45' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='143' column='1' id='type-id-434'/>
- <typedef-decl name='__nlink_t' type-id='type-id-45' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='149' column='1' id='type-id-435'/>
- <typedef-decl name='__mode_t' type-id='type-id-19' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='148' column='1' id='type-id-436'/>
- <typedef-decl name='__blksize_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='172' column='1' id='type-id-437'/>
- <typedef-decl name='__blkcnt64_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='178' column='1' id='type-id-438'/>
- <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='9' column='1' id='type-id-439'>
+ <typedef-decl name='__dev_t' type-id='type-id-35' id='type-id-420'/>
+ <typedef-decl name='__nlink_t' type-id='type-id-35' id='type-id-421'/>
+ <typedef-decl name='__mode_t' type-id='type-id-5' id='type-id-422'/>
+ <typedef-decl name='__blksize_t' type-id='type-id-54' id='type-id-423'/>
+ <typedef-decl name='__blkcnt64_t' type-id='type-id-54' id='type-id-424'/>
+ <class-decl name='timespec' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-425'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='tv_sec' type-id='type-id-441' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='11' column='1'/>
+ <var-decl name='tv_sec' type-id='type-id-427' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='tv_nsec' type-id='type-id-442' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h' line='12' column='1'/>
+ <var-decl name='tv_nsec' type-id='type-id-428' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__time_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='158' column='1' id='type-id-441'/>
- <typedef-decl name='__syscall_slong_t' type-id='type-id-59' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='194' column='1' id='type-id-442'/>
+ <typedef-decl name='__time_t' type-id='type-id-54' id='type-id-427'/>
+ <typedef-decl name='__syscall_slong_t' type-id='type-id-54' id='type-id-428'/>
- <array-type-def dimensions='1' type-id='type-id-442' size-in-bits='192' id='type-id-440'>
- <subrange length='3' type-id='type-id-43' id='type-id-108'/>
+ <array-type-def dimensions='1' type-id='type-id-428' size-in-bits='192' id='type-id-426'>
+ <subrange length='3' type-id='type-id-33' id='type-id-100'/>
</array-type-def>
- <pointer-type-def type-id='type-id-433' size-in-bits='64' id='type-id-443'/>
- <function-decl name='getextmntent' filepath='../../lib/libspl/include/os/linux/sys/mnttab.h' line='75' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-432'/>
- <parameter type-id='type-id-443'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_alloc_dst_nvlist' mangled-name='zcmd_alloc_dst_nvlist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1151' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zcmd_alloc_dst_nvlist'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1151' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1151' column='1'/>
- <parameter type-id='type-id-38' name='len' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1151' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_expand_dst_nvlist' mangled-name='zcmd_expand_dst_nvlist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1170' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zcmd_expand_dst_nvlist'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1170' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1170' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_free_nvlists' mangled-name='zcmd_free_nvlists' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zcmd_free_nvlists'>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1185' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zcmd_write_conf_nvlist' mangled-name='zcmd_write_conf_nvlist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1216' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zcmd_write_conf_nvlist'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1216' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1216' column='1'/>
- <parameter type-id='type-id-28' name='nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1216' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_write_src_nvlist' mangled-name='zcmd_write_src_nvlist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zcmd_write_src_nvlist'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1216' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1216' column='1'/>
- <parameter type-id='type-id-28' name='nvl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1216' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zcmd_read_dst_nvlist' mangled-name='zcmd_read_dst_nvlist' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1233' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zcmd_read_dst_nvlist'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1233' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1233' column='1'/>
- <parameter type-id='type-id-113' name='nvlp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1233' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <class-decl name='zprop_get_cbdata' size-in-bits='640' is-struct='yes' visibility='default' filepath='../../include/libzfs.h' line='595' column='1' id='type-id-444'>
+ <pointer-type-def type-id='type-id-419' size-in-bits='64' id='type-id-429'/>
+ <function-decl name='getextmntent' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-418'/>
+ <parameter type-id='type-id-429'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <class-decl name='zprop_get_cbdata' size-in-bits='640' is-struct='yes' visibility='default' id='type-id-430'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='cb_sources' type-id='type-id-1' visibility='default' filepath='../../include/libzfs.h' line='596' column='1'/>
+ <var-decl name='cb_sources' type-id='type-id-8' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='cb_columns' type-id='type-id-445' visibility='default' filepath='../../include/libzfs.h' line='597' column='1'/>
+ <var-decl name='cb_columns' type-id='type-id-431' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='cb_colwidths' type-id='type-id-446' visibility='default' filepath='../../include/libzfs.h' line='598' column='1'/>
+ <var-decl name='cb_colwidths' type-id='type-id-432' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='cb_scripted' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='599' column='1'/>
+ <var-decl name='cb_scripted' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='416'>
- <var-decl name='cb_literal' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='600' column='1'/>
+ <var-decl name='cb_literal' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='cb_first' type-id='type-id-6' visibility='default' filepath='../../include/libzfs.h' line='601' column='1'/>
+ <var-decl name='cb_first' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='cb_proplist' type-id='type-id-264' visibility='default' filepath='../../include/libzfs.h' line='602' column='1'/>
+ <var-decl name='cb_proplist' type-id='type-id-258' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='cb_type' type-id='type-id-26' visibility='default' filepath='../../include/libzfs.h' line='603' column='1'/>
+ <var-decl name='cb_type' type-id='type-id-13' visibility='default'/>
</data-member>
</class-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/libzfs.h' line='583' column='1' id='type-id-447'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-433'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='GET_COL_NONE' value='0'/>
<enumerator name='GET_COL_NAME' value='1'/>
<enumerator name='GET_COL_PROPERTY' value='2'/>
@@ -6698,651 +6301,508 @@
<enumerator name='GET_COL_RECVD' value='4'/>
<enumerator name='GET_COL_SOURCE' value='5'/>
</enum-decl>
- <typedef-decl name='zfs_get_column_t' type-id='type-id-447' filepath='../../include/libzfs.h' line='590' column='1' id='type-id-448'/>
+ <typedef-decl name='zfs_get_column_t' type-id='type-id-433' id='type-id-434'/>
- <array-type-def dimensions='1' type-id='type-id-448' size-in-bits='160' alignment-in-bits='32' id='type-id-445'>
- <subrange length='5' type-id='type-id-43' id='type-id-398'/>
+ <array-type-def dimensions='1' type-id='type-id-434' size-in-bits='160' alignment-in-bits='32' id='type-id-431'>
+ <subrange length='5' type-id='type-id-33' id='type-id-384'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-1' size-in-bits='192' id='type-id-446'>
- <subrange length='6' type-id='type-id-43' id='type-id-407'/>
+ <array-type-def dimensions='1' type-id='type-id-8' size-in-bits='192' id='type-id-432'>
+ <subrange length='6' type-id='type-id-33' id='type-id-393'/>
</array-type-def>
- <typedef-decl name='zprop_get_cbdata_t' type-id='type-id-444' filepath='../../include/libzfs.h' line='604' column='1' id='type-id-449'/>
- <pointer-type-def type-id='type-id-449' size-in-bits='64' id='type-id-450'/>
- <function-decl name='zprop_print_one_property' mangled-name='zprop_print_one_property' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1373' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_print_one_property'>
- <parameter type-id='type-id-89' name='name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1373' column='1'/>
- <parameter type-id='type-id-450' name='cbp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1373' column='1'/>
- <parameter type-id='type-id-89' name='propname' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1374' column='1'/>
- <parameter type-id='type-id-89' name='value' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1374' column='1'/>
- <parameter type-id='type-id-238' name='sourcetype' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1374' column='1'/>
- <parameter type-id='type-id-89' name='source' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1375' column='1'/>
- <parameter type-id='type-id-89' name='recvd_value' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1375' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <typedef-decl name='nvpair_t' type-id='type-id-136' filepath='../../include/sys/nvpair.h' line='82' column='1' id='type-id-451'/>
- <pointer-type-def type-id='type-id-451' size-in-bits='64' id='type-id-452'/>
- <function-decl name='zprop_parse_value' mangled-name='zprop_parse_value' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1590' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_parse_value'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1590' column='1'/>
- <parameter type-id='type-id-452' name='elem' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1590' column='1'/>
- <parameter type-id='type-id-1' name='prop' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1590' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1591' column='1'/>
- <parameter type-id='type-id-28' name='ret' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1591' column='1'/>
- <parameter type-id='type-id-92' name='svalp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1591' column='1'/>
- <parameter type-id='type-id-254' name='ivalp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1591' column='1'/>
- <parameter type-id='type-id-89' name='errbuf' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1592' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zprop_string_to_index' filepath='../../include/zfs_prop.h' line='122' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-110'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='zprop_get_cbdata_t' type-id='type-id-430' id='type-id-435'/>
+ <pointer-type-def type-id='type-id-435' size-in-bits='64' id='type-id-436'/>
+ <function-decl name='zprop_print_one_property' mangled-name='zprop_print_one_property' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_print_one_property'>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-436' name='cbp'/>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-84' name='value'/>
+ <parameter type-id='type-id-232' name='sourcetype'/>
+ <parameter type-id='type-id-84' name='source'/>
+ <parameter type-id='type-id-84' name='recvd_value'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zprop_values' filepath='../../include/zfs_prop.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zprop_string_to_index' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-102'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zprop_name_to_prop' filepath='../../include/zfs_prop.h' line='121' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zprop_values' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zprop_valid_for_type' filepath='../../include/zfs_prop.h' line='127' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-81'/>
- <parameter type-id='type-id-13'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zprop_name_to_prop' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zprop_width' filepath='../../include/zfs_prop.h' line='126' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-305'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-45'/>
+ <function-decl name='zprop_valid_for_type' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-76'/>
+ <parameter type-id='type-id-50'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zpool_prop_unsupported' filepath='../../include/sys/fs/zfs.h' line='332' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zprop_width' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-294'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-35'/>
</function-decl>
- <function-decl name='zprop_free_list' mangled-name='zprop_free_list' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1879' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_free_list'>
- <parameter type-id='type-id-264' name='pl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1879' column='1'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zpool_prop_unsupported' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zprop_expand_list' mangled-name='zprop_expand_list' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1917' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_expand_list'>
- <parameter type-id='type-id-23' name='hdl' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1917' column='1'/>
- <parameter type-id='type-id-265' name='plp' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1917' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1917' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zprop_free_list' mangled-name='zprop_free_list' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_free_list'>
+ <parameter type-id='type-id-258' name='pl'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <pointer-type-def type-id='type-id-453' size-in-bits='64' id='type-id-454'/>
- <function-decl name='zprop_iter_common' filepath='../../include/zfs_prop.h' line='120' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-454'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <typedef-decl name='zprop_func' type-id='type-id-454' filepath='../../include/sys/fs/zfs.h' line='287' column='1' id='type-id-455'/>
- <function-decl name='zprop_iter' mangled-name='zprop_iter' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1958' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_iter'>
- <parameter type-id='type-id-455' name='func' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1958' column='1'/>
- <parameter type-id='type-id-21' name='cb' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1958' column='1'/>
- <parameter type-id='type-id-6' name='show_all' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1958' column='1'/>
- <parameter type-id='type-id-6' name='ordered' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1958' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1959' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_version_userland' mangled-name='zfs_version_userland' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1968' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_version_userland'>
- <parameter type-id='type-id-29' name='version' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1968' column='1'/>
- <parameter type-id='type-id-1' name='len' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1968' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_version_print' mangled-name='zfs_version_print' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='1978' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_version_print'>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_version_kernel' filepath='../../include/libzfs.h' line='891' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='color_start' mangled-name='color_start' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='2057' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='color_start'>
- <parameter type-id='type-id-29' name='color' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='2057' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='color_end' mangled-name='color_end' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='2064' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='color_end'>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='printf_color' mangled-name='printf_color' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='2072' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='printf_color'>
- <parameter type-id='type-id-29' name='color' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='2072' column='1'/>
- <parameter type-id='type-id-29' name='format' filepath='/home/nabijaczleweli/store/code/zfs/lib/libzfs/libzfs_util.c' line='2072' column='1'/>
+ <pointer-type-def type-id='type-id-437' size-in-bits='64' id='type-id-438'/>
+ <function-decl name='zprop_iter_common' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-438'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <typedef-decl name='zprop_func' type-id='type-id-438' id='type-id-439'/>
+ <function-decl name='zprop_iter' mangled-name='zprop_iter' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_iter'>
+ <parameter type-id='type-id-439' name='func'/>
+ <parameter type-id='type-id-7' name='cb'/>
+ <parameter type-id='type-id-16' name='show_all'/>
+ <parameter type-id='type-id-16' name='ordered'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_version_userland' mangled-name='zfs_version_userland' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_version_userland'>
+ <parameter type-id='type-id-17' name='version'/>
+ <parameter type-id='type-id-8' name='len'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='zfs_version_print' mangled-name='zfs_version_print' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_version_print'>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_version_kernel' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='color_start' mangled-name='color_start' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='color_start'>
+ <parameter type-id='type-id-17' name='color'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='color_end' mangled-name='color_end' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='color_end'>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='printf_color' mangled-name='printf_color' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='printf_color'>
+ <parameter type-id='type-id-17' name='color'/>
+ <parameter type-id='type-id-17' name='format'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-453'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-437'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='os/linux/libzfs_mount_os.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zfs_parse_mount_options' mangled-name='zfs_parse_mount_options' filepath='os/linux/libzfs_mount_os.c' line='183' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_parse_mount_options'>
- <parameter type-id='type-id-29' name='mntopts' filepath='os/linux/libzfs_mount_os.c' line='183' column='1'/>
- <parameter type-id='type-id-110' name='mntflags' filepath='os/linux/libzfs_mount_os.c' line='183' column='1'/>
- <parameter type-id='type-id-110' name='zfsflags' filepath='os/linux/libzfs_mount_os.c' line='184' column='1'/>
- <parameter type-id='type-id-1' name='sloppy' filepath='os/linux/libzfs_mount_os.c' line='184' column='1'/>
- <parameter type-id='type-id-29' name='badopt' filepath='os/linux/libzfs_mount_os.c' line='184' column='1'/>
- <parameter type-id='type-id-29' name='mtabopt' filepath='os/linux/libzfs_mount_os.c' line='184' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_adjust_mount_options' mangled-name='zfs_adjust_mount_options' filepath='os/linux/libzfs_mount_os.c' line='273' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_adjust_mount_options'>
- <parameter type-id='type-id-98' name='zhp' filepath='os/linux/libzfs_mount_os.c' line='273' column='1'/>
- <parameter type-id='type-id-89' name='mntpoint' filepath='os/linux/libzfs_mount_os.c' line='273' column='1'/>
- <parameter type-id='type-id-29' name='mntopts' filepath='os/linux/libzfs_mount_os.c' line='274' column='1'/>
- <parameter type-id='type-id-29' name='mtabopt' filepath='os/linux/libzfs_mount_os.c' line='274' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='do_mount' mangled-name='do_mount' filepath='os/linux/libzfs_mount_os.c' line='323' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='do_mount'>
- <parameter type-id='type-id-98' name='zhp' filepath='os/linux/libzfs_mount_os.c' line='323' column='1'/>
- <parameter type-id='type-id-89' name='mntpt' filepath='os/linux/libzfs_mount_os.c' line='323' column='1'/>
- <parameter type-id='type-id-29' name='opts' filepath='os/linux/libzfs_mount_os.c' line='323' column='1'/>
- <parameter type-id='type-id-1' name='flags' filepath='os/linux/libzfs_mount_os.c' line='323' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='mount' filepath='/usr/include/x86_64-linux-gnu/sys/mount.h' line='138' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_parse_mount_options' mangled-name='zfs_parse_mount_options' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_parse_mount_options'>
+ <parameter type-id='type-id-17' name='mntopts'/>
+ <parameter type-id='type-id-102' name='mntflags'/>
+ <parameter type-id='type-id-102' name='zfsflags'/>
+ <parameter type-id='type-id-8' name='sloppy'/>
+ <parameter type-id='type-id-17' name='badopt'/>
+ <parameter type-id='type-id-17' name='mtabopt'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='umount2' filepath='/usr/include/x86_64-linux-gnu/sys/mount.h' line='146' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_adjust_mount_options' mangled-name='zfs_adjust_mount_options' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_adjust_mount_options'>
+ <parameter type-id='type-id-135' name='zhp'/>
+ <parameter type-id='type-id-84' name='mntpoint'/>
+ <parameter type-id='type-id-17' name='mntopts'/>
+ <parameter type-id='type-id-17' name='mtabopt'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_mount_delegation_check' mangled-name='zfs_mount_delegation_check' filepath='os/linux/libzfs_mount_os.c' line='410' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mount_delegation_check'>
- <return type-id='type-id-1'/>
+ <function-decl name='mount' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='geteuid' filepath='/usr/include/unistd.h' line='678' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-19'/>
+ <function-decl name='umount2' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zfs_mount_delegation_check' mangled-name='zfs_mount_delegation_check' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mount_delegation_check'>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='geteuid' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-5'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='os/linux/libzfs_pool_os.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zpool_relabel_disk' mangled-name='zpool_relabel_disk' filepath='os/linux/libzfs_pool_os.c' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_relabel_disk'>
- <parameter type-id='type-id-23' name='hdl' filepath='os/linux/libzfs_pool_os.c' line='61' column='1'/>
- <parameter type-id='type-id-89' name='path' filepath='os/linux/libzfs_pool_os.c' line='61' column='1'/>
- <parameter type-id='type-id-89' name='msg' filepath='os/linux/libzfs_pool_os.c' line='61' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='efi_use_whole_disk' filepath='../../include/sys/efi_partition.h' line='374' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fsync' filepath='/usr/include/unistd.h' line='954' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_label_disk' mangled-name='zpool_label_disk' filepath='os/linux/libzfs_pool_os.c' line='212' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_label_disk'>
- <parameter type-id='type-id-23' name='hdl' filepath='os/linux/libzfs_pool_os.c' line='212' column='1'/>
- <parameter type-id='type-id-24' name='zhp' filepath='os/linux/libzfs_pool_os.c' line='212' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='os/linux/libzfs_pool_os.c' line='212' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <class-decl name='dk_gpt' size-in-bits='1920' is-struct='yes' visibility='default' filepath='../../include/sys/efi_partition.h' line='316' column='1' id='type-id-456'>
+ <function-decl name='efi_use_whole_disk' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fsync' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_label_disk' mangled-name='zpool_label_disk' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_label_disk'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-11' name='zhp'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <class-decl name='dk_gpt' size-in-bits='1920' is-struct='yes' visibility='default' id='type-id-440'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='efi_version' type-id='type-id-146' visibility='default' filepath='../../include/sys/efi_partition.h' line='317' column='1'/>
+ <var-decl name='efi_version' type-id='type-id-140' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='efi_nparts' type-id='type-id-146' visibility='default' filepath='../../include/sys/efi_partition.h' line='318' column='1'/>
+ <var-decl name='efi_nparts' type-id='type-id-140' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='efi_part_size' type-id='type-id-146' visibility='default' filepath='../../include/sys/efi_partition.h' line='319' column='1'/>
+ <var-decl name='efi_part_size' type-id='type-id-140' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='96'>
- <var-decl name='efi_lbasize' type-id='type-id-146' visibility='default' filepath='../../include/sys/efi_partition.h' line='321' column='1'/>
+ <var-decl name='efi_lbasize' type-id='type-id-140' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='efi_last_lba' type-id='type-id-39' visibility='default' filepath='../../include/sys/efi_partition.h' line='322' column='1'/>
+ <var-decl name='efi_last_lba' type-id='type-id-29' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='efi_first_u_lba' type-id='type-id-39' visibility='default' filepath='../../include/sys/efi_partition.h' line='323' column='1'/>
+ <var-decl name='efi_first_u_lba' type-id='type-id-29' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='efi_last_u_lba' type-id='type-id-39' visibility='default' filepath='../../include/sys/efi_partition.h' line='324' column='1'/>
+ <var-decl name='efi_last_u_lba' type-id='type-id-29' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='efi_disk_uguid' type-id='type-id-457' visibility='default' filepath='../../include/sys/efi_partition.h' line='325' column='1'/>
+ <var-decl name='efi_disk_uguid' type-id='type-id-441' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='efi_flags' type-id='type-id-146' visibility='default' filepath='../../include/sys/efi_partition.h' line='326' column='1'/>
+ <var-decl name='efi_flags' type-id='type-id-140' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='480'>
- <var-decl name='efi_reserved1' type-id='type-id-146' visibility='default' filepath='../../include/sys/efi_partition.h' line='327' column='1'/>
+ <var-decl name='efi_reserved1' type-id='type-id-140' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='512'>
- <var-decl name='efi_altern_lba' type-id='type-id-39' visibility='default' filepath='../../include/sys/efi_partition.h' line='328' column='1'/>
+ <var-decl name='efi_altern_lba' type-id='type-id-29' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='efi_reserved' type-id='type-id-458' visibility='default' filepath='../../include/sys/efi_partition.h' line='329' column='1'/>
+ <var-decl name='efi_reserved' type-id='type-id-442' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='960'>
- <var-decl name='efi_parts' type-id='type-id-459' visibility='default' filepath='../../include/sys/efi_partition.h' line='330' column='1'/>
+ <var-decl name='efi_parts' type-id='type-id-443' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='uuid' size-in-bits='128' is-struct='yes' visibility='default' filepath='../../include/sys/uuid.h' line='68' column='1' id='type-id-457'>
+ <class-decl name='uuid' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-441'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='time_low' type-id='type-id-48' visibility='default' filepath='../../include/sys/uuid.h' line='69' column='1'/>
+ <var-decl name='time_low' type-id='type-id-38' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='32'>
- <var-decl name='time_mid' type-id='type-id-460' visibility='default' filepath='../../include/sys/uuid.h' line='70' column='1'/>
+ <var-decl name='time_mid' type-id='type-id-444' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='48'>
- <var-decl name='time_hi_and_version' type-id='type-id-460' visibility='default' filepath='../../include/sys/uuid.h' line='71' column='1'/>
+ <var-decl name='time_hi_and_version' type-id='type-id-444' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='clock_seq_hi_and_reserved' type-id='type-id-84' visibility='default' filepath='../../include/sys/uuid.h' line='72' column='1'/>
+ <var-decl name='clock_seq_hi_and_reserved' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='72'>
- <var-decl name='clock_seq_low' type-id='type-id-84' visibility='default' filepath='../../include/sys/uuid.h' line='73' column='1'/>
+ <var-decl name='clock_seq_low' type-id='type-id-79' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='80'>
- <var-decl name='node_addr' type-id='type-id-406' visibility='default' filepath='../../include/sys/uuid.h' line='74' column='1'/>
+ <var-decl name='node_addr' type-id='type-id-392' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='__uint16_t' type-id='type-id-158' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='39' column='1' id='type-id-461'/>
- <typedef-decl name='uint16_t' type-id='type-id-461' filepath='/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h' line='25' column='1' id='type-id-460'/>
+ <typedef-decl name='__uint16_t' type-id='type-id-152' id='type-id-445'/>
+ <typedef-decl name='uint16_t' type-id='type-id-445' id='type-id-444'/>
- <array-type-def dimensions='1' type-id='type-id-146' size-in-bits='384' id='type-id-458'>
- <subrange length='12' type-id='type-id-43' id='type-id-405'/>
+ <array-type-def dimensions='1' type-id='type-id-140' size-in-bits='384' id='type-id-442'>
+ <subrange length='12' type-id='type-id-33' id='type-id-391'/>
</array-type-def>
- <class-decl name='dk_part' size-in-bits='960' is-struct='yes' visibility='default' filepath='../../include/sys/efi_partition.h' line='301' column='1' id='type-id-462'>
+ <class-decl name='dk_part' size-in-bits='960' is-struct='yes' visibility='default' id='type-id-446'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='p_start' type-id='type-id-39' visibility='default' filepath='../../include/sys/efi_partition.h' line='302' column='1'/>
+ <var-decl name='p_start' type-id='type-id-29' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='p_size' type-id='type-id-39' visibility='default' filepath='../../include/sys/efi_partition.h' line='303' column='1'/>
+ <var-decl name='p_size' type-id='type-id-29' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='p_guid' type-id='type-id-457' visibility='default' filepath='../../include/sys/efi_partition.h' line='304' column='1'/>
+ <var-decl name='p_guid' type-id='type-id-441' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='p_tag' type-id='type-id-463' visibility='default' filepath='../../include/sys/efi_partition.h' line='305' column='1'/>
+ <var-decl name='p_tag' type-id='type-id-447' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='272'>
- <var-decl name='p_flag' type-id='type-id-463' visibility='default' filepath='../../include/sys/efi_partition.h' line='306' column='1'/>
+ <var-decl name='p_flag' type-id='type-id-447' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='p_name' type-id='type-id-464' visibility='default' filepath='../../include/sys/efi_partition.h' line='307' column='1'/>
+ <var-decl name='p_name' type-id='type-id-448' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='p_uguid' type-id='type-id-457' visibility='default' filepath='../../include/sys/efi_partition.h' line='308' column='1'/>
+ <var-decl name='p_uguid' type-id='type-id-441' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='p_resv' type-id='type-id-465' visibility='default' filepath='../../include/sys/efi_partition.h' line='309' column='1'/>
+ <var-decl name='p_resv' type-id='type-id-449' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='ushort_t' type-id='type-id-158' filepath='../../lib/libspl/include/sys/stdtypes.h' line='32' column='1' id='type-id-463'/>
+ <typedef-decl name='ushort_t' type-id='type-id-152' id='type-id-447'/>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='288' id='type-id-464'>
- <subrange length='36' type-id='type-id-43' id='type-id-466'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='288' id='type-id-448'>
+ <subrange length='36' type-id='type-id-33' id='type-id-450'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-146' size-in-bits='256' id='type-id-465'>
- <subrange length='8' type-id='type-id-43' id='type-id-404'/>
+ <array-type-def dimensions='1' type-id='type-id-140' size-in-bits='256' id='type-id-449'>
+ <subrange length='8' type-id='type-id-33' id='type-id-390'/>
</array-type-def>
- <array-type-def dimensions='1' type-id='type-id-462' size-in-bits='960' id='type-id-459'>
- <subrange length='1' type-id='type-id-43' id='type-id-166'/>
+ <array-type-def dimensions='1' type-id='type-id-446' size-in-bits='960' id='type-id-443'>
+ <subrange length='1' type-id='type-id-33' id='type-id-160'/>
</array-type-def>
- <pointer-type-def type-id='type-id-456' size-in-bits='64' id='type-id-467'/>
- <pointer-type-def type-id='type-id-467' size-in-bits='64' id='type-id-468'/>
- <function-decl name='efi_alloc_and_init' filepath='../../include/sys/efi_partition.h' line='366' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-19'/>
- <parameter type-id='type-id-468'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='rand' filepath='/usr/include/stdlib.h' line='453' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='efi_write' filepath='../../include/sys/efi_partition.h' line='368' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-467'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='efi_rescan' filepath='../../include/sys/efi_partition.h' line='369' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='efi_free' filepath='../../include/sys/efi_partition.h' line='370' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-467'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_append_partition' filepath='../../include/libzutil.h' line='96' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-45'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_label_disk_wait' filepath='../../include/libzutil.h' line='80' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-440' size-in-bits='64' id='type-id-451'/>
+ <pointer-type-def type-id='type-id-451' size-in-bits='64' id='type-id-452'/>
+ <function-decl name='efi_alloc_and_init' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-5'/>
+ <parameter type-id='type-id-452'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='rand' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='efi_write' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-451'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='efi_rescan' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='efi_free' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-451'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='efi_alloc_and_read' filepath='../../include/sys/efi_partition.h' line='367' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-468'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_append_partition' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-35'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zpool_label_disk_wait' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='efi_alloc_and_read' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-452'/>
+ <return type-id='type-id-8'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='os/linux/libzfs_sendrecv_os.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='fcntl' mangled-name='fcntl64' filepath='/usr/include/fcntl.h' line='151' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
+ <function-decl name='fcntl' mangled-name='fcntl64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
<parameter is-variadic='yes'/>
- <return type-id='type-id-1'/>
+ <return type-id='type-id-8'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='os/linux/libzfs_util_os.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zfs_ioctl' mangled-name='zfs_ioctl' filepath='os/linux/libzfs_util_os.c' line='49' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_ioctl'>
- <parameter type-id='type-id-23' name='hdl' filepath='os/linux/libzfs_util_os.c' line='49' column='1'/>
- <parameter type-id='type-id-1' name='request' filepath='os/linux/libzfs_util_os.c' line='49' column='1'/>
- <parameter type-id='type-id-221' name='zc' filepath='os/linux/libzfs_util_os.c' line='49' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='libzfs_error_init' mangled-name='libzfs_error_init' filepath='os/linux/libzfs_util_os.c' line='55' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_error_init'>
- <parameter type-id='type-id-1' name='error' filepath='os/linux/libzfs_util_os.c' line='55' column='1'/>
- <return type-id='type-id-89'/>
+ <typedef-decl name='zfs_cmd_t' type-id='type-id-108' id='type-id-453'/>
+ <pointer-type-def type-id='type-id-453' size-in-bits='64' id='type-id-454'/>
+ <function-decl name='zfs_ioctl' mangled-name='zfs_ioctl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_ioctl'>
+ <parameter type-id='type-id-10' name='hdl'/>
+ <parameter type-id='type-id-8' name='request'/>
+ <parameter type-id='type-id-454' name='zc'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='access' filepath='/usr/include/unistd.h' line='287' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='libzfs_error_init' mangled-name='libzfs_error_init' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='libzfs_error_init'>
+ <parameter type-id='type-id-8' name='error'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <pointer-type-def type-id='type-id-439' size-in-bits='64' id='type-id-469'/>
- <function-decl name='clock_gettime' filepath='/usr/include/time.h' line='219' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-469'/>
- <return type-id='type-id-1'/>
+ <function-decl name='access' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='usleep' filepath='/usr/include/unistd.h' line='460' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-425' size-in-bits='64' id='type-id-455'/>
+ <function-decl name='clock_gettime' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-455'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='sched_yield' filepath='/usr/include/sched.h' line='68' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-1'/>
+ <function-decl name='usleep' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <typedef-decl name='differ_info_t' type-id='type-id-276' filepath='../../include/libzfs_impl.h' line='239' column='1' id='type-id-470'/>
- <pointer-type-def type-id='type-id-470' size-in-bits='64' id='type-id-471'/>
- <function-decl name='find_shares_object' mangled-name='find_shares_object' filepath='os/linux/libzfs_util_os.c' line='169' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='find_shares_object'>
- <parameter type-id='type-id-471' name='di' filepath='os/linux/libzfs_util_os.c' line='169' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='sched_yield' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-8'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/icp/algs/sha2/sha2.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <class-decl name='__anonymous_struct__' size-in-bits='1728' is-struct='yes' is-anonymous='yes' naming-typedef-id='type-id-472' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='69' column='1' id='type-id-473'>
- <data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='algotype' type-id='type-id-48' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='70' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='state' type-id='type-id-474' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='76' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='576'>
- <var-decl name='count' type-id='type-id-475' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='81' column='1'/>
- </data-member>
- <data-member access='public' layout-offset-in-bits='704'>
- <var-decl name='buf_un' type-id='type-id-476' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='86' column='1'/>
- </data-member>
- </class-decl>
- <union-decl name='__anonymous_union__' size-in-bits='512' is-anonymous='yes' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='73' column='1' id='type-id-474'>
- <data-member access='private'>
- <var-decl name='s32' type-id='type-id-477' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='74' column='1'/>
- </data-member>
- <data-member access='private'>
- <var-decl name='s64' type-id='type-id-478' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='75' column='1'/>
- </data-member>
- </union-decl>
-
- <array-type-def dimensions='1' type-id='type-id-48' size-in-bits='256' id='type-id-477'>
- <subrange length='8' type-id='type-id-43' id='type-id-404'/>
-
- </array-type-def>
-
- <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='512' id='type-id-478'>
- <subrange length='8' type-id='type-id-43' id='type-id-404'/>
-
- </array-type-def>
- <union-decl name='__anonymous_union__' size-in-bits='128' is-anonymous='yes' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='78' column='1' id='type-id-475'>
- <data-member access='private'>
- <var-decl name='c32' type-id='type-id-479' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='79' column='1'/>
- </data-member>
- <data-member access='private'>
- <var-decl name='c64' type-id='type-id-129' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='80' column='1'/>
- </data-member>
- </union-decl>
-
- <array-type-def dimensions='1' type-id='type-id-48' size-in-bits='64' id='type-id-479'>
- <subrange length='2' type-id='type-id-43' id='type-id-72'/>
-
- </array-type-def>
- <union-decl name='__anonymous_union__' size-in-bits='1024' is-anonymous='yes' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='82' column='1' id='type-id-476'>
- <data-member access='private'>
- <var-decl name='buf8' type-id='type-id-480' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='83' column='1'/>
- </data-member>
- <data-member access='private'>
- <var-decl name='buf32' type-id='type-id-481' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='84' column='1'/>
- </data-member>
- <data-member access='private'>
- <var-decl name='buf64' type-id='type-id-482' visibility='default' filepath='../../lib/libspl/include/sys/sha2.h' line='85' column='1'/>
- </data-member>
- </union-decl>
-
- <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='1024' id='type-id-480'>
- <subrange length='128' type-id='type-id-43' id='type-id-483'/>
-
- </array-type-def>
-
- <array-type-def dimensions='1' type-id='type-id-48' size-in-bits='1024' id='type-id-481'>
- <subrange length='32' type-id='type-id-43' id='type-id-214'/>
-
- </array-type-def>
-
- <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='1024' id='type-id-482'>
- <subrange length='16' type-id='type-id-43' id='type-id-175'/>
-
- </array-type-def>
- <typedef-decl name='SHA2_CTX' type-id='type-id-473' filepath='../../lib/libspl/include/sys/sha2.h' line='87' column='1' id='type-id-472'/>
- <pointer-type-def type-id='type-id-472' size-in-bits='64' id='type-id-484'/>
- <function-decl name='SHA2Init' mangled-name='SHA2Init' filepath='../../module/icp/algs/sha2/sha2.c' line='674' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='SHA2Init'>
- <parameter type-id='type-id-32' name='mech' filepath='../../module/icp/algs/sha2/sha2.c' line='674' column='1'/>
- <parameter type-id='type-id-484' name='ctx' filepath='../../module/icp/algs/sha2/sha2.c' line='674' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <typedef-decl name='SHA256_CTX' type-id='type-id-472' filepath='../../lib/libspl/include/sys/sha2.h' line='89' column='1' id='type-id-485'/>
- <pointer-type-def type-id='type-id-485' size-in-bits='64' id='type-id-486'/>
- <function-decl name='SHA256Init' mangled-name='SHA256Init' filepath='../../module/icp/algs/sha2/sha2.c' line='751' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='SHA256Init'>
- <parameter type-id='type-id-486' name='ctx' filepath='../../module/icp/algs/sha2/sha2.c' line='751' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <typedef-decl name='SHA384_CTX' type-id='type-id-472' filepath='../../lib/libspl/include/sys/sha2.h' line='90' column='1' id='type-id-487'/>
- <pointer-type-def type-id='type-id-487' size-in-bits='64' id='type-id-488'/>
- <function-decl name='SHA384Init' mangled-name='SHA384Init' filepath='../../module/icp/algs/sha2/sha2.c' line='757' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='SHA384Init'>
- <parameter type-id='type-id-488' name='ctx' filepath='../../module/icp/algs/sha2/sha2.c' line='757' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <typedef-decl name='SHA512_CTX' type-id='type-id-472' filepath='../../lib/libspl/include/sys/sha2.h' line='91' column='1' id='type-id-489'/>
- <pointer-type-def type-id='type-id-489' size-in-bits='64' id='type-id-490'/>
- <function-decl name='SHA512Init' mangled-name='SHA512Init' filepath='../../module/icp/algs/sha2/sha2.c' line='763' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='SHA512Init'>
- <parameter type-id='type-id-490' name='ctx' filepath='../../module/icp/algs/sha2/sha2.c' line='763' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='SHA2Update' mangled-name='SHA2Update' filepath='../../module/icp/algs/sha2/sha2.c' line='782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='SHA2Update'>
- <parameter type-id='type-id-484' name='ctx' filepath='../../module/icp/algs/sha2/sha2.c' line='782' column='1'/>
- <parameter type-id='type-id-21' name='inptr' filepath='../../module/icp/algs/sha2/sha2.c' line='782' column='1'/>
- <parameter type-id='type-id-38' name='input_len' filepath='../../module/icp/algs/sha2/sha2.c' line='782' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='htonl' filepath='../../lib/libspl/include/os/linux/sys/byteorder.h' line='79' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-19'/>
- </function-decl>
- <function-decl name='SHA2Final' mangled-name='SHA2Final' filepath='../../module/icp/algs/sha2/sha2.c' line='904' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='SHA2Final'>
- <parameter type-id='type-id-21' name='digest' filepath='../../module/icp/algs/sha2/sha2.c' line='904' column='1'/>
- <parameter type-id='type-id-484' name='ctx' filepath='../../module/icp/algs/sha2/sha2.c' line='904' column='1'/>
- <return type-id='type-id-20'/>
+ <function-decl name='htonl' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-5'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/cityhash.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='cityhash4' mangled-name='cityhash4' filepath='../../module/zcommon/cityhash.c' line='53' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='cityhash4'>
- <parameter type-id='type-id-32' name='w1' filepath='../../module/zcommon/cityhash.c' line='53' column='1'/>
- <parameter type-id='type-id-32' name='w2' filepath='../../module/zcommon/cityhash.c' line='53' column='1'/>
- <parameter type-id='type-id-32' name='w3' filepath='../../module/zcommon/cityhash.c' line='53' column='1'/>
- <parameter type-id='type-id-32' name='w4' filepath='../../module/zcommon/cityhash.c' line='53' column='1'/>
- <return type-id='type-id-32'/>
+ <function-decl name='cityhash4' mangled-name='cityhash4' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='cityhash4'>
+ <parameter type-id='type-id-22' name='w1'/>
+ <parameter type-id='type-id-22' name='w2'/>
+ <parameter type-id='type-id-22' name='w3'/>
+ <parameter type-id='type-id-22' name='w4'/>
+ <return type-id='type-id-22'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfeature_common.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <var-decl name='zfeature_checks_disable' type-id='type-id-6' mangled-name='zfeature_checks_disable' visibility='default' filepath='../../module/zcommon/zfeature_common.c' line='49' column='1' elf-symbol-id='zfeature_checks_disable'/>
- <class-decl name='zfeature_info' size-in-bits='448' is-struct='yes' visibility='default' filepath='../../include/zfeature_common.h' line='103' column='1' id='type-id-491'>
+ <var-decl name='zfeature_checks_disable' type-id='type-id-16' mangled-name='zfeature_checks_disable' visibility='default' elf-symbol-id='zfeature_checks_disable'/>
+ <class-decl name='zfeature_info' size-in-bits='448' is-struct='yes' visibility='default' id='type-id-456'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='fi_feature' type-id='type-id-492' visibility='default' filepath='../../include/zfeature_common.h' line='104' column='1'/>
+ <var-decl name='fi_feature' type-id='type-id-457' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='fi_uname' type-id='type-id-89' visibility='default' filepath='../../include/zfeature_common.h' line='105' column='1'/>
+ <var-decl name='fi_uname' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='fi_guid' type-id='type-id-89' visibility='default' filepath='../../include/zfeature_common.h' line='106' column='1'/>
+ <var-decl name='fi_guid' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='fi_desc' type-id='type-id-89' visibility='default' filepath='../../include/zfeature_common.h' line='107' column='1'/>
+ <var-decl name='fi_desc' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='fi_flags' type-id='type-id-493' visibility='default' filepath='../../include/zfeature_common.h' line='108' column='1'/>
+ <var-decl name='fi_flags' type-id='type-id-458' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='288'>
- <var-decl name='fi_zfs_mod_supported' type-id='type-id-6' visibility='default' filepath='../../include/zfeature_common.h' line='109' column='1'/>
+ <var-decl name='fi_zfs_mod_supported' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='fi_type' type-id='type-id-494' visibility='default' filepath='../../include/zfeature_common.h' line='110' column='1'/>
+ <var-decl name='fi_type' type-id='type-id-459' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='fi_depends' type-id='type-id-495' visibility='default' filepath='../../include/zfeature_common.h' line='112' column='1'/>
+ <var-decl name='fi_depends' type-id='type-id-460' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='spa_feature_t' type-id='type-id-341' filepath='../../include/zfeature_common.h' line='79' column='1' id='type-id-492'/>
- <enum-decl name='zfeature_flags' filepath='../../include/zfeature_common.h' line='83' column='1' id='type-id-496'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='spa_feature_t' type-id='type-id-328' id='type-id-457'/>
+ <enum-decl name='zfeature_flags' id='type-id-461'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZFEATURE_FLAG_READONLY_COMPAT' value='1'/>
<enumerator name='ZFEATURE_FLAG_MOS' value='2'/>
<enumerator name='ZFEATURE_FLAG_ACTIVATE_ON_ENABLE' value='4'/>
<enumerator name='ZFEATURE_FLAG_PER_DATASET' value='8'/>
</enum-decl>
- <typedef-decl name='zfeature_flags_t' type-id='type-id-496' filepath='../../include/zfeature_common.h' line='95' column='1' id='type-id-493'/>
- <enum-decl name='zfeature_type' filepath='../../include/zfeature_common.h' line='97' column='1' id='type-id-497'>
- <underlying-type type-id='type-id-7'/>
+ <typedef-decl name='zfeature_flags_t' type-id='type-id-461' id='type-id-458'/>
+ <enum-decl name='zfeature_type' id='type-id-462'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZFEATURE_TYPE_BOOLEAN' value='0'/>
<enumerator name='ZFEATURE_TYPE_UINT64_ARRAY' value='1'/>
<enumerator name='ZFEATURE_NUM_TYPES' value='2'/>
</enum-decl>
- <typedef-decl name='zfeature_type_t' type-id='type-id-497' filepath='../../include/zfeature_common.h' line='101' column='1' id='type-id-494'/>
- <qualified-type-def type-id='type-id-492' const='yes' id='type-id-498'/>
- <pointer-type-def type-id='type-id-498' size-in-bits='64' id='type-id-495'/>
- <typedef-decl name='zfeature_info_t' type-id='type-id-491' filepath='../../include/zfeature_common.h' line='113' column='1' id='type-id-499'/>
+ <typedef-decl name='zfeature_type_t' type-id='type-id-462' id='type-id-459'/>
+ <qualified-type-def type-id='type-id-457' const='yes' id='type-id-463'/>
+ <pointer-type-def type-id='type-id-463' size-in-bits='64' id='type-id-460'/>
+ <typedef-decl name='zfeature_info_t' type-id='type-id-456' id='type-id-464'/>
- <array-type-def dimensions='1' type-id='type-id-499' size-in-bits='15232' id='type-id-500'>
- <subrange length='34' type-id='type-id-43' id='type-id-409'/>
+ <array-type-def dimensions='1' type-id='type-id-464' size-in-bits='15232' id='type-id-465'>
+ <subrange length='34' type-id='type-id-33' id='type-id-395'/>
</array-type-def>
- <var-decl name='spa_feature_table' type-id='type-id-500' mangled-name='spa_feature_table' visibility='default' filepath='../../module/zcommon/zfeature_common.c' line='51' column='1' elf-symbol-id='spa_feature_table'/>
- <function-decl name='zfeature_is_valid_guid' mangled-name='zfeature_is_valid_guid' filepath='../../module/zcommon/zfeature_common.c' line='74' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_is_valid_guid'>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zfeature_common.c' line='74' column='1'/>
- <return type-id='type-id-6'/>
- </function-decl>
- <function-decl name='zfeature_is_supported' mangled-name='zfeature_is_supported' filepath='../../module/zcommon/zfeature_common.c' line='96' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_is_supported'>
- <parameter type-id='type-id-89' name='guid' filepath='../../module/zcommon/zfeature_common.c' line='96' column='1'/>
- <return type-id='type-id-6'/>
- </function-decl>
- <pointer-type-def type-id='type-id-492' size-in-bits='64' id='type-id-501'/>
- <function-decl name='zfeature_lookup_guid' mangled-name='zfeature_lookup_guid' filepath='../../module/zcommon/zfeature_common.c' line='112' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_lookup_guid'>
- <parameter type-id='type-id-89' name='guid' filepath='../../module/zcommon/zfeature_common.c' line='112' column='1'/>
- <parameter type-id='type-id-501' name='res' filepath='../../module/zcommon/zfeature_common.c' line='112' column='1'/>
- <return type-id='type-id-1'/>
+ <var-decl name='spa_feature_table' type-id='type-id-465' mangled-name='spa_feature_table' visibility='default' elf-symbol-id='spa_feature_table'/>
+ <function-decl name='zfeature_is_valid_guid' mangled-name='zfeature_is_valid_guid' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_is_valid_guid'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfeature_is_supported' mangled-name='zfeature_is_supported' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_is_supported'>
+ <parameter type-id='type-id-84' name='guid'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <pointer-type-def type-id='type-id-457' size-in-bits='64' id='type-id-466'/>
+ <function-decl name='zfeature_lookup_guid' mangled-name='zfeature_lookup_guid' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_lookup_guid'>
+ <parameter type-id='type-id-84' name='guid'/>
+ <parameter type-id='type-id-466' name='res'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfeature_lookup_name' mangled-name='zfeature_lookup_name' filepath='../../module/zcommon/zfeature_common.c' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_lookup_name'>
- <parameter type-id='type-id-89' name='guid' filepath='../../module/zcommon/zfeature_common.c' line='112' column='1'/>
- <parameter type-id='type-id-501' name='res' filepath='../../module/zcommon/zfeature_common.c' line='112' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfeature_lookup_name' mangled-name='zfeature_lookup_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_lookup_name'>
+ <parameter type-id='type-id-84' name='guid'/>
+ <parameter type-id='type-id-466' name='res'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfeature_depends_on' mangled-name='zfeature_depends_on' filepath='../../module/zcommon/zfeature_common.c' line='146' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_depends_on'>
- <parameter type-id='type-id-492' name='fid' filepath='../../module/zcommon/zfeature_common.c' line='146' column='1'/>
- <parameter type-id='type-id-492' name='check' filepath='../../module/zcommon/zfeature_common.c' line='146' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfeature_depends_on' mangled-name='zfeature_depends_on' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfeature_depends_on'>
+ <parameter type-id='type-id-457' name='fid'/>
+ <parameter type-id='type-id-457' name='check'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_mod_supported' mangled-name='zfs_mod_supported' filepath='../../module/zcommon/zfeature_common.c' line='187' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mod_supported'>
- <parameter type-id='type-id-89' name='scope' filepath='../../module/zcommon/zfeature_common.c' line='187' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zfeature_common.c' line='187' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_mod_supported' mangled-name='zfs_mod_supported' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_mod_supported'>
+ <parameter type-id='type-id-84' name='scope'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_comutil.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <array-type-def dimensions='1' type-id='type-id-89' size-in-bits='2624' id='type-id-502'>
- <subrange length='41' type-id='type-id-43' id='type-id-503'/>
+ <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='2624' id='type-id-467'>
+ <subrange length='41' type-id='type-id-33' id='type-id-468'/>
</array-type-def>
- <var-decl name='zfs_history_event_names' type-id='type-id-502' mangled-name='zfs_history_event_names' visibility='default' filepath='../../module/zcommon/zfs_comutil.c' line='194' column='1' elf-symbol-id='zfs_history_event_names'/>
- <function-decl name='zfs_allocatable_devs' mangled-name='zfs_allocatable_devs' filepath='../../module/zcommon/zfs_comutil.c' line='46' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_allocatable_devs'>
- <parameter type-id='type-id-28' name='nv' filepath='../../module/zcommon/zfs_comutil.c' line='46' column='1'/>
+ <var-decl name='zfs_history_event_names' type-id='type-id-467' mangled-name='zfs_history_event_names' visibility='default' elf-symbol-id='zfs_history_event_names'/>
+ <function-decl name='zfs_allocatable_devs' mangled-name='zfs_allocatable_devs' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_allocatable_devs'>
+ <parameter type-id='type-id-15' name='nv'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_special_devs' mangled-name='zfs_special_devs' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_special_devs'>
+ <parameter type-id='type-id-15' name='nv'/>
+ <parameter type-id='type-id-17' name='type'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <typedef-decl name='zpool_load_policy_t' type-id='type-id-330' id='type-id-469'/>
+ <pointer-type-def type-id='type-id-469' size-in-bits='64' id='type-id-470'/>
+ <function-decl name='zpool_get_load_policy' mangled-name='zpool_get_load_policy' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_load_policy'>
+ <parameter type-id='type-id-15' name='nvl'/>
+ <parameter type-id='type-id-470' name='zlpp'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zfs_special_devs' mangled-name='zfs_special_devs' filepath='../../module/zcommon/zfs_comutil.c' line='71' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_special_devs'>
- <parameter type-id='type-id-28' name='nv' filepath='../../module/zcommon/zfs_comutil.c' line='71' column='1'/>
- <parameter type-id='type-id-29' name='type' filepath='../../module/zcommon/zfs_comutil.c' line='71' column='1'/>
- <return type-id='type-id-6'/>
- </function-decl>
- <typedef-decl name='zpool_load_policy_t' type-id='type-id-344' filepath='../../include/sys/fs/zfs.h' line='596' column='1' id='type-id-504'/>
- <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-505'/>
- <function-decl name='zpool_get_load_policy' mangled-name='zpool_get_load_policy' filepath='../../module/zcommon/zfs_comutil.c' line='99' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_get_load_policy'>
- <parameter type-id='type-id-28' name='nvl' filepath='../../module/zcommon/zfs_comutil.c' line='99' column='1'/>
- <parameter type-id='type-id-505' name='zlpp' filepath='../../module/zcommon/zfs_comutil.c' line='99' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='nvpair_value_uint32' filepath='../../include/sys/nvpair.h' line='254' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-141'/>
- <parameter type-id='type-id-250'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nvpair_value_uint32' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-133'/>
+ <parameter type-id='type-id-244'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_zpl_version_map' mangled-name='zfs_zpl_version_map' filepath='../../module/zcommon/zfs_comutil.c' line='159' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_zpl_version_map'>
- <parameter type-id='type-id-1' name='spa_version' filepath='../../module/zcommon/zfs_comutil.c' line='159' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_zpl_version_map' mangled-name='zfs_zpl_version_map' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_zpl_version_map'>
+ <parameter type-id='type-id-8' name='spa_version'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_spa_version_map' mangled-name='zfs_spa_version_map' filepath='../../module/zcommon/zfs_comutil.c' line='177' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_spa_version_map'>
- <parameter type-id='type-id-1' name='spa_version' filepath='../../module/zcommon/zfs_comutil.c' line='159' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_spa_version_map' mangled-name='zfs_spa_version_map' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_spa_version_map'>
+ <parameter type-id='type-id-8' name='spa_version'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_dataset_name_hidden' mangled-name='zfs_dataset_name_hidden' filepath='../../module/zcommon/zfs_comutil.c' line='239' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_dataset_name_hidden'>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zfs_comutil.c' line='239' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_dataset_name_hidden' mangled-name='zfs_dataset_name_hidden' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_dataset_name_hidden'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_deleg.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <class-decl name='zfs_deleg_perm_tab' size-in-bits='128' is-struct='yes' visibility='default' filepath='../../include/zfs_deleg.h' line='83' column='1' id='type-id-506'>
+ <class-decl name='zfs_deleg_perm_tab' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-471'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='z_perm' type-id='type-id-29' visibility='default' filepath='../../include/zfs_deleg.h' line='84' column='1'/>
+ <var-decl name='z_perm' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='z_note' type-id='type-id-507' visibility='default' filepath='../../include/zfs_deleg.h' line='85' column='1'/>
+ <var-decl name='z_note' type-id='type-id-472' visibility='default'/>
</data-member>
</class-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/zfs_deleg.h' line='48' column='1' id='type-id-508'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-473'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZFS_DELEG_NOTE_CREATE' value='0'/>
<enumerator name='ZFS_DELEG_NOTE_DESTROY' value='1'/>
<enumerator name='ZFS_DELEG_NOTE_SNAPSHOT' value='2'/>
@@ -7376,34 +6836,34 @@
<enumerator name='ZFS_DELEG_NOTE_PROJECTOBJQUOTA' value='30'/>
<enumerator name='ZFS_DELEG_NOTE_NONE' value='31'/>
</enum-decl>
- <typedef-decl name='zfs_deleg_note_t' type-id='type-id-508' filepath='../../include/zfs_deleg.h' line='81' column='1' id='type-id-507'/>
- <typedef-decl name='zfs_deleg_perm_tab_t' type-id='type-id-506' filepath='../../include/zfs_deleg.h' line='86' column='1' id='type-id-509'/>
+ <typedef-decl name='zfs_deleg_note_t' type-id='type-id-473' id='type-id-472'/>
+ <typedef-decl name='zfs_deleg_perm_tab_t' type-id='type-id-471' id='type-id-474'/>
- <array-type-def dimensions='1' type-id='type-id-509' size-in-bits='4096' id='type-id-510'>
- <subrange length='32' type-id='type-id-43' id='type-id-214'/>
+ <array-type-def dimensions='1' type-id='type-id-474' size-in-bits='4096' id='type-id-475'>
+ <subrange length='32' type-id='type-id-33' id='type-id-208'/>
</array-type-def>
- <var-decl name='zfs_deleg_perm_tab' type-id='type-id-510' mangled-name='zfs_deleg_perm_tab' visibility='default' filepath='../../module/zcommon/zfs_deleg.c' line='45' column='1' elf-symbol-id='zfs_deleg_perm_tab'/>
- <function-decl name='zfs_deleg_canonicalize_perm' mangled-name='zfs_deleg_canonicalize_perm' filepath='../../module/zcommon/zfs_deleg.c' line='90' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_deleg_canonicalize_perm'>
- <parameter type-id='type-id-89' name='perm' filepath='../../module/zcommon/zfs_deleg.c' line='90' column='1'/>
- <return type-id='type-id-89'/>
+ <var-decl name='zfs_deleg_perm_tab' type-id='type-id-475' mangled-name='zfs_deleg_perm_tab' visibility='default' elf-symbol-id='zfs_deleg_perm_tab'/>
+ <function-decl name='zfs_deleg_canonicalize_perm' mangled-name='zfs_deleg_canonicalize_perm' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_deleg_canonicalize_perm'>
+ <parameter type-id='type-id-84' name='perm'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zfs_prop_delegatable' filepath='../../include/zfs_prop.h' line='92' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-8'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zfs_prop_delegatable' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-85'/>
+ <return type-id='type-id-50'/>
</function-decl>
- <function-decl name='zfs_deleg_verify_nvlist' mangled-name='zfs_deleg_verify_nvlist' filepath='../../module/zcommon/zfs_deleg.c' line='157' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_deleg_verify_nvlist'>
- <parameter type-id='type-id-28' name='nvp' filepath='../../module/zcommon/zfs_deleg.c' line='157' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zfs_deleg_verify_nvlist' mangled-name='zfs_deleg_verify_nvlist' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_deleg_verify_nvlist'>
+ <parameter type-id='type-id-15' name='nvp'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='permset_namecheck' filepath='../../include/zfs_namecheck.h' line='65' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-219'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <function-decl name='permset_namecheck' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-213'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/fs/zfs.h' line='340' column='1' id='type-id-511'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-476'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZFS_DELEG_WHO_UNKNOWN' value='0'/>
<enumerator name='ZFS_DELEG_USER' value='117'/>
<enumerator name='ZFS_DELEG_USER_SETS' value='85'/>
@@ -7416,924 +6876,929 @@
<enumerator name='ZFS_DELEG_NAMED_SET' value='115'/>
<enumerator name='ZFS_DELEG_NAMED_SET_SETS' value='83'/>
</enum-decl>
- <typedef-decl name='zfs_deleg_who_type_t' type-id='type-id-511' filepath='../../include/sys/fs/zfs.h' line='352' column='1' id='type-id-512'/>
- <function-decl name='zfs_deleg_whokey' mangled-name='zfs_deleg_whokey' filepath='../../module/zcommon/zfs_deleg.c' line='211' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_deleg_whokey'>
- <parameter type-id='type-id-29' name='attr' filepath='../../module/zcommon/zfs_deleg.c' line='211' column='1'/>
- <parameter type-id='type-id-512' name='type' filepath='../../module/zcommon/zfs_deleg.c' line='211' column='1'/>
- <parameter type-id='type-id-42' name='inheritchr' filepath='../../module/zcommon/zfs_deleg.c' line='212' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='../../module/zcommon/zfs_deleg.c' line='212' column='1'/>
- <return type-id='type-id-20'/>
+ <typedef-decl name='zfs_deleg_who_type_t' type-id='type-id-476' id='type-id-477'/>
+ <function-decl name='zfs_deleg_whokey' mangled-name='zfs_deleg_whokey' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_deleg_whokey'>
+ <parameter type-id='type-id-17' name='attr'/>
+ <parameter type-id='type-id-477' name='type'/>
+ <parameter type-id='type-id-32' name='inheritchr'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-6'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_fletcher.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <class-decl name='zio_abd_checksum_func' size-in-bits='192' is-struct='yes' visibility='default' filepath='../../include/sys/zio_checksum.h' line='77' column='1' id='type-id-513'>
+ <class-decl name='zio_abd_checksum_func' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-478'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='acf_init' type-id='type-id-514' visibility='default' filepath='../../include/sys/zio_checksum.h' line='78' column='1'/>
+ <var-decl name='acf_init' type-id='type-id-479' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='acf_fini' type-id='type-id-515' visibility='default' filepath='../../include/sys/zio_checksum.h' line='79' column='1'/>
+ <var-decl name='acf_fini' type-id='type-id-480' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='acf_iter' type-id='type-id-516' visibility='default' filepath='../../include/sys/zio_checksum.h' line='80' column='1'/>
+ <var-decl name='acf_iter' type-id='type-id-481' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='zio_abd_checksum_data' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/sys/zio_checksum.h' line='66' column='1' id='type-id-517'>
+ <class-decl name='zio_abd_checksum_data' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-482'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='acd_byteorder' type-id='type-id-518' visibility='default' filepath='../../include/sys/zio_checksum.h' line='67' column='1'/>
+ <var-decl name='acd_byteorder' type-id='type-id-483' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='acd_ctx' type-id='type-id-519' visibility='default' filepath='../../include/sys/zio_checksum.h' line='68' column='1'/>
+ <var-decl name='acd_ctx' type-id='type-id-484' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='acd_zcp' type-id='type-id-520' visibility='default' filepath='../../include/sys/zio_checksum.h' line='69' column='1'/>
+ <var-decl name='acd_zcp' type-id='type-id-485' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='acd_private' type-id='type-id-21' visibility='default' filepath='../../include/sys/zio_checksum.h' line='70' column='1'/>
+ <var-decl name='acd_private' type-id='type-id-7' visibility='default'/>
</data-member>
</class-decl>
- <enum-decl name='__anonymous_enum__' is-anonymous='yes' filepath='../../include/sys/zio_checksum.h' line='61' column='1' id='type-id-521'>
- <underlying-type type-id='type-id-7'/>
+ <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-486'>
+ <underlying-type type-id='type-id-49'/>
<enumerator name='ZIO_CHECKSUM_NATIVE' value='0'/>
<enumerator name='ZIO_CHECKSUM_BYTESWAP' value='1'/>
</enum-decl>
- <typedef-decl name='zio_byteorder_t' type-id='type-id-521' filepath='../../include/sys/zio_checksum.h' line='64' column='1' id='type-id-518'/>
- <union-decl name='fletcher_4_ctx' size-in-bits='2048' visibility='default' filepath='../../include/zfs_fletcher.h' line='90' column='1' id='type-id-522'>
+ <typedef-decl name='zio_byteorder_t' type-id='type-id-486' id='type-id-483'/>
+ <union-decl name='fletcher_4_ctx' size-in-bits='2048' visibility='default' id='type-id-487'>
<data-member access='private'>
- <var-decl name='scalar' type-id='type-id-394' visibility='default' filepath='../../include/zfs_fletcher.h' line='91' column='1'/>
+ <var-decl name='scalar' type-id='type-id-380' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='superscalar' type-id='type-id-523' visibility='default' filepath='../../include/zfs_fletcher.h' line='92' column='1'/>
+ <var-decl name='superscalar' type-id='type-id-488' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='sse' type-id='type-id-524' visibility='default' filepath='../../include/zfs_fletcher.h' line='95' column='1'/>
+ <var-decl name='sse' type-id='type-id-489' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='avx' type-id='type-id-525' visibility='default' filepath='../../include/zfs_fletcher.h' line='98' column='1'/>
+ <var-decl name='avx' type-id='type-id-490' visibility='default'/>
</data-member>
<data-member access='private'>
- <var-decl name='avx512' type-id='type-id-526' visibility='default' filepath='../../include/zfs_fletcher.h' line='101' column='1'/>
+ <var-decl name='avx512' type-id='type-id-491' visibility='default'/>
</data-member>
</union-decl>
- <class-decl name='zfs_fletcher_superscalar' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/zfs_fletcher.h' line='69' column='1' id='type-id-527'>
+ <class-decl name='zfs_fletcher_superscalar' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-492'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='v' type-id='type-id-373' visibility='default' filepath='../../include/zfs_fletcher.h' line='70' column='1'/>
+ <var-decl name='v' type-id='type-id-359' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zfs_fletcher_superscalar_t' type-id='type-id-527' filepath='../../include/zfs_fletcher.h' line='71' column='1' id='type-id-528'/>
+ <typedef-decl name='zfs_fletcher_superscalar_t' type-id='type-id-492' id='type-id-493'/>
- <array-type-def dimensions='1' type-id='type-id-528' size-in-bits='1024' id='type-id-523'>
- <subrange length='4' type-id='type-id-43' id='type-id-225'/>
+ <array-type-def dimensions='1' type-id='type-id-493' size-in-bits='1024' id='type-id-488'>
+ <subrange length='4' type-id='type-id-33' id='type-id-217'/>
</array-type-def>
- <class-decl name='zfs_fletcher_sse' size-in-bits='128' is-struct='yes' visibility='default' filepath='../../include/zfs_fletcher.h' line='73' column='1' id='type-id-529'>
+ <class-decl name='zfs_fletcher_sse' size-in-bits='128' is-struct='yes' visibility='default' id='type-id-494'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='v' type-id='type-id-129' visibility='default' filepath='../../include/zfs_fletcher.h' line='74' column='1'/>
+ <var-decl name='v' type-id='type-id-121' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zfs_fletcher_sse_t' type-id='type-id-529' filepath='../../include/zfs_fletcher.h' line='75' column='1' id='type-id-530'/>
+ <typedef-decl name='zfs_fletcher_sse_t' type-id='type-id-494' id='type-id-495'/>
- <array-type-def dimensions='1' type-id='type-id-530' size-in-bits='512' id='type-id-524'>
- <subrange length='4' type-id='type-id-43' id='type-id-225'/>
+ <array-type-def dimensions='1' type-id='type-id-495' size-in-bits='512' id='type-id-489'>
+ <subrange length='4' type-id='type-id-33' id='type-id-217'/>
</array-type-def>
- <class-decl name='zfs_fletcher_avx' size-in-bits='256' is-struct='yes' visibility='default' filepath='../../include/zfs_fletcher.h' line='77' column='1' id='type-id-531'>
+ <class-decl name='zfs_fletcher_avx' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-496'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='v' type-id='type-id-373' visibility='default' filepath='../../include/zfs_fletcher.h' line='78' column='1'/>
+ <var-decl name='v' type-id='type-id-359' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zfs_fletcher_avx_t' type-id='type-id-531' filepath='../../include/zfs_fletcher.h' line='79' column='1' id='type-id-532'/>
+ <typedef-decl name='zfs_fletcher_avx_t' type-id='type-id-496' id='type-id-497'/>
- <array-type-def dimensions='1' type-id='type-id-532' size-in-bits='1024' id='type-id-525'>
- <subrange length='4' type-id='type-id-43' id='type-id-225'/>
+ <array-type-def dimensions='1' type-id='type-id-497' size-in-bits='1024' id='type-id-490'>
+ <subrange length='4' type-id='type-id-33' id='type-id-217'/>
</array-type-def>
- <class-decl name='zfs_fletcher_avx512' size-in-bits='512' is-struct='yes' visibility='default' filepath='../../include/zfs_fletcher.h' line='81' column='1' id='type-id-533'>
+ <class-decl name='zfs_fletcher_avx512' size-in-bits='512' is-struct='yes' visibility='default' id='type-id-498'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='v' type-id='type-id-478' visibility='default' filepath='../../include/zfs_fletcher.h' line='82' column='1'/>
+ <var-decl name='v' type-id='type-id-499' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='zfs_fletcher_avx512_t' type-id='type-id-533' filepath='../../include/zfs_fletcher.h' line='83' column='1' id='type-id-534'/>
- <array-type-def dimensions='1' type-id='type-id-534' size-in-bits='2048' id='type-id-526'>
- <subrange length='4' type-id='type-id-43' id='type-id-225'/>
+ <array-type-def dimensions='1' type-id='type-id-22' size-in-bits='512' id='type-id-499'>
+ <subrange length='8' type-id='type-id-33' id='type-id-390'/>
+
+ </array-type-def>
+ <typedef-decl name='zfs_fletcher_avx512_t' type-id='type-id-498' id='type-id-500'/>
+
+ <array-type-def dimensions='1' type-id='type-id-500' size-in-bits='2048' id='type-id-491'>
+ <subrange length='4' type-id='type-id-33' id='type-id-217'/>
</array-type-def>
- <typedef-decl name='fletcher_4_ctx_t' type-id='type-id-522' filepath='../../include/zfs_fletcher.h' line='106' column='1' id='type-id-535'/>
- <pointer-type-def type-id='type-id-535' size-in-bits='64' id='type-id-519'/>
- <pointer-type-def type-id='type-id-394' size-in-bits='64' id='type-id-520'/>
- <typedef-decl name='zio_abd_checksum_data_t' type-id='type-id-517' filepath='../../include/sys/zio_checksum.h' line='71' column='1' id='type-id-536'/>
- <pointer-type-def type-id='type-id-536' size-in-bits='64' id='type-id-537'/>
- <typedef-decl name='zio_abd_checksum_init_t' type-id='type-id-538' filepath='../../include/sys/zio_checksum.h' line='73' column='1' id='type-id-539'/>
- <pointer-type-def type-id='type-id-539' size-in-bits='64' id='type-id-514'/>
- <typedef-decl name='zio_abd_checksum_fini_t' type-id='type-id-538' filepath='../../include/sys/zio_checksum.h' line='74' column='1' id='type-id-540'/>
- <pointer-type-def type-id='type-id-540' size-in-bits='64' id='type-id-515'/>
- <typedef-decl name='zio_abd_checksum_iter_t' type-id='type-id-541' filepath='../../include/sys/zio_checksum.h' line='75' column='1' id='type-id-542'/>
- <pointer-type-def type-id='type-id-542' size-in-bits='64' id='type-id-516'/>
- <qualified-type-def type-id='type-id-513' const='yes' id='type-id-543'/>
- <typedef-decl name='zio_abd_checksum_func_t' type-id='type-id-543' filepath='../../include/sys/zio_checksum.h' line='81' column='1' id='type-id-544'/>
- <var-decl name='fletcher_4_abd_ops' type-id='type-id-544' mangled-name='fletcher_4_abd_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher.c' line='882' column='1' elf-symbol-id='fletcher_4_abd_ops'/>
- <function-decl name='fletcher_init' mangled-name='fletcher_init' filepath='../../module/zcommon/zfs_fletcher.c' line='231' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_init'>
- <parameter type-id='type-id-520' name='zcp' filepath='../../module/zcommon/zfs_fletcher.c' line='231' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fletcher_2_incremental_native' mangled-name='fletcher_2_incremental_native' filepath='../../module/zcommon/zfs_fletcher.c' line='237' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_incremental_native'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='237' column='1'/>
- <parameter type-id='type-id-38' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='237' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='../../module/zcommon/zfs_fletcher.c' line='237' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fletcher_2_native' mangled-name='fletcher_2_native' filepath='../../module/zcommon/zfs_fletcher.c' line='263' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_native'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='263' column='1'/>
- <parameter type-id='type-id-32' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='263' column='1'/>
- <parameter type-id='type-id-21' name='ctx_template' filepath='../../module/zcommon/zfs_fletcher.c' line='264' column='1'/>
- <parameter type-id='type-id-520' name='zcp' filepath='../../module/zcommon/zfs_fletcher.c' line='264' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fletcher_2_incremental_byteswap' mangled-name='fletcher_2_incremental_byteswap' filepath='../../module/zcommon/zfs_fletcher.c' line='271' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_incremental_byteswap'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='237' column='1'/>
- <parameter type-id='type-id-38' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='237' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='../../module/zcommon/zfs_fletcher.c' line='237' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fletcher_2_byteswap' mangled-name='fletcher_2_byteswap' filepath='../../module/zcommon/zfs_fletcher.c' line='297' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_byteswap'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='263' column='1'/>
- <parameter type-id='type-id-32' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='263' column='1'/>
- <parameter type-id='type-id-21' name='ctx_template' filepath='../../module/zcommon/zfs_fletcher.c' line='264' column='1'/>
- <parameter type-id='type-id-520' name='zcp' filepath='../../module/zcommon/zfs_fletcher.c' line='264' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fletcher_4_impl_set' mangled-name='fletcher_4_impl_set' filepath='../../module/zcommon/zfs_fletcher.c' line='369' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_impl_set'>
- <parameter type-id='type-id-89' name='val' filepath='../../module/zcommon/zfs_fletcher.c' line='369' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <qualified-type-def type-id='type-id-19' volatile='yes' id='type-id-545'/>
- <pointer-type-def type-id='type-id-545' size-in-bits='64' id='type-id-546'/>
- <function-decl name='atomic_swap_32' filepath='../../lib/libspl/include/atomic.h' line='240' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-546'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-19'/>
- </function-decl>
- <function-decl name='membar_producer' filepath='../../lib/libspl/include/atomic.h' line='280' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fletcher_4_native' mangled-name='fletcher_4_native' filepath='../../module/zcommon/zfs_fletcher.c' line='465' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_native'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='465' column='1'/>
- <parameter type-id='type-id-32' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='465' column='1'/>
- <parameter type-id='type-id-21' name='ctx_template' filepath='../../module/zcommon/zfs_fletcher.c' line='466' column='1'/>
- <parameter type-id='type-id-520' name='zcp' filepath='../../module/zcommon/zfs_fletcher.c' line='466' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fletcher_4_native_varsize' mangled-name='fletcher_4_native_varsize' filepath='../../module/zcommon/zfs_fletcher.c' line='488' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_native_varsize'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='488' column='1'/>
- <parameter type-id='type-id-32' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='488' column='1'/>
- <parameter type-id='type-id-520' name='zcp' filepath='../../module/zcommon/zfs_fletcher.c' line='488' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fletcher_4_byteswap' mangled-name='fletcher_4_byteswap' filepath='../../module/zcommon/zfs_fletcher.c' line='507' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_byteswap'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='465' column='1'/>
- <parameter type-id='type-id-32' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='465' column='1'/>
- <parameter type-id='type-id-21' name='ctx_template' filepath='../../module/zcommon/zfs_fletcher.c' line='466' column='1'/>
- <parameter type-id='type-id-520' name='zcp' filepath='../../module/zcommon/zfs_fletcher.c' line='466' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='fletcher_4_incremental_native' mangled-name='fletcher_4_incremental_native' filepath='../../module/zcommon/zfs_fletcher.c' line='577' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_incremental_native'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='577' column='1'/>
- <parameter type-id='type-id-38' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='577' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='../../module/zcommon/zfs_fletcher.c' line='577' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='fletcher_4_incremental_byteswap' mangled-name='fletcher_4_incremental_byteswap' filepath='../../module/zcommon/zfs_fletcher.c' line='589' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_incremental_byteswap'>
- <parameter type-id='type-id-21' name='buf' filepath='../../module/zcommon/zfs_fletcher.c' line='577' column='1'/>
- <parameter type-id='type-id-38' name='size' filepath='../../module/zcommon/zfs_fletcher.c' line='577' column='1'/>
- <parameter type-id='type-id-21' name='data' filepath='../../module/zcommon/zfs_fletcher.c' line='577' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-type size-in-bits='64' id='type-id-541'>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-38'/>
- <parameter type-id='type-id-21'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='fletcher_4_ctx_t' type-id='type-id-487' id='type-id-501'/>
+ <pointer-type-def type-id='type-id-501' size-in-bits='64' id='type-id-484'/>
+ <pointer-type-def type-id='type-id-380' size-in-bits='64' id='type-id-485'/>
+ <typedef-decl name='zio_abd_checksum_data_t' type-id='type-id-482' id='type-id-502'/>
+ <pointer-type-def type-id='type-id-502' size-in-bits='64' id='type-id-503'/>
+ <typedef-decl name='zio_abd_checksum_init_t' type-id='type-id-504' id='type-id-505'/>
+ <pointer-type-def type-id='type-id-505' size-in-bits='64' id='type-id-479'/>
+ <typedef-decl name='zio_abd_checksum_fini_t' type-id='type-id-504' id='type-id-506'/>
+ <pointer-type-def type-id='type-id-506' size-in-bits='64' id='type-id-480'/>
+ <typedef-decl name='zio_abd_checksum_iter_t' type-id='type-id-507' id='type-id-508'/>
+ <pointer-type-def type-id='type-id-508' size-in-bits='64' id='type-id-481'/>
+ <qualified-type-def type-id='type-id-478' const='yes' id='type-id-509'/>
+ <typedef-decl name='zio_abd_checksum_func_t' type-id='type-id-509' id='type-id-510'/>
+ <var-decl name='fletcher_4_abd_ops' type-id='type-id-510' mangled-name='fletcher_4_abd_ops' visibility='default' elf-symbol-id='fletcher_4_abd_ops'/>
+ <function-decl name='fletcher_init' mangled-name='fletcher_init' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_init'>
+ <parameter type-id='type-id-485' name='zcp'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fletcher_2_incremental_native' mangled-name='fletcher_2_incremental_native' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_incremental_native'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-28' name='size'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fletcher_2_native' mangled-name='fletcher_2_native' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_native'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-22' name='size'/>
+ <parameter type-id='type-id-7' name='ctx_template'/>
+ <parameter type-id='type-id-485' name='zcp'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fletcher_2_incremental_byteswap' mangled-name='fletcher_2_incremental_byteswap' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_incremental_byteswap'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-28' name='size'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fletcher_2_byteswap' mangled-name='fletcher_2_byteswap' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_2_byteswap'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-22' name='size'/>
+ <parameter type-id='type-id-7' name='ctx_template'/>
+ <parameter type-id='type-id-485' name='zcp'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fletcher_4_impl_set' mangled-name='fletcher_4_impl_set' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_impl_set'>
+ <parameter type-id='type-id-84' name='val'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-5' volatile='yes' id='type-id-511'/>
+ <pointer-type-def type-id='type-id-511' size-in-bits='64' id='type-id-512'/>
+ <function-decl name='atomic_swap_32' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-512'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-5'/>
+ </function-decl>
+ <function-decl name='membar_producer' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fletcher_4_native' mangled-name='fletcher_4_native' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_native'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-22' name='size'/>
+ <parameter type-id='type-id-7' name='ctx_template'/>
+ <parameter type-id='type-id-485' name='zcp'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fletcher_4_native_varsize' mangled-name='fletcher_4_native_varsize' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_native_varsize'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-22' name='size'/>
+ <parameter type-id='type-id-485' name='zcp'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fletcher_4_byteswap' mangled-name='fletcher_4_byteswap' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_byteswap'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-22' name='size'/>
+ <parameter type-id='type-id-7' name='ctx_template'/>
+ <parameter type-id='type-id-485' name='zcp'/>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='fletcher_4_incremental_native' mangled-name='fletcher_4_incremental_native' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_incremental_native'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-28' name='size'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='fletcher_4_incremental_byteswap' mangled-name='fletcher_4_incremental_byteswap' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='fletcher_4_incremental_byteswap'>
+ <parameter type-id='type-id-7' name='buf'/>
+ <parameter type-id='type-id-28' name='size'/>
+ <parameter type-id='type-id-7' name='data'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-507'>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-28'/>
+ <parameter type-id='type-id-7'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-538'>
- <parameter type-id='type-id-537'/>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-504'>
+ <parameter type-id='type-id-503'/>
+ <return type-id='type-id-6'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_fletcher_avx512.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <class-decl name='fletcher_4_func' size-in-bits='512' is-struct='yes' visibility='default' filepath='../../include/zfs_fletcher.h' line='116' column='1' id='type-id-547'>
+ <class-decl name='fletcher_4_func' size-in-bits='512' is-struct='yes' visibility='default' id='type-id-513'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='init_native' type-id='type-id-548' visibility='default' filepath='../../include/zfs_fletcher.h' line='117' column='1'/>
+ <var-decl name='init_native' type-id='type-id-514' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='fini_native' type-id='type-id-549' visibility='default' filepath='../../include/zfs_fletcher.h' line='118' column='1'/>
+ <var-decl name='fini_native' type-id='type-id-515' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='compute_native' type-id='type-id-550' visibility='default' filepath='../../include/zfs_fletcher.h' line='119' column='1'/>
+ <var-decl name='compute_native' type-id='type-id-516' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='init_byteswap' type-id='type-id-548' visibility='default' filepath='../../include/zfs_fletcher.h' line='120' column='1'/>
+ <var-decl name='init_byteswap' type-id='type-id-514' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='fini_byteswap' type-id='type-id-549' visibility='default' filepath='../../include/zfs_fletcher.h' line='121' column='1'/>
+ <var-decl name='fini_byteswap' type-id='type-id-515' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='compute_byteswap' type-id='type-id-550' visibility='default' filepath='../../include/zfs_fletcher.h' line='122' column='1'/>
+ <var-decl name='compute_byteswap' type-id='type-id-516' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='valid' type-id='type-id-551' visibility='default' filepath='../../include/zfs_fletcher.h' line='123' column='1'/>
+ <var-decl name='valid' type-id='type-id-517' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='448'>
- <var-decl name='name' type-id='type-id-89' visibility='default' filepath='../../include/zfs_fletcher.h' line='124' column='1'/>
+ <var-decl name='name' type-id='type-id-84' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-552' size-in-bits='64' id='type-id-553'/>
- <typedef-decl name='fletcher_4_init_f' type-id='type-id-553' filepath='../../include/zfs_fletcher.h' line='111' column='1' id='type-id-548'/>
- <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-555'/>
- <typedef-decl name='fletcher_4_fini_f' type-id='type-id-555' filepath='../../include/zfs_fletcher.h' line='112' column='1' id='type-id-549'/>
- <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-557'/>
- <typedef-decl name='fletcher_4_compute_f' type-id='type-id-557' filepath='../../include/zfs_fletcher.h' line='113' column='1' id='type-id-550'/>
- <pointer-type-def type-id='type-id-558' size-in-bits='64' id='type-id-551'/>
- <typedef-decl name='fletcher_4_ops_t' type-id='type-id-547' filepath='../../include/zfs_fletcher.h' line='125' column='1' id='type-id-559'/>
- <qualified-type-def type-id='type-id-559' const='yes' id='type-id-560'/>
- <var-decl name='fletcher_4_avx512f_ops' type-id='type-id-560' mangled-name='fletcher_4_avx512f_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher_avx512.c' line='165' column='1' elf-symbol-id='fletcher_4_avx512f_ops'/>
- <var-decl name='fletcher_4_avx512bw_ops' type-id='type-id-560' mangled-name='fletcher_4_avx512bw_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher_avx512.c' line='219' column='1' elf-symbol-id='fletcher_4_avx512bw_ops'/>
- <function-type size-in-bits='64' id='type-id-558'>
- <return type-id='type-id-6'/>
+ <pointer-type-def type-id='type-id-518' size-in-bits='64' id='type-id-519'/>
+ <typedef-decl name='fletcher_4_init_f' type-id='type-id-519' id='type-id-514'/>
+ <pointer-type-def type-id='type-id-520' size-in-bits='64' id='type-id-521'/>
+ <typedef-decl name='fletcher_4_fini_f' type-id='type-id-521' id='type-id-515'/>
+ <pointer-type-def type-id='type-id-522' size-in-bits='64' id='type-id-523'/>
+ <typedef-decl name='fletcher_4_compute_f' type-id='type-id-523' id='type-id-516'/>
+ <pointer-type-def type-id='type-id-524' size-in-bits='64' id='type-id-517'/>
+ <typedef-decl name='fletcher_4_ops_t' type-id='type-id-513' id='type-id-525'/>
+ <qualified-type-def type-id='type-id-525' const='yes' id='type-id-526'/>
+ <var-decl name='fletcher_4_avx512f_ops' type-id='type-id-526' mangled-name='fletcher_4_avx512f_ops' visibility='default' elf-symbol-id='fletcher_4_avx512f_ops'/>
+ <var-decl name='fletcher_4_avx512bw_ops' type-id='type-id-526' mangled-name='fletcher_4_avx512bw_ops' visibility='default' elf-symbol-id='fletcher_4_avx512bw_ops'/>
+ <function-type size-in-bits='64' id='type-id-524'>
+ <return type-id='type-id-16'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-552'>
- <parameter type-id='type-id-519'/>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-518'>
+ <parameter type-id='type-id-484'/>
+ <return type-id='type-id-6'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-556'>
- <parameter type-id='type-id-519'/>
- <parameter type-id='type-id-21'/>
- <parameter type-id='type-id-32'/>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-522'>
+ <parameter type-id='type-id-484'/>
+ <parameter type-id='type-id-7'/>
+ <parameter type-id='type-id-22'/>
+ <return type-id='type-id-6'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-554'>
- <parameter type-id='type-id-519'/>
- <parameter type-id='type-id-520'/>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-520'>
+ <parameter type-id='type-id-484'/>
+ <parameter type-id='type-id-485'/>
+ <return type-id='type-id-6'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_fletcher_intel.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <var-decl name='fletcher_4_avx2_ops' type-id='type-id-560' mangled-name='fletcher_4_avx2_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher_intel.c' line='162' column='1' elf-symbol-id='fletcher_4_avx2_ops'/>
+ <var-decl name='fletcher_4_avx2_ops' type-id='type-id-526' mangled-name='fletcher_4_avx2_ops' visibility='default' elf-symbol-id='fletcher_4_avx2_ops'/>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_fletcher_sse.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <var-decl name='fletcher_4_sse2_ops' type-id='type-id-560' mangled-name='fletcher_4_sse2_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher_sse.c' line='163' column='1' elf-symbol-id='fletcher_4_sse2_ops'/>
- <var-decl name='fletcher_4_ssse3_ops' type-id='type-id-560' mangled-name='fletcher_4_ssse3_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher_sse.c' line='221' column='1' elf-symbol-id='fletcher_4_ssse3_ops'/>
+ <var-decl name='fletcher_4_sse2_ops' type-id='type-id-526' mangled-name='fletcher_4_sse2_ops' visibility='default' elf-symbol-id='fletcher_4_sse2_ops'/>
+ <var-decl name='fletcher_4_ssse3_ops' type-id='type-id-526' mangled-name='fletcher_4_ssse3_ops' visibility='default' elf-symbol-id='fletcher_4_ssse3_ops'/>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_fletcher_superscalar.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <var-decl name='fletcher_4_superscalar_ops' type-id='type-id-560' mangled-name='fletcher_4_superscalar_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher_superscalar.c' line='154' column='1' elf-symbol-id='fletcher_4_superscalar_ops'/>
+ <var-decl name='fletcher_4_superscalar_ops' type-id='type-id-526' mangled-name='fletcher_4_superscalar_ops' visibility='default' elf-symbol-id='fletcher_4_superscalar_ops'/>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_fletcher_superscalar4.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <var-decl name='fletcher_4_superscalar4_ops' type-id='type-id-560' mangled-name='fletcher_4_superscalar4_ops' visibility='default' filepath='../../module/zcommon/zfs_fletcher_superscalar4.c' line='220' column='1' elf-symbol-id='fletcher_4_superscalar4_ops'/>
+ <var-decl name='fletcher_4_superscalar4_ops' type-id='type-id-526' mangled-name='fletcher_4_superscalar4_ops' visibility='default' elf-symbol-id='fletcher_4_superscalar4_ops'/>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_namecheck.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <var-decl name='zfs_max_dataset_nesting' type-id='type-id-1' mangled-name='zfs_max_dataset_nesting' visibility='default' filepath='../../module/zcommon/zfs_namecheck.c' line='55' column='1' elf-symbol-id='zfs_max_dataset_nesting'/>
- <function-decl name='get_dataset_depth' mangled-name='get_dataset_depth' filepath='../../module/zcommon/zfs_namecheck.c' line='70' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='get_dataset_depth'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='70' column='1'/>
- <return type-id='type-id-1'/>
+ <var-decl name='zfs_max_dataset_nesting' type-id='type-id-8' mangled-name='zfs_max_dataset_nesting' visibility='default' elf-symbol-id='zfs_max_dataset_nesting'/>
+ <function-decl name='get_dataset_depth' mangled-name='get_dataset_depth' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='get_dataset_depth'>
+ <parameter type-id='type-id-84' name='path'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <typedef-decl name='namecheck_err_t' type-id='type-id-218' filepath='../../include/zfs_namecheck.h' line='50' column='1' id='type-id-561'/>
- <pointer-type-def type-id='type-id-561' size-in-bits='64' id='type-id-562'/>
- <function-decl name='zfs_component_namecheck' mangled-name='zfs_component_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='98' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_component_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='98' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='98' column='1'/>
- <parameter type-id='type-id-29' name='what' filepath='../../module/zcommon/zfs_namecheck.c' line='98' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='permset_namecheck' mangled-name='permset_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='135' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='permset_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='135' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='135' column='1'/>
- <parameter type-id='type-id-29' name='what' filepath='../../module/zcommon/zfs_namecheck.c' line='135' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='entity_namecheck' mangled-name='entity_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='182' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='entity_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='182' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='182' column='1'/>
- <parameter type-id='type-id-29' name='what' filepath='../../module/zcommon/zfs_namecheck.c' line='182' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='dataset_namecheck' mangled-name='dataset_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='dataset_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <parameter type-id='type-id-29' name='what' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='bookmark_namecheck' mangled-name='bookmark_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='319' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='bookmark_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <parameter type-id='type-id-29' name='what' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='snapshot_namecheck' mangled-name='snapshot_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='338' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='snapshot_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <parameter type-id='type-id-29' name='what' filepath='../../module/zcommon/zfs_namecheck.c' line='300' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='mountpoint_namecheck' mangled-name='mountpoint_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='361' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='mountpoint_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='361' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='361' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='pool_namecheck' mangled-name='pool_namecheck' filepath='../../module/zcommon/zfs_namecheck.c' line='407' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='pool_namecheck'>
- <parameter type-id='type-id-89' name='path' filepath='../../module/zcommon/zfs_namecheck.c' line='98' column='1'/>
- <parameter type-id='type-id-562' name='why' filepath='../../module/zcommon/zfs_namecheck.c' line='98' column='1'/>
- <parameter type-id='type-id-29' name='what' filepath='../../module/zcommon/zfs_namecheck.c' line='98' column='1'/>
- <return type-id='type-id-1'/>
+ <typedef-decl name='namecheck_err_t' type-id='type-id-212' id='type-id-527'/>
+ <pointer-type-def type-id='type-id-527' size-in-bits='64' id='type-id-528'/>
+ <function-decl name='zfs_component_namecheck' mangled-name='zfs_component_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_component_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <parameter type-id='type-id-17' name='what'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='permset_namecheck' mangled-name='permset_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='permset_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <parameter type-id='type-id-17' name='what'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='entity_namecheck' mangled-name='entity_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='entity_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <parameter type-id='type-id-17' name='what'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='dataset_namecheck' mangled-name='dataset_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='dataset_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <parameter type-id='type-id-17' name='what'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='bookmark_namecheck' mangled-name='bookmark_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='bookmark_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <parameter type-id='type-id-17' name='what'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='snapshot_namecheck' mangled-name='snapshot_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='snapshot_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <parameter type-id='type-id-17' name='what'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='mountpoint_namecheck' mangled-name='mountpoint_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='mountpoint_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='pool_namecheck' mangled-name='pool_namecheck' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='pool_namecheck'>
+ <parameter type-id='type-id-84' name='path'/>
+ <parameter type-id='type-id-528' name='why'/>
+ <parameter type-id='type-id-17' name='what'/>
+ <return type-id='type-id-8'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='../../module/zcommon/zfs_prop.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <array-type-def dimensions='1' type-id='type-id-89' size-in-bits='768' id='type-id-563'>
- <subrange length='12' type-id='type-id-43' id='type-id-405'/>
+ <array-type-def dimensions='1' type-id='type-id-84' size-in-bits='768' id='type-id-529'>
+ <subrange length='12' type-id='type-id-33' id='type-id-391'/>
</array-type-def>
- <var-decl name='zfs_userquota_prop_prefixes' type-id='type-id-563' mangled-name='zfs_userquota_prop_prefixes' visibility='default' filepath='../../module/zcommon/zfs_prop.c' line='53' column='1' elf-symbol-id='zfs_userquota_prop_prefixes'/>
- <function-decl name='zfs_prop_written' mangled-name='zfs_prop_written' filepath='../../module/zcommon/zfs_prop.c' line='802' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_written'>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zfs_prop.c' line='802' column='1'/>
+ <var-decl name='zfs_userquota_prop_prefixes' type-id='type-id-529' mangled-name='zfs_userquota_prop_prefixes' visibility='default' elf-symbol-id='zfs_userquota_prop_prefixes'/>
+ <function-decl name='zfs_prop_written' mangled-name='zfs_prop_written' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_written'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <typedef-decl name='zprop_desc_t' type-id='type-id-408' id='type-id-407'/>
+ <pointer-type-def type-id='type-id-407' size-in-bits='64' id='type-id-530'/>
+ <function-decl name='zfs_prop_get_table' mangled-name='zfs_prop_get_table' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_table'>
+ <return type-id='type-id-530'/>
+ </function-decl>
+ <qualified-type-def type-id='type-id-413' const='yes' id='type-id-531'/>
+ <pointer-type-def type-id='type-id-531' size-in-bits='64' id='type-id-532'/>
+ <function-decl name='zprop_register_index' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-412'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-532'/>
<return type-id='type-id-6'/>
</function-decl>
- <typedef-decl name='zprop_desc_t' type-id='type-id-422' filepath='../../include/zfs_prop.h' line='85' column='1' id='type-id-421'/>
- <pointer-type-def type-id='type-id-421' size-in-bits='64' id='type-id-564'/>
- <function-decl name='zfs_prop_get_table' mangled-name='zfs_prop_get_table' filepath='../../module/zcommon/zfs_prop.c' line='69' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_table'>
- <return type-id='type-id-564'/>
+ <function-decl name='zprop_register_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-412'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <qualified-type-def type-id='type-id-427' const='yes' id='type-id-565'/>
- <pointer-type-def type-id='type-id-565' size-in-bits='64' id='type-id-566'/>
- <function-decl name='zprop_register_index' filepath='../../include/zfs_prop.h' line='112' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-426'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-566'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zprop_register_number' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-412'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zprop_register_string' filepath='../../include/zfs_prop.h' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-426'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zprop_register_hidden' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-234'/>
+ <parameter type-id='type-id-412'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zprop_register_number' filepath='../../include/zfs_prop.h' line='110' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-426'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zprop_register_impl' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-234'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-412'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-50'/>
+ <parameter type-id='type-id-532'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zprop_register_hidden' filepath='../../include/zfs_prop.h' line='114' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-240'/>
- <parameter type-id='type-id-426'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_prop_delegatable' mangled-name='zfs_prop_delegatable' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_delegatable'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zprop_register_impl' filepath='../../include/zfs_prop.h' line='105' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-240'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-426'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-13'/>
- <parameter type-id='type-id-566'/>
- <return type-id='type-id-20'/>
+ <function-decl name='zfs_name_to_prop' mangled-name='zfs_name_to_prop' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_name_to_prop'>
+ <parameter type-id='type-id-84' name='propname'/>
+ <return type-id='type-id-229'/>
</function-decl>
- <function-decl name='zfs_prop_delegatable' mangled-name='zfs_prop_delegatable' filepath='../../module/zcommon/zfs_prop.c' line='720' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_delegatable'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='720' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_prop_user' mangled-name='zfs_prop_user' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_user'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_name_to_prop' mangled-name='zfs_name_to_prop' filepath='../../module/zcommon/zfs_prop.c' line='735' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_name_to_prop'>
- <parameter type-id='type-id-89' name='propname' filepath='../../module/zcommon/zfs_prop.c' line='735' column='1'/>
- <return type-id='type-id-3'/>
+ <function-decl name='zfs_prop_userquota' mangled-name='zfs_prop_userquota' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_userquota'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_prop_user' mangled-name='zfs_prop_user' filepath='../../module/zcommon/zfs_prop.c' line='756' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_user'>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zfs_prop.c' line='756' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_prop_string_to_index' mangled-name='zfs_prop_string_to_index' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_string_to_index'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <parameter type-id='type-id-84' name='string'/>
+ <parameter type-id='type-id-248' name='index'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_userquota' mangled-name='zfs_prop_userquota' filepath='../../module/zcommon/zfs_prop.c' line='782' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_userquota'>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zfs_prop.c' line='782' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_prop_index_to_string' mangled-name='zfs_prop_index_to_string' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_index_to_string'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <parameter type-id='type-id-22' name='index'/>
+ <parameter type-id='type-id-241' name='string'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_string_to_index' mangled-name='zfs_prop_string_to_index' filepath='../../module/zcommon/zfs_prop.c' line='815' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_string_to_index'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='815' column='1'/>
- <parameter type-id='type-id-89' name='string' filepath='../../module/zcommon/zfs_prop.c' line='815' column='1'/>
- <parameter type-id='type-id-254' name='index' filepath='../../module/zcommon/zfs_prop.c' line='815' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_index_to_string' mangled-name='zfs_prop_index_to_string' filepath='../../module/zcommon/zfs_prop.c' line='821' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_index_to_string'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='821' column='1'/>
- <parameter type-id='type-id-32' name='index' filepath='../../module/zcommon/zfs_prop.c' line='821' column='1'/>
- <parameter type-id='type-id-247' name='string' filepath='../../module/zcommon/zfs_prop.c' line='821' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zprop_index_to_string' filepath='../../include/zfs_prop.h' line='123' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-247'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zfs_prop_random_value' mangled-name='zfs_prop_random_value' filepath='../../module/zcommon/zfs_prop.c' line='827' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_random_value'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='827' column='1'/>
- <parameter type-id='type-id-32' name='seed' filepath='../../module/zcommon/zfs_prop.c' line='827' column='1'/>
- <return type-id='type-id-32'/>
- </function-decl>
- <function-decl name='zprop_random_value' filepath='../../include/zfs_prop.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-45'/>
- <parameter type-id='type-id-81'/>
- <return type-id='type-id-45'/>
- </function-decl>
- <function-decl name='zfs_prop_valid_for_type' mangled-name='zfs_prop_valid_for_type' filepath='../../module/zcommon/zfs_prop.c' line='836' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_valid_for_type'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='836' column='1'/>
- <parameter type-id='type-id-26' name='types' filepath='../../module/zcommon/zfs_prop.c' line='836' column='1'/>
- <parameter type-id='type-id-6' name='headcheck' filepath='../../module/zcommon/zfs_prop.c' line='836' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zprop_index_to_string' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-241'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_get_type' mangled-name='zfs_prop_get_type' filepath='../../module/zcommon/zfs_prop.c' line='842' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_type'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='842' column='1'/>
- <return type-id='type-id-423'/>
+ <function-decl name='zfs_prop_random_value' mangled-name='zfs_prop_random_value' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_random_value'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <parameter type-id='type-id-22' name='seed'/>
+ <return type-id='type-id-22'/>
</function-decl>
- <function-decl name='zfs_prop_readonly' mangled-name='zfs_prop_readonly' filepath='../../module/zcommon/zfs_prop.c' line='851' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_readonly'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='851' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zprop_random_value' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-35'/>
+ <parameter type-id='type-id-76'/>
+ <return type-id='type-id-35'/>
+ </function-decl>
+ <function-decl name='zfs_prop_valid_for_type' mangled-name='zfs_prop_valid_for_type' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_valid_for_type'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-13' name='types'/>
+ <parameter type-id='type-id-16' name='headcheck'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_prop_get_type' mangled-name='zfs_prop_get_type' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_get_type'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-409'/>
+ </function-decl>
+ <function-decl name='zfs_prop_readonly' mangled-name='zfs_prop_readonly' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_readonly'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_prop_visible' mangled-name='zfs_prop_visible' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_visible'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_prop_setonce' mangled-name='zfs_prop_setonce' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_setonce'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_prop_default_string' mangled-name='zfs_prop_default_string' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_default_string'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zfs_prop_default_numeric' mangled-name='zfs_prop_default_numeric' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_default_numeric'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-22'/>
+ </function-decl>
+ <function-decl name='zfs_prop_to_name' mangled-name='zfs_prop_to_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_to_name'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zfs_prop_inheritable' mangled-name='zfs_prop_inheritable' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_inheritable'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_prop_encryption_key_param' mangled-name='zfs_prop_encryption_key_param' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_encryption_key_param'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_prop_valid_keylocation' mangled-name='zfs_prop_valid_keylocation' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_valid_keylocation'>
+ <parameter type-id='type-id-84' name='str'/>
+ <parameter type-id='type-id-16' name='encrypted'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zfs_prop_values' mangled-name='zfs_prop_values' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_values'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zfs_prop_is_string' mangled-name='zfs_prop_is_string' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_is_string'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zfs_prop_visible' mangled-name='zfs_prop_visible' filepath='../../module/zcommon/zfs_prop.c' line='862' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_visible'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='851' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_prop_column_name' mangled-name='zfs_prop_column_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_column_name'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zfs_prop_setonce' mangled-name='zfs_prop_setonce' filepath='../../module/zcommon/zfs_prop.c' line='872' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_setonce'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='851' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zfs_prop_align_right' mangled-name='zfs_prop_align_right' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_align_right'>
+ <parameter type-id='type-id-229' name='prop'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_prop_default_string' mangled-name='zfs_prop_default_string' filepath='../../module/zcommon/zfs_prop.c' line='879' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_default_string'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='879' column='1'/>
- <return type-id='type-id-89'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../../module/zcommon/zpool_prop.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
+ <function-decl name='zpool_prop_feature' mangled-name='zpool_prop_feature' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_feature'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_prop_default_numeric' mangled-name='zfs_prop_default_numeric' filepath='../../module/zcommon/zfs_prop.c' line='885' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_default_numeric'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='885' column='1'/>
- <return type-id='type-id-32'/>
+ <function-decl name='zpool_prop_unsupported' mangled-name='zpool_prop_unsupported' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_unsupported'>
+ <parameter type-id='type-id-84' name='name'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_prop_to_name' mangled-name='zfs_prop_to_name' filepath='../../module/zcommon/zfs_prop.c' line='895' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_to_name'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='879' column='1'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zpool_prop_get_table' mangled-name='zpool_prop_get_table' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_get_table'>
+ <return type-id='type-id-530'/>
</function-decl>
- <function-decl name='zfs_prop_inheritable' mangled-name='zfs_prop_inheritable' filepath='../../module/zcommon/zfs_prop.c' line='904' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_inheritable'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='851' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_name_to_prop' mangled-name='zpool_name_to_prop' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_name_to_prop'>
+ <parameter type-id='type-id-84' name='propname'/>
+ <return type-id='type-id-320'/>
</function-decl>
- <function-decl name='zfs_prop_encryption_key_param' mangled-name='zfs_prop_encryption_key_param' filepath='../../module/zcommon/zfs_prop.c' line='915' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_encryption_key_param'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='851' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_prop_to_name' mangled-name='zpool_prop_to_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_to_name'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zfs_prop_valid_keylocation' mangled-name='zfs_prop_valid_keylocation' filepath='../../module/zcommon/zfs_prop.c' line='931' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_valid_keylocation'>
- <parameter type-id='type-id-89' name='str' filepath='../../module/zcommon/zfs_prop.c' line='931' column='1'/>
- <parameter type-id='type-id-6' name='encrypted' filepath='../../module/zcommon/zfs_prop.c' line='931' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_prop_get_type' mangled-name='zpool_prop_get_type' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_get_type'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-409'/>
</function-decl>
- <function-decl name='zfs_prop_values' mangled-name='zfs_prop_values' filepath='../../module/zcommon/zfs_prop.c' line='956' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_values'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='879' column='1'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zpool_prop_readonly' mangled-name='zpool_prop_readonly' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_readonly'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_prop_is_string' mangled-name='zfs_prop_is_string' filepath='../../module/zcommon/zfs_prop.c' line='967' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_is_string'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='967' column='1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='zpool_prop_setonce' mangled-name='zpool_prop_setonce' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_setonce'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zfs_prop_column_name' mangled-name='zfs_prop_column_name' filepath='../../module/zcommon/zfs_prop.c' line='978' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_column_name'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='879' column='1'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zpool_prop_default_string' mangled-name='zpool_prop_default_string' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_default_string'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zfs_prop_align_right' mangled-name='zfs_prop_align_right' filepath='../../module/zcommon/zfs_prop.c' line='988' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zfs_prop_align_right'>
- <parameter type-id='type-id-3' name='prop' filepath='../../module/zcommon/zfs_prop.c' line='851' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_prop_default_numeric' mangled-name='zpool_prop_default_numeric' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_default_numeric'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-22'/>
</function-decl>
- </abi-instr>
- <abi-instr version='1.0' address-size='64' path='../../module/zcommon/zpool_prop.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zpool_prop_feature' mangled-name='zpool_prop_feature' filepath='../../module/zcommon/zpool_prop.c' line='205' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_feature'>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zpool_prop.c' line='205' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_prop_string_to_index' mangled-name='zpool_prop_string_to_index' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_string_to_index'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <parameter type-id='type-id-84' name='string'/>
+ <parameter type-id='type-id-248' name='index'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_prop_unsupported' mangled-name='zpool_prop_unsupported' filepath='../../module/zcommon/zpool_prop.c' line='215' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_unsupported'>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zpool_prop.c' line='205' column='1'/>
- <return type-id='type-id-6'/>
+ <function-decl name='zpool_prop_index_to_string' mangled-name='zpool_prop_index_to_string' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_index_to_string'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <parameter type-id='type-id-22' name='index'/>
+ <parameter type-id='type-id-241' name='string'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='zpool_prop_get_table' mangled-name='zpool_prop_get_table' filepath='../../module/zcommon/zpool_prop.c' line='45' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_get_table'>
- <return type-id='type-id-564'/>
+ <function-decl name='zpool_prop_random_value' mangled-name='zpool_prop_random_value' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_random_value'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <parameter type-id='type-id-22' name='seed'/>
+ <return type-id='type-id-22'/>
</function-decl>
- <function-decl name='zpool_name_to_prop' mangled-name='zpool_name_to_prop' filepath='../../module/zcommon/zpool_prop.c' line='156' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_name_to_prop'>
- <parameter type-id='type-id-89' name='propname' filepath='../../module/zcommon/zpool_prop.c' line='156' column='1'/>
- <return type-id='type-id-333'/>
+ <function-decl name='zpool_prop_values' mangled-name='zpool_prop_values' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_values'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zpool_prop_to_name' mangled-name='zpool_prop_to_name' filepath='../../module/zcommon/zpool_prop.c' line='166' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_to_name'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='166' column='1'/>
- <return type-id='type-id-89'/>
+ <function-decl name='zpool_prop_column_name' mangled-name='zpool_prop_column_name' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_column_name'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-84'/>
</function-decl>
- <function-decl name='zpool_prop_get_type' mangled-name='zpool_prop_get_type' filepath='../../module/zcommon/zpool_prop.c' line='172' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_get_type'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='172' column='1'/>
- <return type-id='type-id-423'/>
+ <function-decl name='zpool_prop_align_right' mangled-name='zpool_prop_align_right' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_align_right'>
+ <parameter type-id='type-id-320' name='prop'/>
+ <return type-id='type-id-16'/>
</function-decl>
- <function-decl name='zpool_prop_readonly' mangled-name='zpool_prop_readonly' filepath='../../module/zcommon/zpool_prop.c' line='178' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_readonly'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='178' column='1'/>
+ </abi-instr>
+ <abi-instr version='1.0' address-size='64' path='../../module/zcommon/zprop_common.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
+ <function-decl name='zprop_register_impl' mangled-name='zprop_register_impl' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_impl'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-409' name='type'/>
+ <parameter type-id='type-id-22' name='numdefault'/>
+ <parameter type-id='type-id-84' name='strdefault'/>
+ <parameter type-id='type-id-410' name='attr'/>
+ <parameter type-id='type-id-8' name='objset_types'/>
+ <parameter type-id='type-id-84' name='values'/>
+ <parameter type-id='type-id-84' name='colname'/>
+ <parameter type-id='type-id-16' name='rightalign'/>
+ <parameter type-id='type-id-16' name='visible'/>
+ <parameter type-id='type-id-411' name='idx_tbl'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zpool_prop_setonce' mangled-name='zpool_prop_setonce' filepath='../../module/zcommon/zpool_prop.c' line='184' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_setonce'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='178' column='1'/>
+ <function-decl name='zfs_mod_supported' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-50'/>
+ </function-decl>
+ <function-decl name='zprop_register_string' mangled-name='zprop_register_string' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_string'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-84' name='def'/>
+ <parameter type-id='type-id-410' name='attr'/>
+ <parameter type-id='type-id-8' name='objset_types'/>
+ <parameter type-id='type-id-84' name='values'/>
+ <parameter type-id='type-id-84' name='colname'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zpool_prop_default_string' mangled-name='zpool_prop_default_string' filepath='../../module/zcommon/zpool_prop.c' line='190' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_default_string'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='166' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zpool_prop_default_numeric' mangled-name='zpool_prop_default_numeric' filepath='../../module/zcommon/zpool_prop.c' line='196' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_default_numeric'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='196' column='1'/>
- <return type-id='type-id-32'/>
- </function-decl>
- <function-decl name='zpool_prop_string_to_index' mangled-name='zpool_prop_string_to_index' filepath='../../module/zcommon/zpool_prop.c' line='222' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_string_to_index'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='222' column='1'/>
- <parameter type-id='type-id-89' name='string' filepath='../../module/zcommon/zpool_prop.c' line='222' column='1'/>
- <parameter type-id='type-id-254' name='index' filepath='../../module/zcommon/zpool_prop.c' line='223' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_prop_index_to_string' mangled-name='zpool_prop_index_to_string' filepath='../../module/zcommon/zpool_prop.c' line='229' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_index_to_string'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='229' column='1'/>
- <parameter type-id='type-id-32' name='index' filepath='../../module/zcommon/zpool_prop.c' line='229' column='1'/>
- <parameter type-id='type-id-247' name='string' filepath='../../module/zcommon/zpool_prop.c' line='230' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zpool_prop_random_value' mangled-name='zpool_prop_random_value' filepath='../../module/zcommon/zpool_prop.c' line='236' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_random_value'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='236' column='1'/>
- <parameter type-id='type-id-32' name='seed' filepath='../../module/zcommon/zpool_prop.c' line='236' column='1'/>
- <return type-id='type-id-32'/>
- </function-decl>
- <function-decl name='zpool_prop_values' mangled-name='zpool_prop_values' filepath='../../module/zcommon/zpool_prop.c' line='245' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_values'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='166' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zpool_prop_column_name' mangled-name='zpool_prop_column_name' filepath='../../module/zcommon/zpool_prop.c' line='251' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_column_name'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='166' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zpool_prop_align_right' mangled-name='zpool_prop_align_right' filepath='../../module/zcommon/zpool_prop.c' line='257' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zpool_prop_align_right'>
- <parameter type-id='type-id-333' name='prop' filepath='../../module/zcommon/zpool_prop.c' line='178' column='1'/>
+ <function-decl name='zprop_register_number' mangled-name='zprop_register_number' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_number'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-22' name='def'/>
+ <parameter type-id='type-id-410' name='attr'/>
+ <parameter type-id='type-id-8' name='objset_types'/>
+ <parameter type-id='type-id-84' name='values'/>
+ <parameter type-id='type-id-84' name='colname'/>
<return type-id='type-id-6'/>
</function-decl>
- </abi-instr>
- <abi-instr version='1.0' address-size='64' path='../../module/zcommon/zprop_common.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libzfs' language='LANG_C99'>
- <function-decl name='zprop_register_impl' mangled-name='zprop_register_impl' filepath='../../module/zcommon/zprop_common.c' line='89' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_impl'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='89' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zprop_common.c' line='89' column='1'/>
- <parameter type-id='type-id-423' name='type' filepath='../../module/zcommon/zprop_common.c' line='89' column='1'/>
- <parameter type-id='type-id-32' name='numdefault' filepath='../../module/zcommon/zprop_common.c' line='90' column='1'/>
- <parameter type-id='type-id-89' name='strdefault' filepath='../../module/zcommon/zprop_common.c' line='90' column='1'/>
- <parameter type-id='type-id-424' name='attr' filepath='../../module/zcommon/zprop_common.c' line='90' column='1'/>
- <parameter type-id='type-id-1' name='objset_types' filepath='../../module/zcommon/zprop_common.c' line='91' column='1'/>
- <parameter type-id='type-id-89' name='values' filepath='../../module/zcommon/zprop_common.c' line='91' column='1'/>
- <parameter type-id='type-id-89' name='colname' filepath='../../module/zcommon/zprop_common.c' line='91' column='1'/>
- <parameter type-id='type-id-6' name='rightalign' filepath='../../module/zcommon/zprop_common.c' line='92' column='1'/>
- <parameter type-id='type-id-6' name='visible' filepath='../../module/zcommon/zprop_common.c' line='92' column='1'/>
- <parameter type-id='type-id-425' name='idx_tbl' filepath='../../module/zcommon/zprop_common.c' line='92' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zfs_mod_supported' filepath='../../include/sys/zfs_sysfs.h' line='38' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-13'/>
+ <function-decl name='zprop_register_index' mangled-name='zprop_register_index' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_index'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-22' name='def'/>
+ <parameter type-id='type-id-410' name='attr'/>
+ <parameter type-id='type-id-8' name='objset_types'/>
+ <parameter type-id='type-id-84' name='values'/>
+ <parameter type-id='type-id-84' name='colname'/>
+ <parameter type-id='type-id-411' name='idx_tbl'/>
+ <return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zprop_register_string' mangled-name='zprop_register_string' filepath='../../module/zcommon/zprop_common.c' line='122' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_string'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='122' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zprop_common.c' line='122' column='1'/>
- <parameter type-id='type-id-89' name='def' filepath='../../module/zcommon/zprop_common.c' line='122' column='1'/>
- <parameter type-id='type-id-424' name='attr' filepath='../../module/zcommon/zprop_common.c' line='123' column='1'/>
- <parameter type-id='type-id-1' name='objset_types' filepath='../../module/zcommon/zprop_common.c' line='123' column='1'/>
- <parameter type-id='type-id-89' name='values' filepath='../../module/zcommon/zprop_common.c' line='123' column='1'/>
- <parameter type-id='type-id-89' name='colname' filepath='../../module/zcommon/zprop_common.c' line='124' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zprop_register_number' mangled-name='zprop_register_number' filepath='../../module/zcommon/zprop_common.c' line='132' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_number'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='132' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zprop_common.c' line='132' column='1'/>
- <parameter type-id='type-id-32' name='def' filepath='../../module/zcommon/zprop_common.c' line='132' column='1'/>
- <parameter type-id='type-id-424' name='attr' filepath='../../module/zcommon/zprop_common.c' line='133' column='1'/>
- <parameter type-id='type-id-1' name='objset_types' filepath='../../module/zcommon/zprop_common.c' line='133' column='1'/>
- <parameter type-id='type-id-89' name='values' filepath='../../module/zcommon/zprop_common.c' line='133' column='1'/>
- <parameter type-id='type-id-89' name='colname' filepath='../../module/zcommon/zprop_common.c' line='134' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zprop_register_index' mangled-name='zprop_register_index' filepath='../../module/zcommon/zprop_common.c' line='141' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_index'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='141' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zprop_common.c' line='141' column='1'/>
- <parameter type-id='type-id-32' name='def' filepath='../../module/zcommon/zprop_common.c' line='141' column='1'/>
- <parameter type-id='type-id-424' name='attr' filepath='../../module/zcommon/zprop_common.c' line='142' column='1'/>
- <parameter type-id='type-id-1' name='objset_types' filepath='../../module/zcommon/zprop_common.c' line='142' column='1'/>
- <parameter type-id='type-id-89' name='values' filepath='../../module/zcommon/zprop_common.c' line='142' column='1'/>
- <parameter type-id='type-id-89' name='colname' filepath='../../module/zcommon/zprop_common.c' line='143' column='1'/>
- <parameter type-id='type-id-425' name='idx_tbl' filepath='../../module/zcommon/zprop_common.c' line='143' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zprop_register_hidden' mangled-name='zprop_register_hidden' filepath='../../module/zcommon/zprop_common.c' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_hidden'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='150' column='1'/>
- <parameter type-id='type-id-89' name='name' filepath='../../module/zcommon/zprop_common.c' line='150' column='1'/>
- <parameter type-id='type-id-423' name='type' filepath='../../module/zcommon/zprop_common.c' line='150' column='1'/>
- <parameter type-id='type-id-424' name='attr' filepath='../../module/zcommon/zprop_common.c' line='151' column='1'/>
- <parameter type-id='type-id-1' name='objset_types' filepath='../../module/zcommon/zprop_common.c' line='151' column='1'/>
- <parameter type-id='type-id-89' name='colname' filepath='../../module/zcommon/zprop_common.c' line='151' column='1'/>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='zprop_iter_common' mangled-name='zprop_iter_common' filepath='../../module/zcommon/zprop_common.c' line='185' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_iter_common'>
- <parameter type-id='type-id-455' name='func' filepath='../../module/zcommon/zprop_common.c' line='185' column='1'/>
- <parameter type-id='type-id-21' name='cb' filepath='../../module/zcommon/zprop_common.c' line='185' column='1'/>
- <parameter type-id='type-id-6' name='show_all' filepath='../../module/zcommon/zprop_common.c' line='185' column='1'/>
- <parameter type-id='type-id-6' name='ordered' filepath='../../module/zcommon/zprop_common.c' line='186' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='186' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zprop_name_to_prop' mangled-name='zprop_name_to_prop' filepath='../../module/zcommon/zprop_common.c' line='274' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_name_to_prop'>
- <parameter type-id='type-id-89' name='propname' filepath='../../module/zcommon/zprop_common.c' line='274' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='274' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zprop_string_to_index' mangled-name='zprop_string_to_index' filepath='../../module/zcommon/zprop_common.c' line='289' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_string_to_index'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='289' column='1'/>
- <parameter type-id='type-id-89' name='string' filepath='../../module/zcommon/zprop_common.c' line='289' column='1'/>
- <parameter type-id='type-id-254' name='index' filepath='../../module/zcommon/zprop_common.c' line='289' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='290' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zprop_index_to_string' mangled-name='zprop_index_to_string' filepath='../../module/zcommon/zprop_common.c' line='315' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_index_to_string'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='315' column='1'/>
- <parameter type-id='type-id-32' name='index' filepath='../../module/zcommon/zprop_common.c' line='315' column='1'/>
- <parameter type-id='type-id-247' name='string' filepath='../../module/zcommon/zprop_common.c' line='315' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='316' column='1'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-decl name='zprop_random_value' mangled-name='zprop_random_value' filepath='../../module/zcommon/zprop_common.c' line='344' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_random_value'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='344' column='1'/>
- <parameter type-id='type-id-32' name='seed' filepath='../../module/zcommon/zprop_common.c' line='344' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='344' column='1'/>
- <return type-id='type-id-32'/>
- </function-decl>
- <function-decl name='zprop_values' mangled-name='zprop_values' filepath='../../module/zcommon/zprop_common.c' line='360' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_values'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='360' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='360' column='1'/>
- <return type-id='type-id-89'/>
- </function-decl>
- <function-decl name='zprop_valid_for_type' mangled-name='zprop_valid_for_type' filepath='../../module/zcommon/zprop_common.c' line='380' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_valid_for_type'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='380' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='380' column='1'/>
- <parameter type-id='type-id-6' name='headcheck' filepath='../../module/zcommon/zprop_common.c' line='380' column='1'/>
+ <function-decl name='zprop_register_hidden' mangled-name='zprop_register_hidden' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_register_hidden'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-409' name='type'/>
+ <parameter type-id='type-id-410' name='attr'/>
+ <parameter type-id='type-id-8' name='objset_types'/>
+ <parameter type-id='type-id-84' name='colname'/>
<return type-id='type-id-6'/>
</function-decl>
- <function-decl name='zprop_width' mangled-name='zprop_width' filepath='../../module/zcommon/zprop_common.c' line='401' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_width'>
- <parameter type-id='type-id-1' name='prop' filepath='../../module/zcommon/zprop_common.c' line='401' column='1'/>
- <parameter type-id='type-id-114' name='fixed' filepath='../../module/zcommon/zprop_common.c' line='401' column='1'/>
- <parameter type-id='type-id-26' name='type' filepath='../../module/zcommon/zprop_common.c' line='401' column='1'/>
- <return type-id='type-id-38'/>
+ <function-decl name='zprop_iter_common' mangled-name='zprop_iter_common' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_iter_common'>
+ <parameter type-id='type-id-439' name='func'/>
+ <parameter type-id='type-id-7' name='cb'/>
+ <parameter type-id='type-id-16' name='show_all'/>
+ <parameter type-id='type-id-16' name='ordered'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zprop_name_to_prop' mangled-name='zprop_name_to_prop' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_name_to_prop'>
+ <parameter type-id='type-id-84' name='propname'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zprop_string_to_index' mangled-name='zprop_string_to_index' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_string_to_index'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-84' name='string'/>
+ <parameter type-id='type-id-248' name='index'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zprop_index_to_string' mangled-name='zprop_index_to_string' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_index_to_string'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-22' name='index'/>
+ <parameter type-id='type-id-241' name='string'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-decl name='zprop_random_value' mangled-name='zprop_random_value' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_random_value'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-22' name='seed'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-22'/>
+ </function-decl>
+ <function-decl name='zprop_values' mangled-name='zprop_values' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_values'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-84'/>
+ </function-decl>
+ <function-decl name='zprop_valid_for_type' mangled-name='zprop_valid_for_type' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_valid_for_type'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <parameter type-id='type-id-16' name='headcheck'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-decl name='zprop_width' mangled-name='zprop_width' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='zprop_width'>
+ <parameter type-id='type-id-8' name='prop'/>
+ <parameter type-id='type-id-106' name='fixed'/>
+ <parameter type-id='type-id-13' name='type'/>
+ <return type-id='type-id-28'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='libshare.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libshare' language='LANG_C99'>
- <class-decl name='sa_fstype' size-in-bits='256' is-struct='yes' visibility='default' filepath='./libshare_impl.h' line='55' column='1' id='type-id-567'>
+ <class-decl name='sa_fstype' size-in-bits='256' is-struct='yes' visibility='default' id='type-id-533'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='next' type-id='type-id-568' visibility='default' filepath='./libshare_impl.h' line='56' column='1'/>
+ <var-decl name='next' type-id='type-id-534' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='name' type-id='type-id-89' visibility='default' filepath='./libshare_impl.h' line='58' column='1'/>
+ <var-decl name='name' type-id='type-id-84' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='ops' type-id='type-id-569' visibility='default' filepath='./libshare_impl.h' line='59' column='1'/>
+ <var-decl name='ops' type-id='type-id-535' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='fsinfo_index' type-id='type-id-1' visibility='default' filepath='./libshare_impl.h' line='60' column='1'/>
+ <var-decl name='fsinfo_index' type-id='type-id-8' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-567' size-in-bits='64' id='type-id-568'/>
- <class-decl name='sa_share_ops' size-in-bits='448' is-struct='yes' visibility='default' filepath='./libshare_impl.h' line='44' column='1' id='type-id-570'>
+ <pointer-type-def type-id='type-id-533' size-in-bits='64' id='type-id-534'/>
+ <class-decl name='sa_share_ops' size-in-bits='448' is-struct='yes' visibility='default' id='type-id-536'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='enable_share' type-id='type-id-571' visibility='default' filepath='./libshare_impl.h' line='45' column='1'/>
+ <var-decl name='enable_share' type-id='type-id-537' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='disable_share' type-id='type-id-571' visibility='default' filepath='./libshare_impl.h' line='46' column='1'/>
+ <var-decl name='disable_share' type-id='type-id-537' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='is_shared' type-id='type-id-572' visibility='default' filepath='./libshare_impl.h' line='47' column='1'/>
+ <var-decl name='is_shared' type-id='type-id-538' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='192'>
- <var-decl name='validate_shareopts' type-id='type-id-573' visibility='default' filepath='./libshare_impl.h' line='48' column='1'/>
+ <var-decl name='validate_shareopts' type-id='type-id-539' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='256'>
- <var-decl name='update_shareopts' type-id='type-id-574' visibility='default' filepath='./libshare_impl.h' line='49' column='1'/>
+ <var-decl name='update_shareopts' type-id='type-id-540' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='320'>
- <var-decl name='clear_shareopts' type-id='type-id-575' visibility='default' filepath='./libshare_impl.h' line='51' column='1'/>
+ <var-decl name='clear_shareopts' type-id='type-id-541' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='384'>
- <var-decl name='commit_shares' type-id='type-id-576' visibility='default' filepath='./libshare_impl.h' line='52' column='1'/>
+ <var-decl name='commit_shares' type-id='type-id-542' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='sa_share_impl' size-in-bits='192' is-struct='yes' visibility='default' filepath='./libshare_impl.h' line='34' column='1' id='type-id-577'>
+ <class-decl name='sa_share_impl' size-in-bits='192' is-struct='yes' visibility='default' id='type-id-543'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='sa_mountpoint' type-id='type-id-29' visibility='default' filepath='./libshare_impl.h' line='35' column='1'/>
+ <var-decl name='sa_mountpoint' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='sa_zfsname' type-id='type-id-29' visibility='default' filepath='./libshare_impl.h' line='36' column='1'/>
+ <var-decl name='sa_zfsname' type-id='type-id-17' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='sa_fsinfo' type-id='type-id-578' visibility='default' filepath='./libshare_impl.h' line='38' column='1'/>
+ <var-decl name='sa_fsinfo' type-id='type-id-544' visibility='default'/>
</data-member>
</class-decl>
- <class-decl name='sa_share_fsinfo' size-in-bits='64' is-struct='yes' visibility='default' filepath='./libshare_impl.h' line='30' column='1' id='type-id-579'>
+ <class-decl name='sa_share_fsinfo' size-in-bits='64' is-struct='yes' visibility='default' id='type-id-545'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='shareopts' type-id='type-id-29' visibility='default' filepath='./libshare_impl.h' line='31' column='1'/>
+ <var-decl name='shareopts' type-id='type-id-17' visibility='default'/>
</data-member>
</class-decl>
- <typedef-decl name='sa_share_fsinfo_t' type-id='type-id-579' filepath='./libshare_impl.h' line='32' column='1' id='type-id-580'/>
- <pointer-type-def type-id='type-id-580' size-in-bits='64' id='type-id-578'/>
- <pointer-type-def type-id='type-id-577' size-in-bits='64' id='type-id-581'/>
- <typedef-decl name='sa_share_impl_t' type-id='type-id-581' filepath='./libshare_impl.h' line='39' column='1' id='type-id-582'/>
- <pointer-type-def type-id='type-id-583' size-in-bits='64' id='type-id-571'/>
- <pointer-type-def type-id='type-id-584' size-in-bits='64' id='type-id-572'/>
- <pointer-type-def type-id='type-id-585' size-in-bits='64' id='type-id-573'/>
- <pointer-type-def type-id='type-id-586' size-in-bits='64' id='type-id-574'/>
- <pointer-type-def type-id='type-id-587' size-in-bits='64' id='type-id-575'/>
- <pointer-type-def type-id='type-id-588' size-in-bits='64' id='type-id-576'/>
- <typedef-decl name='sa_share_ops_t' type-id='type-id-570' filepath='./libshare_impl.h' line='53' column='1' id='type-id-589'/>
- <qualified-type-def type-id='type-id-589' const='yes' id='type-id-590'/>
- <pointer-type-def type-id='type-id-590' size-in-bits='64' id='type-id-569'/>
- <typedef-decl name='sa_fstype_t' type-id='type-id-567' filepath='./libshare_impl.h' line='61' column='1' id='type-id-591'/>
- <pointer-type-def type-id='type-id-591' size-in-bits='64' id='type-id-592'/>
- <function-decl name='register_fstype' mangled-name='register_fstype' filepath='/home/nabijaczleweli/store/code/zfs/lib/libshare/libshare.c' line='51' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='register_fstype'>
- <parameter type-id='type-id-89' name='name' filepath='/home/nabijaczleweli/store/code/zfs/lib/libshare/libshare.c' line='51' column='1'/>
- <parameter type-id='type-id-569' name='ops' filepath='/home/nabijaczleweli/store/code/zfs/lib/libshare/libshare.c' line='51' column='1'/>
- <return type-id='type-id-592'/>
- </function-decl>
- <function-decl name='libshare_nfs_init' filepath='./nfs.h' line='31' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='libshare_smb_init' filepath='./smb.h' line='49' column='1' visibility='default' binding='global' size-in-bits='64'>
- <return type-id='type-id-20'/>
- </function-decl>
- <function-decl name='sa_is_shared' mangled-name='sa_is_shared' filepath='/home/nabijaczleweli/store/code/zfs/lib/libshare/libshare.c' line='144' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='sa_is_shared'>
- <parameter type-id='type-id-89' name='mountpoint' filepath='/home/nabijaczleweli/store/code/zfs/lib/libshare/libshare.c' line='144' column='1'/>
- <parameter type-id='type-id-29' name='protocol' filepath='/home/nabijaczleweli/store/code/zfs/lib/libshare/libshare.c' line='144' column='1'/>
+ <typedef-decl name='sa_share_fsinfo_t' type-id='type-id-545' id='type-id-546'/>
+ <pointer-type-def type-id='type-id-546' size-in-bits='64' id='type-id-544'/>
+ <pointer-type-def type-id='type-id-543' size-in-bits='64' id='type-id-547'/>
+ <typedef-decl name='sa_share_impl_t' type-id='type-id-547' id='type-id-548'/>
+ <pointer-type-def type-id='type-id-549' size-in-bits='64' id='type-id-537'/>
+ <pointer-type-def type-id='type-id-550' size-in-bits='64' id='type-id-538'/>
+ <pointer-type-def type-id='type-id-551' size-in-bits='64' id='type-id-539'/>
+ <pointer-type-def type-id='type-id-552' size-in-bits='64' id='type-id-540'/>
+ <pointer-type-def type-id='type-id-553' size-in-bits='64' id='type-id-541'/>
+ <pointer-type-def type-id='type-id-554' size-in-bits='64' id='type-id-542'/>
+ <typedef-decl name='sa_share_ops_t' type-id='type-id-536' id='type-id-555'/>
+ <qualified-type-def type-id='type-id-555' const='yes' id='type-id-556'/>
+ <pointer-type-def type-id='type-id-556' size-in-bits='64' id='type-id-535'/>
+ <typedef-decl name='sa_fstype_t' type-id='type-id-533' id='type-id-557'/>
+ <pointer-type-def type-id='type-id-557' size-in-bits='64' id='type-id-558'/>
+ <function-decl name='register_fstype' mangled-name='register_fstype' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='register_fstype'>
+ <parameter type-id='type-id-84' name='name'/>
+ <parameter type-id='type-id-535' name='ops'/>
+ <return type-id='type-id-558'/>
+ </function-decl>
+ <function-decl name='libshare_nfs_init' visibility='default' binding='global' size-in-bits='64'>
+ <return type-id='type-id-6'/>
+ </function-decl>
+ <function-decl name='libshare_smb_init' visibility='default' binding='global' size-in-bits='64'>
<return type-id='type-id-6'/>
</function-decl>
- <function-type size-in-bits='64' id='type-id-588'>
- <return type-id='type-id-1'/>
+ <function-decl name='sa_is_shared' mangled-name='sa_is_shared' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='sa_is_shared'>
+ <parameter type-id='type-id-84' name='mountpoint'/>
+ <parameter type-id='type-id-17' name='protocol'/>
+ <return type-id='type-id-16'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-554'>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-585'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-551'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-583'>
- <parameter type-id='type-id-582'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-549'>
+ <parameter type-id='type-id-548'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-586'>
- <parameter type-id='type-id-582'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-type size-in-bits='64' id='type-id-552'>
+ <parameter type-id='type-id-548'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-584'>
- <parameter type-id='type-id-582'/>
- <return type-id='type-id-6'/>
+ <function-type size-in-bits='64' id='type-id-550'>
+ <parameter type-id='type-id-548'/>
+ <return type-id='type-id-16'/>
</function-type>
- <function-type size-in-bits='64' id='type-id-587'>
- <parameter type-id='type-id-582'/>
- <return type-id='type-id-20'/>
+ <function-type size-in-bits='64' id='type-id-553'>
+ <parameter type-id='type-id-548'/>
+ <return type-id='type-id-6'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='nfs.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libshare' language='LANG_C99'>
- <function-decl name='mkdir' filepath='/usr/include/x86_64-linux-gnu/sys/stat.h' line='317' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-19'/>
- <return type-id='type-id-1'/>
+ <function-decl name='mkdir' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-5'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='mkostemp' mangled-name='mkostemp64' filepath='/usr/include/stdlib.h' line='742' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='mkostemp' mangled-name='mkostemp64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='flock' filepath='/usr/include/x86_64-linux-gnu/sys/file.h' line='51' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-1'/>
- <return type-id='type-id-1'/>
+ <function-decl name='flock' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-8'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='nfs_copy_entries' filepath='./nfs.h' line='33' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='nfs_copy_entries' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <function-decl name='rename' filepath='/usr/include/stdio.h' line='148' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-1'/>
+ <function-decl name='rename' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-8'/>
</function-decl>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='os/linux/nfs.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libshare' language='LANG_C99'>
- <function-decl name='fputs' filepath='/usr/include/stdio.h' line='632' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-1'/>
+ <function-decl name='fputs' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-8'/>
</function-decl>
- <qualified-type-def type-id='type-id-570' const='yes' id='type-id-593'/>
- <pointer-type-def type-id='type-id-593' size-in-bits='64' id='type-id-594'/>
- <function-decl name='register_fstype' filepath='./libshare_impl.h' line='63' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-594'/>
- <return type-id='type-id-568'/>
+ <qualified-type-def type-id='type-id-536' const='yes' id='type-id-559'/>
+ <pointer-type-def type-id='type-id-559' size-in-bits='64' id='type-id-560'/>
+ <function-decl name='register_fstype' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-560'/>
+ <return type-id='type-id-534'/>
</function-decl>
- <pointer-type-def type-id='type-id-595' size-in-bits='64' id='type-id-596'/>
- <function-decl name='nfs_toggle_share' filepath='./nfs.h' line='34' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-89'/>
- <parameter type-id='type-id-581'/>
- <parameter type-id='type-id-596'/>
- <return type-id='type-id-1'/>
- </function-decl>
- <function-type size-in-bits='64' id='type-id-595'>
- <parameter type-id='type-id-581'/>
- <parameter type-id='type-id-29'/>
- <return type-id='type-id-1'/>
+ <pointer-type-def type-id='type-id-561' size-in-bits='64' id='type-id-562'/>
+ <function-decl name='nfs_toggle_share' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-84'/>
+ <parameter type-id='type-id-547'/>
+ <parameter type-id='type-id-562'/>
+ <return type-id='type-id-8'/>
+ </function-decl>
+ <function-type size-in-bits='64' id='type-id-561'>
+ <parameter type-id='type-id-547'/>
+ <parameter type-id='type-id-17'/>
+ <return type-id='type-id-8'/>
</function-type>
</abi-instr>
<abi-instr version='1.0' address-size='64' path='os/linux/smb.c' comp-dir-path='/home/nabijaczleweli/store/code/zfs/lib/libshare' language='LANG_C99'>
- <class-decl name='smb_share_s' size-in-bits='36992' is-struct='yes' visibility='default' filepath='./smb.h' line='38' column='1' id='type-id-597'>
+ <class-decl name='smb_share_s' size-in-bits='36992' is-struct='yes' visibility='default' id='type-id-563'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='name' type-id='type-id-598' visibility='default' filepath='./smb.h' line='39' column='1'/>
+ <var-decl name='name' type-id='type-id-564' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='2040'>
- <var-decl name='path' type-id='type-id-117' visibility='default' filepath='./smb.h' line='40' column='1'/>
+ <var-decl name='path' type-id='type-id-109' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='34808'>
- <var-decl name='comment' type-id='type-id-598' visibility='default' filepath='./smb.h' line='41' column='1'/>
+ <var-decl name='comment' type-id='type-id-564' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='36864'>
- <var-decl name='guest_ok' type-id='type-id-6' visibility='default' filepath='./smb.h' line='42' column='1'/>
+ <var-decl name='guest_ok' type-id='type-id-16' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='36928'>
- <var-decl name='next' type-id='type-id-599' visibility='default' filepath='./smb.h' line='44' column='1'/>
+ <var-decl name='next' type-id='type-id-565' visibility='default'/>
</data-member>
</class-decl>
- <array-type-def dimensions='1' type-id='type-id-42' size-in-bits='2040' id='type-id-598'>
- <subrange length='255' type-id='type-id-43' id='type-id-600'/>
+ <array-type-def dimensions='1' type-id='type-id-32' size-in-bits='2040' id='type-id-564'>
+ <subrange length='255' type-id='type-id-33' id='type-id-566'/>
</array-type-def>
- <pointer-type-def type-id='type-id-597' size-in-bits='64' id='type-id-599'/>
- <typedef-decl name='smb_share_t' type-id='type-id-597' filepath='./smb.h' line='45' column='1' id='type-id-601'/>
- <pointer-type-def type-id='type-id-601' size-in-bits='64' id='type-id-602'/>
- <var-decl name='smb_shares' type-id='type-id-602' mangled-name='smb_shares' visibility='default' filepath='os/linux/smb.c' line='69' column='1' elf-symbol-id='smb_shares'/>
- <function-decl name='opendir' filepath='/usr/include/dirent.h' line='134' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-89'/>
- <return type-id='type-id-316'/>
+ <pointer-type-def type-id='type-id-563' size-in-bits='64' id='type-id-565'/>
+ <typedef-decl name='smb_share_t' type-id='type-id-563' id='type-id-567'/>
+ <pointer-type-def type-id='type-id-567' size-in-bits='64' id='type-id-568'/>
+ <var-decl name='smb_shares' type-id='type-id-568' mangled-name='smb_shares' visibility='default' elf-symbol-id='smb_shares'/>
+ <function-decl name='opendir' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-84'/>
+ <return type-id='type-id-305'/>
</function-decl>
- <class-decl name='dirent' size-in-bits='2240' is-struct='yes' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='22' column='1' id='type-id-603'>
+ <class-decl name='dirent' size-in-bits='2240' is-struct='yes' visibility='default' id='type-id-569'>
<data-member access='public' layout-offset-in-bits='0'>
- <var-decl name='d_ino' type-id='type-id-318' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='28' column='1'/>
+ <var-decl name='d_ino' type-id='type-id-307' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='64'>
- <var-decl name='d_off' type-id='type-id-161' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='29' column='1'/>
+ <var-decl name='d_off' type-id='type-id-155' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='128'>
- <var-decl name='d_reclen' type-id='type-id-158' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='31' column='1'/>
+ <var-decl name='d_reclen' type-id='type-id-152' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='144'>
- <var-decl name='d_type' type-id='type-id-80' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='32' column='1'/>
+ <var-decl name='d_type' type-id='type-id-75' visibility='default'/>
</data-member>
<data-member access='public' layout-offset-in-bits='152'>
- <var-decl name='d_name' type-id='type-id-25' visibility='default' filepath='/usr/include/x86_64-linux-gnu/bits/dirent.h' line='33' column='1'/>
+ <var-decl name='d_name' type-id='type-id-12' visibility='default'/>
</data-member>
</class-decl>
- <pointer-type-def type-id='type-id-603' size-in-bits='64' id='type-id-604'/>
- <function-decl name='readdir' mangled-name='readdir64' filepath='/usr/include/dirent.h' line='165' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-316'/>
- <return type-id='type-id-604'/>
- </function-decl>
- <function-decl name='fgets' filepath='/usr/include/stdio.h' line='570' column='1' visibility='default' binding='global' size-in-bits='64'>
- <parameter type-id='type-id-29'/>
- <parameter type-id='type-id-1'/>
- <parameter type-id='type-id-156'/>
- <return type-id='type-id-29'/>
+ <pointer-type-def type-id='type-id-569' size-in-bits='64' id='type-id-570'/>
+ <function-decl name='readdir' mangled-name='readdir64' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-305'/>
+ <return type-id='type-id-570'/>
+ </function-decl>
+ <function-decl name='fgets' visibility='default' binding='global' size-in-bits='64'>
+ <parameter type-id='type-id-17'/>
+ <parameter type-id='type-id-8'/>
+ <parameter type-id='type-id-150'/>
+ <return type-id='type-id-17'/>
</function-decl>
</abi-instr>
</abi-corpus>
diff --git a/lib/libzfs/libzfs_changelist.c b/lib/libzfs/libzfs_changelist.c
index 1592b75eb..4d90a511f 100644
--- a/lib/libzfs/libzfs_changelist.c
+++ b/lib/libzfs/libzfs_changelist.c
@@ -284,7 +284,7 @@ changelist_postfix(prop_changelist_t *clp)
/*
* Is this "dataset" a child of "parent"?
*/
-boolean_t
+static boolean_t
isa_child_of(const char *dataset, const char *parent)
{
int len;
diff --git a/lib/libzfs/libzfs_impl.h b/lib/libzfs/libzfs_impl.h
index de6730408..ce7373582 100644
--- a/lib/libzfs/libzfs_impl.h
+++ b/lib/libzfs/libzfs_impl.h
@@ -131,27 +131,31 @@ typedef struct zfs_uri_handler {
#define CONFIG_BUF_MINSIZE 262144
-int zfs_error(libzfs_handle_t *, int, const char *);
-int zfs_error_fmt(libzfs_handle_t *, int, const char *, ...);
-void zfs_error_aux(libzfs_handle_t *, const char *, ...);
-void *zfs_alloc(libzfs_handle_t *, size_t);
-void *zfs_realloc(libzfs_handle_t *, void *, size_t, size_t);
-char *zfs_asprintf(libzfs_handle_t *, const char *, ...);
-char *zfs_strdup(libzfs_handle_t *, const char *);
-int no_memory(libzfs_handle_t *);
-
-int zfs_standard_error(libzfs_handle_t *, int, const char *);
-int zfs_standard_error_fmt(libzfs_handle_t *, int, const char *, ...);
-void zfs_setprop_error(libzfs_handle_t *, zfs_prop_t, int, char *);
-int zpool_standard_error(libzfs_handle_t *, int, const char *);
-int zpool_standard_error_fmt(libzfs_handle_t *, int, const char *, ...);
-
-zfs_handle_t *make_dataset_handle_zc(libzfs_handle_t *, zfs_cmd_t *);
-zfs_handle_t *make_dataset_simple_handle_zc(zfs_handle_t *, zfs_cmd_t *);
-
-int zprop_parse_value(libzfs_handle_t *, nvpair_t *, int, zfs_type_t,
+extern int zfs_error(libzfs_handle_t *, int, const char *);
+extern int zfs_error_fmt(libzfs_handle_t *, int, const char *, ...)
+ __attribute__((format(printf, 3, 4)));
+extern void zfs_error_aux(libzfs_handle_t *, const char *, ...)
+ __attribute__((format(printf, 2, 3)));
+extern void *zfs_alloc(libzfs_handle_t *, size_t);
+extern void *zfs_realloc(libzfs_handle_t *, void *, size_t, size_t);
+extern char *zfs_asprintf(libzfs_handle_t *, const char *, ...)
+ __attribute__((format(printf, 2, 3)));
+extern char *zfs_strdup(libzfs_handle_t *, const char *);
+extern int no_memory(libzfs_handle_t *);
+
+extern int zfs_standard_error_fmt(libzfs_handle_t *, int, const char *, ...)
+ __attribute__((format(printf, 3, 4)));
+extern void zfs_setprop_error(libzfs_handle_t *, zfs_prop_t, int, char *);
+extern int zpool_standard_error(libzfs_handle_t *, int, const char *);
+extern int zpool_standard_error_fmt(libzfs_handle_t *, int, const char *, ...)
+ __attribute__((format(printf, 3, 4)));
+
+extern zfs_handle_t *make_dataset_handle_zc(libzfs_handle_t *, zfs_cmd_t *);
+extern zfs_handle_t *make_dataset_simple_handle_zc(zfs_handle_t *, zfs_cmd_t *);
+
+extern int zprop_parse_value(libzfs_handle_t *, nvpair_t *, int, zfs_type_t,
nvlist_t *, char **, uint64_t *, const char *);
-int zprop_expand_list(libzfs_handle_t *hdl, zprop_list_t **plp,
+extern int zprop_expand_list(libzfs_handle_t *hdl, zprop_list_t **plp,
zfs_type_t type);
/*
@@ -171,44 +175,42 @@ int zprop_expand_list(libzfs_handle_t *hdl, zprop_list_t **plp,
typedef struct prop_changelist prop_changelist_t;
-int zcmd_alloc_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, size_t);
-int zcmd_write_src_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
-int zcmd_write_conf_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
-int zcmd_expand_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *);
-int zcmd_read_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t **);
-void zcmd_free_nvlists(zfs_cmd_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(prop_changelist_t *, const char *);
-void changelist_free(prop_changelist_t *);
-prop_changelist_t *changelist_gather(zfs_handle_t *, zfs_prop_t, int, int);
-int changelist_unshare(prop_changelist_t *, zfs_share_proto_t *);
-int changelist_haszonedchild(prop_changelist_t *);
-
-void remove_mountpoint(zfs_handle_t *);
-int create_parents(libzfs_handle_t *, char *, int);
-boolean_t isa_child_of(const char *dataset, const char *parent);
-
-zfs_handle_t *make_dataset_handle(libzfs_handle_t *, const char *);
-zfs_handle_t *make_bookmark_handle(zfs_handle_t *, const char *,
+extern int zcmd_alloc_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, size_t);
+extern int zcmd_write_src_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
+extern int zcmd_write_conf_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t *);
+extern int zcmd_expand_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *);
+extern int zcmd_read_dst_nvlist(libzfs_handle_t *, zfs_cmd_t *, nvlist_t **);
+extern void zcmd_free_nvlists(zfs_cmd_t *);
+
+extern int changelist_prefix(prop_changelist_t *);
+extern int changelist_postfix(prop_changelist_t *);
+extern void changelist_rename(prop_changelist_t *, const char *, const char *);
+extern void changelist_remove(prop_changelist_t *, const char *);
+extern void changelist_free(prop_changelist_t *);
+extern prop_changelist_t *changelist_gather(zfs_handle_t *, zfs_prop_t, int,
+ int);
+extern int changelist_unshare(prop_changelist_t *, zfs_share_proto_t *);
+extern int changelist_haszonedchild(prop_changelist_t *);
+
+extern void remove_mountpoint(zfs_handle_t *);
+extern int create_parents(libzfs_handle_t *, char *, int);
+
+extern zfs_handle_t *make_dataset_handle(libzfs_handle_t *, const char *);
+extern zfs_handle_t *make_bookmark_handle(zfs_handle_t *, const char *,
nvlist_t *props);
-int zpool_open_silent(libzfs_handle_t *, const char *, zpool_handle_t **);
+extern int zpool_open_silent(libzfs_handle_t *, const char *,
+ zpool_handle_t **);
-boolean_t zpool_name_valid(libzfs_handle_t *, boolean_t, const char *);
+extern boolean_t zpool_name_valid(libzfs_handle_t *, boolean_t, const char *);
-int zfs_validate_name(libzfs_handle_t *hdl, const char *path, int type,
+extern int zfs_validate_name(libzfs_handle_t *hdl, const char *path, int type,
boolean_t modifying);
-void namespace_clear(libzfs_handle_t *);
+extern void namespace_clear(libzfs_handle_t *);
extern int zfs_parse_options(char *, zfs_share_proto_t);
-extern int zfs_unshare_proto(zfs_handle_t *,
- const char *, zfs_share_proto_t *);
-
typedef struct {
zfs_prop_t p_prop;
char *p_name;
@@ -243,6 +245,7 @@ extern int do_mount(zfs_handle_t *zhp, const char *mntpt, char *opts,
int flags);
extern int do_unmount(const char *mntpt, int flags);
extern int zfs_share_proto(zfs_handle_t *zhp, zfs_share_proto_t *proto);
+extern int zfs_unshare_proto(zfs_handle_t *, const char *, zfs_share_proto_t *);
extern int unshare_one(libzfs_handle_t *hdl, const char *name,
const char *mountpoint, zfs_share_proto_t proto);
extern boolean_t zfs_is_mountable(zfs_handle_t *zhp, char *buf, size_t buflen,
diff --git a/lib/libzfs/libzfs_mount.c b/lib/libzfs/libzfs_mount.c
index 528ae4946..b074a6e6f 100644
--- a/lib/libzfs/libzfs_mount.c
+++ b/lib/libzfs/libzfs_mount.c
@@ -95,7 +95,7 @@
static int mount_tp_nthr = 512; /* tpool threads for multi-threaded mounting */
static void zfs_mount_task(void *);
-zfs_share_type_t zfs_is_shared_proto(zfs_handle_t *, char **,
+static zfs_share_type_t zfs_is_shared_proto(zfs_handle_t *, char **,
zfs_share_proto_t);
/*
@@ -107,16 +107,16 @@ proto_table_t proto_table[PROTO_END] = {
{ZFS_PROP_SHARESMB, "smb", EZFS_SHARESMBFAILED, EZFS_UNSHARESMBFAILED},
};
-zfs_share_proto_t nfs_only[] = {
+static zfs_share_proto_t nfs_only[] = {
PROTO_NFS,
PROTO_END
};
-zfs_share_proto_t smb_only[] = {
+static zfs_share_proto_t smb_only[] = {
PROTO_SMB,
PROTO_END
};
-zfs_share_proto_t share_all_proto[] = {
+static zfs_share_proto_t share_all_proto[] = {
PROTO_NFS,
PROTO_SMB,
PROTO_END
@@ -818,7 +818,7 @@ zfs_unshare(zfs_handle_t *zhp)
/*
* Check to see if the filesystem is currently shared.
*/
-zfs_share_type_t
+static zfs_share_type_t
zfs_is_shared_proto(zfs_handle_t *zhp, char **where, zfs_share_proto_t proto)
{
char *mountpoint;
@@ -1451,7 +1451,6 @@ zfs_foreach_mountpoint(libzfs_handle_t *hdl, zfs_handle_t **handles,
* Mount and share all datasets within the given pool. This assumes that no
* datasets within the pool are currently mounted.
*/
-#pragma weak zpool_mount_datasets = zpool_enable_datasets
int
zpool_enable_datasets(zpool_handle_t *zhp, const char *mntopts, int flags)
{
@@ -1513,8 +1512,6 @@ mountpoint_compare(const void *a, const void *b)
return (strcmp(mountb, mounta));
}
-/* alias for 2002/240 */
-#pragma weak zpool_unmount_datasets = zpool_disable_datasets
/*
* Unshare and unmount all datasets within the given pool. We don't want to
* rely on traversing the DSL to discover the filesystems within the pool,