From 98f867298141b92abadb5e16754021960e356ebb Mon Sep 17 00:00:00 2001 From: florian Date: Tue, 19 May 2009 10:21:32 +0000 Subject: [kernel] remove 2.6.29 since there are no remaining users of it git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15922 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../022-mips_force_sig_address_errors.patch | 40 ---------------------- 1 file changed, 40 deletions(-) delete mode 100644 target/linux/generic-2.6/patches-2.6.29/022-mips_force_sig_address_errors.patch (limited to 'target/linux/generic-2.6/patches-2.6.29/022-mips_force_sig_address_errors.patch') diff --git a/target/linux/generic-2.6/patches-2.6.29/022-mips_force_sig_address_errors.patch b/target/linux/generic-2.6/patches-2.6.29/022-mips_force_sig_address_errors.patch deleted file mode 100644 index 7d45fd99f..000000000 --- a/target/linux/generic-2.6/patches-2.6.29/022-mips_force_sig_address_errors.patch +++ /dev/null @@ -1,40 +0,0 @@ -When init is started it is SIGNAL_UNKILLABLE. If it were to get an -address error, we would try to send it SIGBUS, but it would be ignored -and the faulting instruction restarted. This results in an endless -loop. - -We need to use force_sig() instead so it will actually die and give us -some useful information. - -Reported-by: Florian Fainelli - -Signed-off-by: David Daney ---- - arch/mips/kernel/unaligned.c | 6 +++--- - 1 files changed, 3 insertions(+), 3 deletions(-) - ---- a/arch/mips/kernel/unaligned.c -+++ b/arch/mips/kernel/unaligned.c -@@ -482,19 +482,19 @@ fault: - return; - - die_if_kernel("Unhandled kernel unaligned access", regs); -- send_sig(SIGSEGV, current, 1); -+ force_sig(SIGSEGV, current); - - return; - - sigbus: - die_if_kernel("Unhandled kernel unaligned access", regs); -- send_sig(SIGBUS, current, 1); -+ force_sig(SIGBUS, current); - - return; - - sigill: - die_if_kernel("Unhandled kernel unaligned access or invalid instruction", regs); -- send_sig(SIGILL, current, 1); -+ force_sig(SIGILL, current); - } - - asmlinkage void do_ade(struct pt_regs *regs) -- cgit v1.2.3