diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2008-11-04 05:25:13 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-01-05 02:39:02 -0500 |
commit | cfc8b54922db7b647b6d88914dc7ef8c63b6671d (patch) | |
tree | 27ceb908468bee50f94de44ce380fadf9e0b547a /fs/gfs2/incore.h | |
parent | d8b71f7381769177998acb2f59ddc73465a60fe0 (diff) |
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.h | 2 |
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 { | |||
69 | }; | 69 | }; |
70 | 70 | ||
71 | struct gfs2_rgrp_host { | 71 | struct gfs2_rgrp_host { |
72 | u32 rg_free; | ||
73 | u32 rg_dinodes; | 72 | u32 rg_dinodes; |
74 | }; | 73 | }; |
75 | 74 | ||
@@ -82,6 +81,7 @@ struct gfs2_rgrpd { | |||
82 | u32 rd_length; /* length of rgrp header in fs blocks */ | 81 | u32 rd_length; /* length of rgrp header in fs blocks */ |
83 | u32 rd_data; /* num of data blocks in rgrp */ | 82 | u32 rd_data; /* num of data blocks in rgrp */ |
84 | u32 rd_bitbytes; /* number of bytes in data bitmaps */ | 83 | u32 rd_bitbytes; /* number of bytes in data bitmaps */ |
84 | u32 rd_free; | ||
85 | struct gfs2_rgrp_host rd_rg; | 85 | struct gfs2_rgrp_host rd_rg; |
86 | u64 rd_igeneration; | 86 | u64 rd_igeneration; |
87 | struct gfs2_bitmap *rd_bits; | 87 | struct gfs2_bitmap *rd_bits; |