[patch 3/3] sched: Use local_irq_save_nmi() in cpu_clock()

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Peter Zijlstra
Date: Tuesday, April 6, 2010 - 6:28 am

Since we can call cpu_clock() from NMI context fix up the IRQ
disabling to conform to the new rules.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
 kernel/sched_clock.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: linux-2.6/kernel/sched_clock.c
===================================================================
--- linux-2.6.orig/kernel/sched_clock.c
+++ linux-2.6/kernel/sched_clock.c
@@ -241,9 +241,9 @@ unsigned long long cpu_clock(int cpu)
 	unsigned long long clock;
 	unsigned long flags;
 
-	local_irq_save(flags);
+	local_irq_save_nmi(flags);
 	clock = sched_clock_cpu(cpu);
-	local_irq_restore(flags);
+	local_irq_restore_nmi(flags);
 
 	return clock;
 }


--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[patch 0/3] IRQ disable vs NMI, Peter Zijlstra, (Tue Apr 6, 6:28 am)
[patch 1/3] kernel: local_irq_{save,restore}_nmi(), Peter Zijlstra, (Tue Apr 6, 6:28 am)
[patch 2/3] perf: Use local_irq_save_nmi(), Peter Zijlstra, (Tue Apr 6, 6:28 am)
[patch 3/3] sched: Use local_irq_save_nmi() in cpu_clock(), Peter Zijlstra, (Tue Apr 6, 6:28 am)
[No subject], David Miller, (Tue Apr 6, 10:54 am)
Re: [patch 0/3] IRQ disable vs NMI, David Miller, (Tue Apr 6, 4:39 pm)
Re: [patch 1/3] kernel: local_irq_{save,restore}_nmi(), Steven Rostedt, (Tue Apr 6, 6:13 pm)
Re: [patch 1/3] kernel: local_irq_{save,restore}_nmi(), David Miller, (Tue Apr 6, 6:19 pm)
Re: [patch 1/3] kernel: local_irq_{save,restore}_nmi(), Steven Rostedt, (Tue Apr 6, 6:23 pm)
Re: [patch 3/3] sched: Use local_irq_save_nmi() in cpu_clock(), Frederic Weisbecker, (Wed Apr 7, 4:27 am)
Re: [patch 3/3] sched: Use local_irq_save_nmi() in cpu_clock(), Frederic Weisbecker, (Wed Apr 7, 4:44 am)