From: Mandeep Singh Baines Date: Wed, 23 Mar 2011 23:43:27 +0000 (-0700) Subject: taskstats: use appropriate printk priority level X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f9b182e24ecb2b3bb33340f053ba31c8c4e1d895;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git taskstats: use appropriate printk priority level printk()s without a priority level default to KERN_WARNING. To reduce noise at KERN_WARNING, this patch set the priority level appriopriately for unleveled printks()s. This should be useful to folks that look at dmesg warnings closely. Signed-off-by: Mandeep Singh Baines Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/taskstats.c b/kernel/taskstats.c index 3971c6b9d58d..9ffea360a778 100644 --- a/kernel/taskstats.c +++ b/kernel/taskstats.c @@ -685,7 +685,7 @@ static int __init taskstats_init(void) goto err_cgroup_ops; family_registered = 1; - printk("registered taskstats version %d\n", TASKSTATS_GENL_VERSION); + pr_info("registered taskstats version %d\n", TASKSTATS_GENL_VERSION); return 0; err_cgroup_ops: genl_unregister_ops(&family, &taskstats_ops);