aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/ialloc.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2011-01-10 12:18:25 -0500
committerTheodore Ts'o <tytso@mit.edu>2011-01-10 12:18:25 -0500
commit353eb83c1422c6326eaab30ce044a179c6018169 (patch)
treefd43e39b344de5ee43d82c90f0affda68a65f2df /fs/ext4/ialloc.c
parent8a2005d3f84457b7d7d8646ab5195341d9e5f06a (diff)
downloadkernel_samsung_smdk4412-353eb83c1422c6326eaab30ce044a179c6018169.zip
kernel_samsung_smdk4412-353eb83c1422c6326eaab30ce044a179c6018169.tar.gz
kernel_samsung_smdk4412-353eb83c1422c6326eaab30ce044a179c6018169.tar.bz2
ext4: drop i_state_flags on architectures with 64-bit longs
We can store the dynamic inode state flags in the high bits of EXT4_I(inode)->i_flags, and eliminate i_state_flags. This saves 8 bytes from the size of ext4_inode_info structure, which when multiplied by the number of the number of in the inode cache, can save a lot of memory. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ialloc.c')
-rw-r--r--fs/ext4/ialloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c
index 1ce240a..eb9097a 100644
--- a/fs/ext4/ialloc.c
+++ b/fs/ext4/ialloc.c
@@ -1027,7 +1027,7 @@ got:
inode->i_generation = sbi->s_next_generation++;
spin_unlock(&sbi->s_next_gen_lock);
- ei->i_state_flags = 0;
+ ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
ext4_set_inode_state(inode, EXT4_STATE_NEW);
ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;