* [PATCH] sched/idle/x86: add missing trace_cpu_idle to mwait_idle()
@ 2015-08-20 4:54 Jisheng Zhang
2015-08-20 19:42 ` [tip:x86/urgent] x86/idle: Restore trace_cpu_idle to mwait_idle() calls tip-bot for Jisheng Zhang
0 siblings, 1 reply; 2+ messages in thread
From: Jisheng Zhang @ 2015-08-20 4:54 UTC (permalink / raw)
To: tglx, mingo, hpa, x86, len.brown; +Cc: linux-kernel, Jisheng Zhang
Commit b253149b843f ("sched/idle/x86: Restore mwait_idle() to fix boot
hangs, to improve power savings and to improve performance") restores
mwait_idle(), but the trace_cpu_idle related callings are missing,
this causes powertop on my old desktop powered by Intel Core2 E6550
reports zero wakeups and zero events.
After this patch, the powertop tool works again.
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Fixes: b253149b843f ("sched/idle/x86: Restore mwait_idle() to ...")
---
arch/x86/kernel/process.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index 397688b..c27cad7 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -408,6 +408,7 @@ static int prefer_mwait_c1_over_halt(const struct cpuinfo_x86 *c)
static void mwait_idle(void)
{
if (!current_set_polling_and_test()) {
+ trace_cpu_idle_rcuidle(1, smp_processor_id());
if (this_cpu_has(X86_BUG_CLFLUSH_MONITOR)) {
smp_mb(); /* quirk */
clflush((void *)¤t_thread_info()->flags);
@@ -419,6 +420,7 @@ static void mwait_idle(void)
__sti_mwait(0, 0);
else
local_irq_enable();
+ trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
} else {
local_irq_enable();
}
--
2.5.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* [tip:x86/urgent] x86/idle: Restore trace_cpu_idle to mwait_idle() calls
2015-08-20 4:54 [PATCH] sched/idle/x86: add missing trace_cpu_idle to mwait_idle() Jisheng Zhang
@ 2015-08-20 19:42 ` tip-bot for Jisheng Zhang
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Jisheng Zhang @ 2015-08-20 19:42 UTC (permalink / raw)
To: linux-tip-commits; +Cc: hpa, mingo, len.brown, linux-kernel, tglx, jszhang
Commit-ID: e43d0189ac02415fe4487f79fc35e8f147e9ea0d
Gitweb: http://git.kernel.org/tip/e43d0189ac02415fe4487f79fc35e8f147e9ea0d
Author: Jisheng Zhang <jszhang@marvell.com>
AuthorDate: Thu, 20 Aug 2015 12:54:39 +0800
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Thu, 20 Aug 2015 21:37:45 +0200
x86/idle: Restore trace_cpu_idle to mwait_idle() calls
Commit b253149b843f ("sched/idle/x86: Restore mwait_idle() to fix boot
hangs, to improve power savings and to improve performance") restores
mwait_idle(), but the trace_cpu_idle related calls are missing. This
causes powertop on my old desktop powered by Intel Core2 E6550 to
report zero wakeups and zero events.
Add them back to restore the proper behaviour.
Fixes: b253149b843f ("sched/idle/x86: Restore mwait_idle() to ...")
Signed-off-by: Jisheng Zhang <jszhang@marvell.com>
Cc: <len.brown@intel.com>
Cc: stable@vger.kernel.org # 4.1
Link: http://lkml.kernel.org/r/1440046479-4262-1-git-send-email-jszhang@marvell.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
arch/x86/kernel/process.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
index 397688b..c27cad7 100644
--- a/arch/x86/kernel/process.c
+++ b/arch/x86/kernel/process.c
@@ -408,6 +408,7 @@ static int prefer_mwait_c1_over_halt(const struct cpuinfo_x86 *c)
static void mwait_idle(void)
{
if (!current_set_polling_and_test()) {
+ trace_cpu_idle_rcuidle(1, smp_processor_id());
if (this_cpu_has(X86_BUG_CLFLUSH_MONITOR)) {
smp_mb(); /* quirk */
clflush((void *)¤t_thread_info()->flags);
@@ -419,6 +420,7 @@ static void mwait_idle(void)
__sti_mwait(0, 0);
else
local_irq_enable();
+ trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, smp_processor_id());
} else {
local_irq_enable();
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-08-20 19:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-20 4:54 [PATCH] sched/idle/x86: add missing trace_cpu_idle to mwait_idle() Jisheng Zhang
2015-08-20 19:42 ` [tip:x86/urgent] x86/idle: Restore trace_cpu_idle to mwait_idle() calls tip-bot for Jisheng Zhang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox