ext4: add missing space in printk's in __ext4_grp_locked_error()
authorRobin Dong <sanbai@taobao.com>
Tue, 22 Mar 2011 00:39:22 +0000 (20:39 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 22 Mar 2011 00:39:22 +0000 (20:39 -0400)
When we do performence-testing on ext4 filesystem, we observed a
warning like this:

EXT4-fs error (device sda7): ext4_mb_generate_buddy:718: group 259825901 blocks in bitmap, 26057 in gd

instead, it should be

"group 2598, 25901 blocks in bitmap, 26057 in gd"

Reviewed-by: Coly Li <bosong.ly@taobao.com>
Cc: Tao Ma <boyu.mt@taobao.com>
Signed-off-by: Robin Dong <sanbai@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/super.c

index b357c2700d726a8a31c15e33030a0e5cee28a57d..ccfa6865ea595784472ad4d232392cf81462223f 100644 (file)
@@ -595,7 +595,7 @@ __acquires(bitlock)
 
        vaf.fmt = fmt;
        vaf.va = &args;
-       printk(KERN_CRIT "EXT4-fs error (device %s): %s:%d: group %u",
+       printk(KERN_CRIT "EXT4-fs error (device %s): %s:%d: group %u",
               sb->s_id, function, line, grp);
        if (ino)
                printk(KERN_CONT "inode %lu: ", ino);
This page took 0.032932 seconds and 5 git commands to generate.