1
0
Fork 0
alistair23-linux/arch/v850/kernel
Laurent MEYER d09042da72 [PATCH] fix incorrect SA_ONSTACK behaviour for 64-bit processes
- When setting a sighandler using sigaction() call, if the flag
  SA_ONSTACK is set and no alternate stack is provided via sigaltstack(),
  the kernel still try to install the alternate stack.  This behavior is
  the opposite of the one which is documented in Single Unix Specifications
  V3.

- Also when setting an alternate stack using sigaltstack() with the flag
  SS_DISABLE, the kernel try to install the alternate stack on signal
  delivery.

These two use cases makes the process crash at signal delivery.

Signed-off-by: Laurent Meyer <meyerlau@fr.ibm.com>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: David Howells <dhowells@redhat.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Kazumoto Kojima <kkojima@rr.iij4u.or.jp>
Cc: Chris Zankel <chris@zankel.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-23 07:43:05 -07:00
..
Makefile Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
anna-rom.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
anna.c [PATCH] Don't export machine_restart, machine_halt, or machine_power_off. 2005-07-26 14:35:42 -07:00
anna.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
as85ep1-rom.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
as85ep1.c [PATCH] Don't export machine_restart, machine_halt, or machine_power_off. 2005-07-26 14:35:42 -07:00
as85ep1.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
asm-offsets.c kbuild: v850 use generic asm-offsets.h support 2005-09-09 21:39:46 +02:00
bug.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
entry.S kbuild: v850 use generic asm-offsets.h support 2005-09-09 21:39:46 +02:00
fpga85e2c.c [PATCH] Don't export machine_restart, machine_halt, or machine_power_off. 2005-07-26 14:35:42 -07:00
fpga85e2c.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
gbus_int.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
head.S Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
highres_timer.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
init_task.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
intv.S Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
irq.c [PATCH] v850: use generic hardirq code 2005-11-15 08:59:20 -08:00
ma.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mach.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
mach.h Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
me2.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
memcons.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
module.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
process.c [PATCH] kill include/linux/platform.h, default_idle() cleanup 2006-03-24 07:33:21 -08:00
procfs.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
ptrace.c [PATCH] v850: task_stack_page(), task_pt_regs() 2006-01-12 09:08:54 -08:00
rte_cb.c [PATCH] Don't export machine_restart, machine_halt, or machine_power_off. 2005-07-26 14:35:42 -07:00
rte_cb_leds.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_cb_multi.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_ma1_cb-rom.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_ma1_cb.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_ma1_cb.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_mb_a_pci.c [PATCH] v850: Update PCI support 2005-07-27 16:26:03 -07:00
rte_me2_cb.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_me2_cb.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_nb85e_cb-multi.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_nb85e_cb.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
rte_nb85e_cb.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
semaphore.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
setup.c [PATCH] V850: C99 initializers for hw_interrupt_type structures 2005-09-10 10:06:27 -07:00
signal.c [PATCH] fix incorrect SA_ONSTACK behaviour for 64-bit processes 2006-06-23 07:43:05 -07:00
sim.c [PATCH] V850: C99 initializers for hw_interrupt_type structures 2005-09-10 10:06:27 -07:00
sim.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sim85e2.c [PATCH] Don't export machine_restart, machine_halt, or machine_power_off. 2005-07-26 14:35:42 -07:00
sim85e2.ld Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
simcons.c [PATCH] Fix some ucLinux breakage from the tty updates 2006-02-03 08:32:04 -08:00
syscalls.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
teg.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
time.c [PATCH] jiffies_64 cleanup 2005-10-30 17:37:25 -08:00
v850_ksyms.c [PATCH] No arch-specific strpbrk implementations 2006-04-11 06:18:40 -07:00
v850e2_cache.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
v850e_cache.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
v850e_intc.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
v850e_timer_d.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
v850e_utils.c Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
vmlinux.lds.S [PATCH] add EXPORT_SYMBOL_GPL_FUTURE() 2006-03-20 13:42:58 -08:00