[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1284150773.402.122.camel@laptop>
Date: Fri, 10 Sep 2010 22:32:53 +0200
From: Peter Zijlstra <peterz@...radead.org>
To: Jeff Chua <jeff.chua.linux@...il.com>
Cc: Nico Schottelius <nico-nospam@...ottelius.org>,
"Rafael J. Wysocki" <rjw@...k.pl>,
Nico Schottelius <nico-linux-20100709@...ottelius.org>,
Jesse Barnes <jbarnes@...tuousgeek.org>,
LKML <linux-kernel@...r.kernel.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Florian Pritz <flo@...n.at>,
Suresh Siddha <suresh.b.siddha@...el.com>, stable@...nel.org,
Ingo Molnar <mingo@...e.hu>, "Brown, Len" <lenb@...nel.org>
Subject: [PATCH] x86, tsc: Fix a preemption leak in
restore_sched_clock_state()
D'0h !! *facepalm*
Shame on me for not spotting that sooner.
---
Subject: x86, tsc: Fix a preemption leak in restore_sched_clock_state()
A real life genuine preemption leak..
Reported-by: Jeff Chua <jeff.chua.linux@...il.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@...llo.nl>
---
arch/x86/kernel/tsc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index 873a321..4496315 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -655,7 +655,7 @@ void restore_sched_clock_state(void)
local_irq_save(flags);
- get_cpu_var(cyc2ns_offset) = 0;
+ __get_cpu_var(cyc2ns_offset) = 0;
offset = cyc2ns_suspend - sched_clock();
for_each_possible_cpu(cpu)
--
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