Changeset View
Changeset View
Standalone View
Standalone View
lib/libbe/be_impl.h
| Show All 30 Lines | |||||
| #include <libzfs.h> | #include <libzfs.h> | ||||
| #include "be.h" | #include "be.h" | ||||
| struct libbe_handle { | struct libbe_handle { | ||||
| char root[BE_MAXPATHLEN]; | char root[BE_MAXPATHLEN]; | ||||
| char rootfs[BE_MAXPATHLEN]; | char rootfs[BE_MAXPATHLEN]; | ||||
| char bootfs[BE_MAXPATHLEN]; | char bootfs[BE_MAXPATHLEN]; | ||||
| char *bootonce; | |||||
| size_t altroot_len; | size_t altroot_len; | ||||
| zpool_handle_t *active_phandle; | zpool_handle_t *active_phandle; | ||||
| libzfs_handle_t *lzh; | libzfs_handle_t *lzh; | ||||
| be_error_t error; | be_error_t error; | ||||
| bool print_on_err; | bool print_on_err; | ||||
| }; | }; | ||||
| struct libbe_deep_clone { | struct libbe_deep_clone { | ||||
| Show All 29 Lines | |||||