diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2008-11-04 10:25:13 +0000 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-01-05 07:39:02 +0000 |
commit | cfc8b54922db7b647b6d88914dc7ef8c63b6671d (patch) | |
tree | 27ceb908468bee50f94de44ce380fadf9e0b547a /fs/gfs2/incore.h | |
parent | d8b71f7381769177998acb2f59ddc73465a60fe0 (diff) | |
download | linux-cfc8b54922db7b647b6d88914dc7ef8c63b6671d.tar.gz linux-cfc8b54922db7b647b6d88914dc7ef8c63b6671d.tar.bz2 linux-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.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 { }; 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; |