summaryrefslogtreecommitdiff
path: root/include/linux/gfs2_ondisk.h
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-10-13 21:57:23 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-11-30 10:33:26 -0500
commite928a76f959e89884f6186bb6f846c533847d5df (patch)
treea1946142a0b82c2b6366ddfe7ab02ff706b0a74c /include/linux/gfs2_ondisk.h
parent2a2c98247b822db8df037a56c27201f9d716ac66 (diff)
[GFS2] split and annotate gfs2_meta_header
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'include/linux/gfs2_ondisk.h')
-rw-r--r--include/linux/gfs2_ondisk.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/include/linux/gfs2_ondisk.h b/include/linux/gfs2_ondisk.h
index fb69a64c70cd..76eb9e1bb773 100644
--- a/include/linux/gfs2_ondisk.h
+++ b/include/linux/gfs2_ondisk.h
@@ -89,6 +89,12 @@ struct gfs2_meta_header {
__be32 __pad1; /* Was incarnation number in gfs1 */
};
+struct gfs2_meta_header_host {
+ __u32 mh_magic;
+ __u32 mh_type;
+ __u32 mh_format;
+};
+
/*
* super-block structure
*
@@ -129,7 +135,7 @@ struct gfs2_sb {
};
struct gfs2_sb_host {
- struct gfs2_meta_header sb_header;
+ struct gfs2_meta_header_host sb_header;
__u32 sb_fs_format;
__u32 sb_multihost_format;
@@ -194,7 +200,7 @@ struct gfs2_rgrp {
};
struct gfs2_rgrp_host {
- struct gfs2_meta_header rg_header;
+ struct gfs2_meta_header_host rg_header;
__u32 rg_flags;
__u32 rg_free;
@@ -297,7 +303,7 @@ struct gfs2_dinode {
};
struct gfs2_dinode_host {
- struct gfs2_meta_header di_header;
+ struct gfs2_meta_header_host di_header;
struct gfs2_inum di_num;
@@ -406,7 +412,7 @@ struct gfs2_log_header {
};
struct gfs2_log_header_host {
- struct gfs2_meta_header lh_header;
+ struct gfs2_meta_header_host lh_header;
__u64 lh_sequence; /* Sequence number of this transaction */
__u32 lh_flags; /* GFS2_LOG_HEAD_... */