be_impl.h (b3e7694832e81d7a904a10f525f8797b753bf0d3) be_impl.h (5086b6ec32d5c82c3d0894eb7bd74a9b81480644)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2017 Kyle J. Kneitinger <kyle@kneit.in>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

31#include <libzfs.h>
32
33#include "be.h"
34
35struct libbe_handle {
36 char root[BE_MAXPATHLEN];
37 char rootfs[BE_MAXPATHLEN];
38 char bootfs[BE_MAXPATHLEN];
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2017 Kyle J. Kneitinger <kyle@kneit.in>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

31#include <libzfs.h>
32
33#include "be.h"
34
35struct libbe_handle {
36 char root[BE_MAXPATHLEN];
37 char rootfs[BE_MAXPATHLEN];
38 char bootfs[BE_MAXPATHLEN];
39 char *bootonce;
39 size_t altroot_len;
40 zpool_handle_t *active_phandle;
41 libzfs_handle_t *lzh;
42 be_error_t error;
43 bool print_on_err;
44};
45
46struct libbe_deep_clone {

--- 29 unchanged lines hidden ---
40 size_t altroot_len;
41 zpool_handle_t *active_phandle;
42 libzfs_handle_t *lzh;
43 be_error_t error;
44 bool print_on_err;
45};
46
47struct libbe_deep_clone {

--- 29 unchanged lines hidden ---