diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2012-07-11 14:26:38 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2012-09-26 09:47:12 -0400 |
commit | 0430499ce9d78691f3985962021b16bf8f8a8048 (patch) | |
tree | 886e9d37be386379de0b14d9583cc8c02dd4b46f /arch/x86/kernel/entry_64.S | |
parent | 20ab65e33f469c35f3dabde3445b668aa9c943ee (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/kernel/entry_64.S')
-rw-r--r-- | arch/x86/kernel/entry_64.S | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index 69babd8c834f..1a8f3cbb6ee3 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -56,6 +56,7 @@ | |||
56 | #include <asm/ftrace.h> | 56 | #include <asm/ftrace.h> |
57 | #include <asm/percpu.h> | 57 | #include <asm/percpu.h> |
58 | #include <asm/asm.h> | 58 | #include <asm/asm.h> |
59 | #include <asm/rcu.h> | ||
59 | #include <linux/err.h> | 60 | #include <linux/err.h> |
60 | 61 | ||
61 | /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */ | 62 | /* Avoid __ASSEMBLER__'ifying <linux/audit.h> just for this. */ |
@@ -565,7 +566,7 @@ sysret_careful: | |||
565 | TRACE_IRQS_ON | 566 | TRACE_IRQS_ON |
566 | ENABLE_INTERRUPTS(CLBR_NONE) | 567 | ENABLE_INTERRUPTS(CLBR_NONE) |
567 | pushq_cfi %rdi | 568 | pushq_cfi %rdi |
568 | call schedule | 569 | SCHEDULE_USER |
569 | popq_cfi %rdi | 570 | popq_cfi %rdi |
570 | jmp sysret_check | 571 | jmp sysret_check |
571 | 572 | ||
@@ -678,7 +679,7 @@ int_careful: | |||
678 | TRACE_IRQS_ON | 679 | TRACE_IRQS_ON |
679 | ENABLE_INTERRUPTS(CLBR_NONE) | 680 | ENABLE_INTERRUPTS(CLBR_NONE) |
680 | pushq_cfi %rdi | 681 | pushq_cfi %rdi |
681 | call schedule | 682 | SCHEDULE_USER |
682 | popq_cfi %rdi | 683 | popq_cfi %rdi |
683 | DISABLE_INTERRUPTS(CLBR_NONE) | 684 | DISABLE_INTERRUPTS(CLBR_NONE) |
684 | TRACE_IRQS_OFF | 685 | TRACE_IRQS_OFF |
@@ -974,7 +975,7 @@ retint_careful: | |||
974 | TRACE_IRQS_ON | 975 | TRACE_IRQS_ON |
975 | ENABLE_INTERRUPTS(CLBR_NONE) | 976 | ENABLE_INTERRUPTS(CLBR_NONE) |
976 | pushq_cfi %rdi | 977 | pushq_cfi %rdi |
977 | call schedule | 978 | SCHEDULE_USER |
978 | popq_cfi %rdi | 979 | popq_cfi %rdi |
979 | GET_THREAD_INFO(%rcx) | 980 | GET_THREAD_INFO(%rcx) |
980 | DISABLE_INTERRUPTS(CLBR_NONE) | 981 | DISABLE_INTERRUPTS(CLBR_NONE) |
@@ -1449,7 +1450,7 @@ paranoid_userspace: | |||
1449 | paranoid_schedule: | 1450 | paranoid_schedule: |
1450 | TRACE_IRQS_ON | 1451 | TRACE_IRQS_ON |
1451 | ENABLE_INTERRUPTS(CLBR_ANY) | 1452 | ENABLE_INTERRUPTS(CLBR_ANY) |
1452 | call schedule | 1453 | SCHEDULE_USER |
1453 | DISABLE_INTERRUPTS(CLBR_ANY) | 1454 | DISABLE_INTERRUPTS(CLBR_ANY) |
1454 | TRACE_IRQS_OFF | 1455 | TRACE_IRQS_OFF |
1455 | jmp paranoid_userspace | 1456 | jmp paranoid_userspace |