diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-08-27 09:56:58 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-08-31 10:32:58 -0400 |
commit | 3668b70fcf1fdc6799abf15f70fe3f50f407ec82 (patch) | |
tree | e254b29f4f2882298cc60112acc6878b56903a84 /fs/ubifs/commit.c | |
parent | 6b38d03f48da3006085e2d3e45168ed60475f7bb (diff) |
UBIFS: print less
UBIFS currently prints a lot of information when it mounts a volume, which
bothers some people. Make it less chatty - print only important information
by default.
Get rid of 'dbg_msg()' macro completely.
Reported-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'fs/ubifs/commit.c')
-rw-r--r-- | fs/ubifs/commit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ubifs/commit.c b/fs/ubifs/commit.c index a054cafd614..ff8229340cd 100644 --- a/fs/ubifs/commit.c +++ b/fs/ubifs/commit.c | |||
@@ -293,8 +293,8 @@ int ubifs_bg_thread(void *info) | |||
293 | int err; | 293 | int err; |
294 | struct ubifs_info *c = info; | 294 | struct ubifs_info *c = info; |
295 | 295 | ||
296 | dbg_msg("background thread \"%s\" started, PID %d", | 296 | ubifs_msg("background thread \"%s\" started, PID %d", |
297 | c->bgt_name, current->pid); | 297 | c->bgt_name, current->pid); |
298 | set_freezable(); | 298 | set_freezable(); |
299 | 299 | ||
300 | while (1) { | 300 | while (1) { |
@@ -328,7 +328,7 @@ int ubifs_bg_thread(void *info) | |||
328 | cond_resched(); | 328 | cond_resched(); |
329 | } | 329 | } |
330 | 330 | ||
331 | dbg_msg("background thread \"%s\" stops", c->bgt_name); | 331 | ubifs_msg("background thread \"%s\" stops", c->bgt_name); |
332 | return 0; | 332 | return 0; |
333 | } | 333 | } |
334 | 334 | ||