From ce3ef1df548ef1fe338d37bf873ed71ddae39f3c Mon Sep 17 00:00:00 2001 From: Prateek Sood Date: Thu, 11 May 2017 17:02:29 +0530 Subject: [PATCH] hotplug cpu: ratelimit logs for thermal veto Thermal notifier callback is not allowing CPU to come online. Rate limit logs to avoid watchdog non-secure bite as it is a valid rejection due to high temperature of SOC. Change-Id: If3f8df7370e6ffd18b50e7451431d6a26023359d Signed-off-by: Prateek Sood --- kernel/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/cpu.c b/kernel/cpu.c index 87b88e8c0233..1d6b0a209bc0 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c @@ -523,8 +523,8 @@ static int _cpu_up(unsigned int cpu, int tasks_frozen) ret = __cpu_notify(CPU_UP_PREPARE | mod, hcpu, -1, &nr_calls); if (ret) { nr_calls--; - pr_warn("%s: attempt to bring up CPU %u failed\n", - __func__, cpu); + pr_warn_ratelimited("%s: attempt to bring up CPU %u failed\n", + __func__, cpu); goto out_notify; }