diff options
author | Tao Ma <boyu.mt@taobao.com> | 2011-07-23 22:18:05 +0200 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-07-23 22:18:05 +0200 |
commit | ced156e464e49b6b4153ede9aaa04d9a4ad24e0c (patch) | |
tree | fd75128cb77e6634a5f22c16b601af5857182c35 /fs/ext4 | |
parent | ext4: remove unnecessary ext4_get_group_info in ext4_mb_load_buddy (diff) | |
download | linux-ced156e464e49b6b4153ede9aaa04d9a4ad24e0c.tar.xz linux-ced156e464e49b6b4153ede9aaa04d9a4ad24e0c.zip |
ext4: don't increment s_mb_buddies_generated in ext4_mb_release
In ext4_mb_release, we use s_mb_buddies_generated++. Although
the output is OK, but I don't think we need this extra ++.
Signed-off-by: Tao Ma <boyu.mt@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/mballoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 447c0f3384ab..e16583032b6b 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -2581,7 +2581,7 @@ int ext4_mb_release(struct super_block *sb) atomic_read(&sbi->s_mb_lost_chunks)); printk(KERN_INFO "EXT4-fs: mballoc: %lu generated and it took %Lu\n", - sbi->s_mb_buddies_generated++, + sbi->s_mb_buddies_generated, sbi->s_mb_generation_time); printk(KERN_INFO "EXT4-fs: mballoc: %u preallocated, %u discarded\n", |