Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

UBIFS: remove printk

Remove the "UBIFS background thread ubifs_bgd0_0 started" message.
We kill the background thread when we switch to R/O mode, and
start it again whan we switch to R/W mode. OLPC is doing this
many times during boot, and we see this message many times as
well, which is irritating. So just kill the message.

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>

+2 -2
+2 -2
fs/ubifs/commit.c
··· 234 234 int err; 235 235 struct ubifs_info *c = info; 236 236 237 - ubifs_msg("background thread \"%s\" started, PID %d", 238 - c->bgt_name, current->pid); 237 + dbg_msg("background thread \"%s\" started, PID %d", 238 + c->bgt_name, current->pid); 239 239 set_freezable(); 240 240 241 241 while (1) {