aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/incore.h
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2008-11-04 10:25:13 +0000
committerSteven Whitehouse <swhiteho@redhat.com>2009-01-05 07:39:02 +0000
commitcfc8b54922db7b647b6d88914dc7ef8c63b6671d (patch)
tree27ceb908468bee50f94de44ce380fadf9e0b547a /fs/gfs2/incore.h
parentGFS2: Move rg_igeneration into struct gfs2_rgrpd (diff)
downloadlinux-dev-cfc8b54922db7b647b6d88914dc7ef8c63b6671d.tar.xz
linux-dev-cfc8b54922db7b647b6d88914dc7ef8c63b6671d.zip
GFS2: Move rg_free from gfs2_rgrpd_host to gfs2_rgrpd
The second of three fields which need to move, in order to remove the struct gfs2_rgrpd_host. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/incore.h')
-rw-r--r--fs/gfs2/incore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h
index 869ac83297e6..f8d977362515 100644
--- a/fs/gfs2/incore.h
+++ b/fs/gfs2/incore.h
@@ -69,7 +69,6 @@ struct gfs2_bitmap {
};
struct gfs2_rgrp_host {
- u32 rg_free;
u32 rg_dinodes;
};
@@ -82,6 +81,7 @@ struct gfs2_rgrpd {
u32 rd_length; /* length of rgrp header in fs blocks */
u32 rd_data; /* num of data blocks in rgrp */
u32 rd_bitbytes; /* number of bytes in data bitmaps */
+ u32 rd_free;
struct gfs2_rgrp_host rd_rg;
u64 rd_igeneration;
struct gfs2_bitmap *rd_bits;