diff options
author | Akira Takeuchi <takeuchi.akr@jp.panasonic.com> | 2010-10-27 12:28:52 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2010-10-27 12:28:52 -0400 |
commit | 278d91c4609d55202c1e63d5fc5f01466cc7bbab (patch) | |
tree | 8b0c863837508959430c1741e2e5a2d37d2890d4 /arch/mn10300/proc-mn103e010 | |
parent | 965ea4bbb9ae926358273368144ba838c561bc38 (diff) |
MN10300: Make the FPU operate in non-lazy mode under SMP
Make the FPU operate in non-lazy mode under SMP so that when the process that
is currently using the FPU migrates to a different CPU, we don't have to ping
its previous CPU to flush the FPU context.
Signed-off-by: Akira Takeuchi <takeuchi.akr@jp.panasonic.com>
Signed-off-by: Kiyoshi Owada <owada.kiyoshi@jp.panasonic.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch/mn10300/proc-mn103e010')
-rw-r--r-- | arch/mn10300/proc-mn103e010/proc-init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mn10300/proc-mn103e010/proc-init.c b/arch/mn10300/proc-mn103e010/proc-init.c index 9a482efafa82..0cee7878bee9 100644 --- a/arch/mn10300/proc-mn103e010/proc-init.c +++ b/arch/mn10300/proc-mn103e010/proc-init.c | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the Licence, or (at your option) any later version. | 9 | * 2 of the Licence, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <asm/fpu.h> | ||
12 | #include <asm/rtc.h> | 13 | #include <asm/rtc.h> |
13 | 14 | ||
14 | /* | 15 | /* |
@@ -28,6 +29,7 @@ asmlinkage void __init processor_init(void) | |||
28 | __set_intr_stub(EXCEP_DAERROR, dtlb_aerror); | 29 | __set_intr_stub(EXCEP_DAERROR, dtlb_aerror); |
29 | __set_intr_stub(EXCEP_BUSERROR, raw_bus_error); | 30 | __set_intr_stub(EXCEP_BUSERROR, raw_bus_error); |
30 | __set_intr_stub(EXCEP_DOUBLE_FAULT, double_fault); | 31 | __set_intr_stub(EXCEP_DOUBLE_FAULT, double_fault); |
32 | __set_intr_stub(EXCEP_FPU_DISABLED, fpu_disabled); | ||
31 | __set_intr_stub(EXCEP_SYSCALL0, system_call); | 33 | __set_intr_stub(EXCEP_SYSCALL0, system_call); |
32 | 34 | ||
33 | __set_intr_stub(EXCEP_NMI, nmi_handler); | 35 | __set_intr_stub(EXCEP_NMI, nmi_handler); |