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/ops_inode.c | |
parent | 1a7b1eed5802502fd649e04784becd58557fdcf1 (diff) | |
download | blackbird-obmc-linux-a9583c7983cbba9726bfe64ee46613d654fc9e26.tar.gz blackbird-obmc-linux-a9583c7983cbba9726bfe64ee46613d654fc9e26.zip |
[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/ops_inode.c')
-rw-r--r-- | fs/gfs2/ops_inode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 585b43a94ace..0e4eade47bf2 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c @@ -389,7 +389,6 @@ static int gfs2_mkdir(struct inode *dir, struct dentry *dentry, int mode) ip->i_inode.i_nlink = 2; ip->i_di.di_size = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode); ip->i_di.di_flags |= GFS2_DIF_JDATA; - ip->i_di.di_payload_format = GFS2_FORMAT_DE; ip->i_di.di_entries = 2; error = gfs2_meta_inode_buffer(ip, &dibh); |