Commit a36c106d authored by Jaegeuk Kim's avatar Jaegeuk Kim

f2fs: use printk_ratelimited for f2fs_msg

This patch reduces contention of printks.
Signed-off-by: default avatarJaegeuk Kim <jaegeuk@kernel.org>
parent bf9e697e
......@@ -159,7 +159,7 @@ void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
va_start(args, fmt);
vaf.fmt = fmt;
vaf.va = &args;
printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
printk_ratelimited("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
va_end(args);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment