summaryrefslogtreecommitdiff
path: root/packages/linux/gumstix-kernel-2.6.21/misalignment-handling.patch
diff options
context:
space:
mode:
authorPaul Sokolovsky <pmiscml@gmail.com>2008-02-16 00:22:08 +0000
committerPaul Sokolovsky <pmiscml@gmail.com>2008-02-16 00:22:08 +0000
commit77ee651d6e4de50054d3dd1498f835e5ad17dc69 (patch)
tree577a7d3cfe7aa024fe42eae3a20c8f490bcd27f7 /packages/linux/gumstix-kernel-2.6.21/misalignment-handling.patch
parent122a4440127e4015df191e4204fd05e132cba3eb (diff)
parentc774a4e441deac27ee040a701926f0324cc5cd19 (diff)
merge of '195b07032d60a83bcce6ef3b56a7a95b75566dcd'
and '5298691784024e845135b17a0613495c22075e0d'
Diffstat (limited to 'packages/linux/gumstix-kernel-2.6.21/misalignment-handling.patch')
-rw-r--r--packages/linux/gumstix-kernel-2.6.21/misalignment-handling.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/packages/linux/gumstix-kernel-2.6.21/misalignment-handling.patch b/packages/linux/gumstix-kernel-2.6.21/misalignment-handling.patch
new file mode 100644
index 0000000000..e6aefb997c
--- /dev/null
+++ b/packages/linux/gumstix-kernel-2.6.21/misalignment-handling.patch
@@ -0,0 +1,38 @@
+Change the default alingment handling to not be silent failure
+Index: linux-2.6.21gum/arch/arm/mm/alignment.c
+===================================================================
+--- linux-2.6.21gum.orig/arch/arm/mm/alignment.c
++++ linux-2.6.21gum/arch/arm/mm/alignment.c
+@@ -797,6 +797,8 @@ static int __init alignment_init(void)
+ res->write_proc = proc_alignment_write;
+ #endif
+
++ ai_usermode = CONFIG_ALIGNMENT_HANDLING;
++
+ hook_fault_code(1, do_alignment, SIGILL, "alignment exception");
+ hook_fault_code(3, do_alignment, SIGILL, "alignment exception");
+
+Index: linux-2.6.21gum/arch/arm/Kconfig
+===================================================================
+--- linux-2.6.21gum.orig/arch/arm/Kconfig
++++ linux-2.6.21gum/arch/arm/Kconfig
+@@ -709,6 +709,19 @@ config ALIGNMENT_TRAP
+ correct operation of some network protocols. With an IP-only
+ configuration it is safe to say N, otherwise say Y.
+
++config ALIGNMENT_HANDLING
++ hex "Userspace alignment trap handling"
++ default "0x3"
++ depends on ALIGNMENT_TRAP
++ help
++ How should we handle alignment errors in userspace by default? This is a bitfield where:
++ 0 - silently ignore alignment errors (will lead to unexpected results)
++ 1 - report alignment errors through printk (will lead to unexpected results, but you'll know about them)
++ 2 - fix the alignment and make things work properly (performance degradation for un-aligned code)
++ 4 - raise SIGBUS on alignment traps
++ A good number to choose is probably either 3 (work slowly but log message) or 5 (log message and SIGBUS).
++ You can change the behavior at runtime through /proc/cpu/alignment if you have PROC_FS enabled.
++
+ endmenu
+
+ menu "Boot options"