From f8ab48a7de37b1e97be3d8c776ef465a866ab102 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sun, 5 Sep 2004 04:05:06 -0700 Subject: [ALPHA] Fix raising of ieee exceptions from userland software. --- include/asm-alpha/sysinfo.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/asm-alpha/sysinfo.h b/include/asm-alpha/sysinfo.h index 1c65a021ac3b..086aba284df2 100644 --- a/include/asm-alpha/sysinfo.h +++ b/include/asm-alpha/sysinfo.h @@ -18,6 +18,7 @@ #define SSI_IEEE_FP_CONTROL 14 #define SSI_IEEE_STATE_AT_SIGNAL 15 #define SSI_IEEE_IGNORE_STATE_AT_SIGNAL 16 +#define SSI_IEEE_RAISE_EXCEPTION 1001 /* linux specific */ #define SSIN_UACPROC 6 -- cgit v1.2.3 From 5b3f2558b387732a430d9a81c7e07da72120900e Mon Sep 17 00:00:00 2001 From: Zwane Mwaikambo Date: Sun, 5 Sep 2004 09:04:09 -0700 Subject: [PATCH] Correct ELF section used for out of line spinlocks Anton Blanchard noted that vmlinux.lds is using .lock.text but __lockfunc was using .spinlock.text. Make them consistent. Signed-off-by: Zwane Mwaikambo Signed-off-by: Linus Torvalds --- include/asm-generic/vmlinux.lds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index 49ff023fa2da..bb340cb5cb03 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h @@ -80,5 +80,5 @@ #define LOCK_TEXT \ VMLINUX_SYMBOL(__lock_text_start) = .; \ - *(.lock.text) \ + *(.spinlock.text) \ VMLINUX_SYMBOL(__lock_text_end) = .; -- cgit v1.2.3