libzfs_impl.h (fa9e4066) libzfs_impl.h (088e9d47)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

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

51 char *zfs_mntopts;
52};
53
54struct zpool_handle {
55 char zpool_name[ZPOOL_MAXNAMELEN];
56 int zpool_state;
57 size_t zpool_config_size;
58 nvlist_t *zpool_config;
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

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

51 char *zfs_mntopts;
52};
53
54struct zpool_handle {
55 char zpool_name[ZPOOL_MAXNAMELEN];
56 int zpool_state;
57 size_t zpool_config_size;
58 nvlist_t *zpool_config;
59 nvlist_t *zpool_old_config;
59};
60
61void zfs_error(const char *, ...);
62void zfs_fatal(const char *, ...);
63void *zfs_malloc(size_t);
64char *zfs_strdup(const char *);
65void no_memory(void);
66

--- 37 unchanged lines hidden ---
60};
61
62void zfs_error(const char *, ...);
63void zfs_fatal(const char *, ...);
64void *zfs_malloc(size_t);
65char *zfs_strdup(const char *);
66void no_memory(void);
67

--- 37 unchanged lines hidden ---