From a5ae989957cbc3f3b7bc40677bd9e459c0917528 Mon Sep 17 00:00:00 2001 From: Tejun Heo Date: Tue, 29 Dec 2015 14:53:56 -0500 Subject: [PATCH] cgroup: demote subsystem init messages to KERN_DEBUG These are noisy during boot and not all that interesting. Signed-off-by: Tejun Heo --- kernel/cgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/cgroup.c b/kernel/cgroup.c index 6b33631251b9..122ec5543335 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c @@ -5169,7 +5169,7 @@ static void __init cgroup_init_subsys(struct cgroup_subsys *ss, bool early) { struct cgroup_subsys_state *css; - printk(KERN_INFO "Initializing cgroup subsys %s\n", ss->name); + pr_debug("Initializing cgroup subsys %s\n", ss->name); mutex_lock(&cgroup_mutex); -- 2.34.1