aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/rcu.h
diff options
context:
space:
mode:
authorFrederic Weisbecker <fweisbec@gmail.com>2012-07-11 14:26:38 -0400
committerFrederic Weisbecker <fweisbec@gmail.com>2012-09-26 09:47:12 -0400
commit0430499ce9d78691f3985962021b16bf8f8a8048 (patch)
tree886e9d37be386379de0b14d9583cc8c02dd4b46f /arch/x86/include/asm/rcu.h
parent20ab65e33f469c35f3dabde3445b668aa9c943ee (diff)
x86: Use the new schedule_user API on userspace preemption
This way we can exit the RCU extended quiescent state before we schedule a new task from irq/exception exit. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Alessio Igor Bogani <abogani@kernel.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Avi Kivity <avi@redhat.com> Cc: Chris Metcalf <cmetcalf@tilera.com> Cc: Christoph Lameter <cl@linux.com> Cc: Geoff Levand <geoff@infradead.org> Cc: Gilad Ben Yossef <gilad@benyossef.com> Cc: Hakan Akkan <hakanakkan@gmail.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Josh Triplett <josh@joshtriplett.org> Cc: Kevin Hilman <khilman@ti.com> Cc: Max Krasnyansky <maxk@qualcomm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephen Hemminger <shemminger@vyatta.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Sven-Thorsten Dietrich <thebigcorporation@gmail.com> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'arch/x86/include/asm/rcu.h')
-rw-r--r--arch/x86/include/asm/rcu.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/include/asm/rcu.h b/arch/x86/include/asm/rcu.h
index 439815b35ced..d1ac07a23979 100644
--- a/arch/x86/include/asm/rcu.h
+++ b/arch/x86/include/asm/rcu.h
@@ -1,6 +1,8 @@
1#ifndef _ASM_X86_RCU_H 1#ifndef _ASM_X86_RCU_H
2#define _ASM_X86_RCU_H 2#define _ASM_X86_RCU_H
3 3
4#ifndef __ASSEMBLY__
5
4#include <linux/rcupdate.h> 6#include <linux/rcupdate.h>
5#include <asm/ptrace.h> 7#include <asm/ptrace.h>
6 8
@@ -17,4 +19,14 @@ static inline void exception_exit(struct pt_regs *regs)
17#endif 19#endif
18} 20}
19 21
22#else /* __ASSEMBLY__ */
23
24#ifdef CONFIG_RCU_USER_QS
25# define SCHEDULE_USER call schedule_user
26#else
27# define SCHEDULE_USER call schedule
28#endif
29
30#endif /* !__ASSEMBLY__ */
31
20#endif 32#endif