diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-03-21 22:30:06 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-03-21 22:30:06 -0400 |
commit | 182f514f883abb5f942c94e61c371c4b406352d4 (patch) | |
tree | dfcdedfc4e68eee92107aa06fdf92952dadd259a /fs/ext4/super.c | |
parent | a8e25a83245618e6b0ddf82a9bba79c1b466804d (diff) |
ext4: remove useless s_dirt assignment
Clean-up ext4 a tiny bit by removing useless s_dirt assignment in
'ext4_fill_super()' because a bit later we anyway call
'ext4_setup_super()' which writes the superblock to the media
unconditionally.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 626c1f840118..150840a4af38 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -3277,7 +3277,6 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) | |||
3277 | #else | 3277 | #else |
3278 | es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH); | 3278 | es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH); |
3279 | #endif | 3279 | #endif |
3280 | sb->s_dirt = 1; | ||
3281 | } | 3280 | } |
3282 | 3281 | ||
3283 | /* Handle clustersize */ | 3282 | /* Handle clustersize */ |