diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-11-01 20:09:14 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-11-30 10:34:26 -0500 |
commit | a9583c7983cbba9726bfe64ee46613d654fc9e26 (patch) | |
tree | 37a23321b8254499e48f93bc65d946ab47547fa4 /fs/gfs2/ondisk.c | |
parent | 1a7b1eed5802502fd649e04784becd58557fdcf1 (diff) |
[GFS2] Shrink gfs2_inode (7) - di_payload_format
This is almost never used. Its there for backward
compatibility with GFS1. It doesn't need its own
field since it can always be calculated from the
inode mode & flags. This saves a bit more space
in the gfs2_inode.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/ondisk.c')
-rw-r--r-- | fs/gfs2/ondisk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/ondisk.c b/fs/gfs2/ondisk.c index 82003e872a37..b2baba5c50b7 100644 --- a/fs/gfs2/ondisk.c +++ b/fs/gfs2/ondisk.c | |||
@@ -176,9 +176,10 @@ void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf) | |||
176 | str->di_generation = cpu_to_be64(di->di_generation); | 176 | str->di_generation = cpu_to_be64(di->di_generation); |
177 | 177 | ||
178 | str->di_flags = cpu_to_be32(di->di_flags); | 178 | str->di_flags = cpu_to_be32(di->di_flags); |
179 | str->di_payload_format = cpu_to_be32(di->di_payload_format); | ||
180 | str->di_height = cpu_to_be16(di->di_height); | 179 | str->di_height = cpu_to_be16(di->di_height); |
181 | 180 | str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) && | |
181 | !(ip->i_di.di_flags & GFS2_DIF_EXHASH) ? | ||
182 | GFS2_FORMAT_DE : 0); | ||
182 | str->di_depth = cpu_to_be16(di->di_depth); | 183 | str->di_depth = cpu_to_be16(di->di_depth); |
183 | str->di_entries = cpu_to_be32(di->di_entries); | 184 | str->di_entries = cpu_to_be32(di->di_entries); |
184 | 185 | ||
@@ -197,7 +198,6 @@ void gfs2_dinode_print(const struct gfs2_inode *ip) | |||
197 | printk(KERN_INFO " di_goal_data = %llu\n", (unsigned long long)di->di_goal_data); | 198 | printk(KERN_INFO " di_goal_data = %llu\n", (unsigned long long)di->di_goal_data); |
198 | 199 | ||
199 | pv(di, di_flags, "0x%.8X"); | 200 | pv(di, di_flags, "0x%.8X"); |
200 | pv(di, di_payload_format, "%u"); | ||
201 | pv(di, di_height, "%u"); | 201 | pv(di, di_height, "%u"); |
202 | 202 | ||
203 | pv(di, di_depth, "%u"); | 203 | pv(di, di_depth, "%u"); |