Upgraded GRUB2 to 2.00 release.
[AROS.git] / arch / all-pc / boot / grub2-aros / include / grub / zfs / dmu_objset.h
blob57d21db5c3b7402d55cad4a286fd7c53d26b1ba4
1 /*
2 * GRUB -- GRand Unified Bootloader
3 * Copyright (C) 1999,2000,2001,2002,2003,2004 Free Software Foundation, Inc.
4 * Copyright (C) 2010 Robert Millan <rmh@gnu.org>
6 * GRUB is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
21 * Use is subject to license terms.
24 #ifndef _SYS_DMU_OBJSET_H
25 #define _SYS_DMU_OBJSET_H
27 #include <grub/zfs/zil.h>
29 #define OBJSET_PHYS_SIZE 2048
30 #define OBJSET_PHYS_SIZE_V14 1024
32 typedef struct objset_phys {
33 dnode_phys_t os_meta_dnode;
34 zil_header_t os_zil_header;
35 grub_uint64_t os_type;
36 grub_uint64_t os_flags;
37 char os_pad[OBJSET_PHYS_SIZE - sizeof (dnode_phys_t)*3 -
38 sizeof (zil_header_t) - sizeof (grub_uint64_t)*2];
39 dnode_phys_t os_userused_dnode;
40 dnode_phys_t os_groupused_dnode;
41 } objset_phys_t;
43 #endif /* _SYS_DMU_OBJSET_H */