repo.or.cz
/
qi-bootmenu
/
guyou.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove grid gui module
[qi-bootmenu/guyou.git]
/
fstype
/
lvm2_sb.h
blob
75dfc107ad4cf969e2777470d2646f07b9b4f6e2
1
#ifndef __LVM2_SB_H
2
#define __LVM2_SB_H
3
4
/* LVM2 super block definitions */
5
#define LVM2_MAGIC_L 8
6
#define LVM2_MAGIC
"LABELONE"
7
#define LVM2_TYPE_L 8
8
#define LVM2_TYPE
"LVM2 001"
9
10
struct
lvm2_super_block
{
11
char
magic
[
LVM2_MAGIC_L
];
12
__be64 sector
;
13
__be32 crc
;
14
__be32 offset
;
15
char
type
[
LVM2_TYPE_L
];
16
};
17
18
#endif