Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/kinit/fstype/lvm2_sb.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 9 months ago) by niro
File MIME type: text/plain
File size: 319 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

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