kernel-ark/arch/m32r/kernel
Hirokazu Takata cf535ea52e [PATCH] m32r: update sys_tas() routine
This patch updates and fixes sys_tas() routine for m32r.

In the previous implementation, a lockup rarely caused at sys_tas()
routine in SMP environment.

> > The problem is that touching *addr will generate an oops if that page isn't
> > paged in.  If we convert it to use get_user() then that's an improvement,
> > but we must not run get_user() under spinlock or local_irq_disable().

I rewrote sys_tas() routine by using "lock -> unlock" instructions, and
utilizing the m32r's interrupt handling characteristics; the m32r processor
can accept interrupts only at the 32-bit instruction boundary.  So, the
"unlock" instruction can be executed continuously after the "lock"
instruction execution without any interruptions.

In addition, to solve such a page_fault problem, I use a fixup code like
get_user().

And, as for the kernel lockup problem, we found that a calling
do_page_fault() routine with disabling interrupts might cause a lockup at
flush_tlb_others(), because we checked a completion of IPI handler's
operations in a spin-locked critical section.

Therefore, by using "lock -> unlock" code, we can implement the sys_tas()
rouitine without disabling interrupts explicitly, then no lockups would
happen at flush_tlb_others(), I hope.

Compile check and some working test in SMP environment have done.

Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-02-20 20:00:12 -08:00
..
align.c
asm-offsets.c kbuild: frv,m32r,sparc64 introduce fake asm-offsets.h file 2005-09-09 22:47:53 +02:00
entry.S [PATCH] m32r: Support M32104UT target platform 2006-01-06 08:33:43 -08:00
head.S
init_task.c
io_m32104ut.c [PATCH] m32r: Update _port2addr to use NONCACHE_OFFSET 2006-01-06 08:33:44 -08:00
io_m32700ut.c [PATCH] m32r: Update _port2addr to use NONCACHE_OFFSET 2006-01-06 08:33:44 -08:00
io_mappi2.c [PATCH] m32r: Update _port2addr to use NONCACHE_OFFSET 2006-01-06 08:33:44 -08:00
io_mappi3.c [PATCH] m32r: Update _port2addr to use NONCACHE_OFFSET 2006-01-06 08:33:44 -08:00
io_mappi.c [PATCH] m32r: Update _port2addr to use NONCACHE_OFFSET 2006-01-06 08:33:44 -08:00
io_oaks32r.c [PATCH] m32r: Update _port2addr to use NONCACHE_OFFSET 2006-01-06 08:33:44 -08:00
io_opsput.c [PATCH] m32r: Update _port2addr to use NONCACHE_OFFSET 2006-01-06 08:33:44 -08:00
io_usrv.c [PATCH] m32r: NONCACHE_OFFSET in _port2addr 2005-10-30 17:37:16 -08:00
irq.c
m32r_ksyms.c [PATCH] drive_info removal outside of arch/i386 2006-02-07 20:56:47 -05:00
Makefile [PATCH] m32r: Support M32104UT target platform 2006-01-06 08:33:43 -08:00
module.c
process.c [PATCH] m32r: task_pt_regs(), task_stack_page(), task_thread_info() 2006-01-12 09:08:54 -08:00
ptrace.c [PATCH] m32r: task_pt_regs(), task_stack_page(), task_thread_info() 2006-01-12 09:08:54 -08:00
semaphore.c
setup_m32104ut.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup_m32700ut.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup_mappi2.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup_mappi3.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup_mappi.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup_oaks32r.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup_opsput.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup_usrv.c [PATCH] m32r: Remove unnecessary icu_data_t definitions 2006-01-06 08:33:44 -08:00
setup.c [PATCH] drive_info removal outside of arch/i386 2006-02-07 20:56:47 -05:00
signal.c [PATCH] convert signal handling of NODEFER to act like other Unix boxes. 2005-08-29 10:03:11 -07:00
smp.c [PATCH] m32r: Fix smp.c for preempt kernel 2005-10-14 17:10:12 -07:00
smpboot.c [PATCH] m32r: task_pt_regs(), task_stack_page(), task_thread_info() 2006-01-12 09:08:54 -08:00
sys_m32r.c [PATCH] m32r: update sys_tas() routine 2006-02-20 20:00:12 -08:00
time.c [PATCH] m32r: Support M32104UT target platform 2006-01-06 08:33:43 -08:00
traps.c [PATCH] m32r: trap handler code for illegal traps 2005-10-11 09:46:54 -07:00
vmlinux.lds.S