loader: Use the actual struct devdesc at the start of all *_devdesc structs
[unleashed.git] / usr / src / boot / sys / boot / zfs / libzfs.h
blob5945b465f80c11b27b43af470eeb67cdfc68f348
1 /*-
2 * Copyright (c) 2012 Andriy Gapon <avg@FreeBSD.org>
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
26 * $FreeBSD$
29 #ifndef _BOOT_LIBZFS_H_
30 #define _BOOT_LIBZFS_H_
32 #define ZFS_MAXNAMELEN 256
35 * ZFS fully-qualified device descriptor.
36 * Arch-specific device descriptors should be binary compatible with this
37 * structure if they are to support ZFS.
39 /* Note: Must match the 'struct devdesc' in stand.h */
40 struct zfs_devdesc {
41 struct devdesc dd;
42 uint64_t pool_guid;
43 uint64_t root_guid;
46 struct zfs_boot_args
48 uint32_t size;
49 uint32_t reserved;
50 uint64_t pool;
51 uint64_t root;
52 uint64_t primary_pool;
53 uint64_t primary_vdev;
56 int zfs_parsedev(struct zfs_devdesc *dev, const char *devspec,
57 const char **path);
58 char *zfs_bootfs(void *vdev);
59 char *zfs_fmtdev(void *vdev);
60 int zfs_probe_dev(const char *devname, uint64_t *pool_guid);
61 int zfs_list(const char *name);
62 uint64_t ldi_get_size(void *);
63 #ifdef __FreeBSD__
64 void init_zfs_bootenv(char *currdev);
65 int zfs_bootenv(const char *name);
66 int zfs_belist_add(const char *name, uint64_t __unused);
67 int zfs_set_env(void);
68 #endif
70 extern struct devsw zfs_dev;
71 extern struct fs_ops zfs_fsops;
73 #endif /*_BOOT_LIBZFS_H_*/