diff options
author | Theodore Ts'o <tytso@mit.edu> | 2010-06-11 23:14:04 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-06-11 23:14:04 -0400 |
commit | a0375156ca1041574b5d47cc7e32f10b891151b0 (patch) | |
tree | b791961012b9348f289c3dda5dc071bdf9b736d2 /fs/ext4/mballoc.c | |
parent | 7e27d6e778cd87b6f2415515d7127eba53fe5d02 (diff) |
ext4: Clean up s_dirt handling
We don't need to set s_dirt in most of the ext4 code when journaling
is enabled. In ext3/4 some of the summary statistics for # of free
inodes, blocks, and directories are calculated from the per-block
group statistics when the file system is mounted or unmounted. As a
result the superblock doesn't have to be updated, either via the
journal or by setting s_dirt. There are a few exceptions, most
notably when resizing the file system, where the superblock needs to
be modified --- and in that case it should be done as a journalled
operation if possible, and s_dirt set only in no-journal mode.
This patch will optimize out some unneeded disk writes when using ext4
with a journal.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/mballoc.c')
-rw-r--r-- | fs/ext4/mballoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 12b3bc026a68..d9d267181ddc 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c | |||
@@ -2812,7 +2812,7 @@ ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac, | |||
2812 | err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh); | 2812 | err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh); |
2813 | 2813 | ||
2814 | out_err: | 2814 | out_err: |
2815 | sb->s_dirt = 1; | 2815 | ext4_mark_super_dirty(sb); |
2816 | brelse(bitmap_bh); | 2816 | brelse(bitmap_bh); |
2817 | return err; | 2817 | return err; |
2818 | } | 2818 | } |
@@ -4680,7 +4680,7 @@ do_more: | |||
4680 | put_bh(bitmap_bh); | 4680 | put_bh(bitmap_bh); |
4681 | goto do_more; | 4681 | goto do_more; |
4682 | } | 4682 | } |
4683 | sb->s_dirt = 1; | 4683 | ext4_mark_super_dirty(sb); |
4684 | error_return: | 4684 | error_return: |
4685 | if (freed) | 4685 | if (freed) |
4686 | dquot_free_block(inode, freed); | 4686 | dquot_free_block(inode, freed); |