Message ID | 1345451602-22494-1-git-send-email-u.kleine-koenig@pengutronix.de |
---|---|
State | New, archived |
Headers | show |
On Mon, 2012-08-20 at 10:33 +0200, Uwe Kleine-König wrote: > With pr_debug being used instead of printk(KERN_DEBUG ...) the messages > don't make it into the bootlog without further actions. This saves 32 > lines of ubifs messages for me that are not needed most of the time on a > system with / on ubifs. I've pushed different patches to both UBI and UBIFS - now they print much less. I've sent you the patches, but I've actually modified them after sending. If you want to see the last version, let me know. They are available in the UBI/UBIFS git trees.
diff --git a/fs/ubifs/debug.h b/fs/ubifs/debug.h index 8b8cc4e..39828f2 100644 --- a/fs/ubifs/debug.h +++ b/fs/ubifs/debug.h @@ -176,7 +176,7 @@ struct ubifs_global_debug_info { /* Just a debugging messages not related to any specific UBIFS subsystem */ #define dbg_msg(fmt, ...) \ - printk(KERN_DEBUG "UBIFS DBG (pid %d): %s: " fmt "\n", current->pid, \ + pr_debug("UBIFS DBG (pid %d): %s: " fmt "\n", current->pid, \ __func__, ##__VA_ARGS__) /* General messages */
With pr_debug being used instead of printk(KERN_DEBUG ...) the messages don't make it into the bootlog without further actions. This saves 32 lines of ubifs messages for me that are not needed most of the time on a system with / on ubifs. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> --- fs/ubifs/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)