Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cfea7d7e authored by Rado Vrbovsky's avatar Rado Vrbovsky Committed by Thomas Gleixner
Browse files

tick: Change log level of NOHZ: local_softirq_pending message



The "NOHZ: local_softirq_pending" message is a largely informational
message.  This makes extra work for customers that have a policy of
investigating all kernel log messages logged at <= KERN_ERR log level.
This patch sets the message to a different log level.

[ tglx: Use pr_warn() ]

Signed-off-by: default avatarRado Vrbovsky <rvrbovsk@redhat.com>
Cc: Don Zickus <dzickus@redhat.com>
Link: http://lkml.kernel.org/r/2037057938.893524.1360345050772.JavaMail.root@redhat.com


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 8ffbc7d9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -482,7 +482,7 @@ static bool can_stop_idle_tick(int cpu, struct tick_sched *ts)

		if (ratelimit < 10 &&
		    (local_softirq_pending() & SOFTIRQ_STOP_IDLE_MASK)) {
			printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n",
			pr_warn("NOHZ: local_softirq_pending %02x\n",
				(unsigned int) local_softirq_pending());
			ratelimit++;
		}