[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1408086085-16691-3-git-send-email-chuansheng.liu@intel.com>
Date: Fri, 15 Aug 2014 15:01:25 +0800
From: Chuansheng Liu <chuansheng.liu@...el.com>
To: peterz@...radead.org, luto@...capital.net,
daniel.lezcano@...aro.org, rjw@...ysocki.net, mingo@...hat.com
Cc: linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org,
changcheng.liu@...el.com, xiaoming.wang@...el.com,
souvik.k.chakravarty@...el.com,
Chuansheng Liu <chuansheng.liu@...el.com>
Subject: [PATCH 3/3] cpuidle: Using the kick_all_cpus_sync() to wake up all cpus
Current latency notify callback has the same function with
kick_all_cpus_sync().
Here use it directly to remove the redundant code.
Signed-off-by: Chuansheng Liu <chuansheng.liu@...el.com>
---
drivers/cpuidle/cpuidle.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c
index ee9df5e..7827375 100644
--- a/drivers/cpuidle/cpuidle.c
+++ b/drivers/cpuidle/cpuidle.c
@@ -530,11 +530,6 @@ EXPORT_SYMBOL_GPL(cpuidle_register);
#ifdef CONFIG_SMP
-static void smp_callback(void *v)
-{
- /* we already woke the CPU up, nothing more to do */
-}
-
/*
* This function gets called when a part of the kernel has a new latency
* requirement. This means we need to get all processors out of their C-state,
@@ -544,7 +539,7 @@ static void smp_callback(void *v)
static int cpuidle_latency_notify(struct notifier_block *b,
unsigned long l, void *v)
{
- smp_call_function(smp_callback, NULL, 1);
+ kick_all_cpus_sync();
return NOTIFY_OK;
}
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists