Set version to 0.2
[qi-bootmenu/guyou.git] / fstype / lvm2_sb.h
blob75dfc107ad4cf969e2777470d2646f07b9b4f6e2
1 #ifndef __LVM2_SB_H
2 #define __LVM2_SB_H
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"
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];
18 #endif