Re: [PATCH 1/2] kprobes: Introduce kprobe_handle_fault()

2008-02-07 Thread Masami Hiramatsu
Harvey Harrison wrote: > Use a central kprobe_handle_fault() inline in kprobes.h to remove > all of the arch-dependant, practically identical implementations in > avr32, ia64, powerpc, s390, sparc64, and x86. > > avr32 was the only arch without the preempt_disable/enable pair > in its notify_page_

Re: [PATCH 1/2] kprobes: Introduce kprobe_handle_fault()

2008-02-03 Thread Heiko Carstens
On Sat, Feb 02, 2008 at 07:00:23PM -0800, Harvey Harrison wrote: > Use a central kprobe_handle_fault() inline in kprobes.h to remove > all of the arch-dependant, practically identical implementations in > avr32, ia64, powerpc, s390, sparc64, and x86. > > avr32 was the only arch without the preempt

[PATCH 1/2] kprobes: Introduce kprobe_handle_fault()

2008-02-02 Thread Harvey Harrison
Use a central kprobe_handle_fault() inline in kprobes.h to remove all of the arch-dependant, practically identical implementations in avr32, ia64, powerpc, s390, sparc64, and x86. avr32 was the only arch without the preempt_disable/enable pair in its notify_page_fault implementation. This uncover

Re: [PATCH 1/2] kprobes: Introduce kprobe_handle_fault()

2008-01-10 Thread Ingo Molnar
* Harvey Harrison <[EMAIL PROTECTED]> wrote: > Use a central kprobe_handle_fault() inline in kprobes.h to remove all > of the arch-dependant, practically identical implementations in avr32, > ia64, powerpc, s390, sparc64, and x86. i guess this should be done via -mm, because it changes all ar

Re: [PATCH 1/2] kprobes: Introduce kprobe_handle_fault()

2008-01-09 Thread Masami Hiramatsu
Harvey Harrison wrote: > Use a central kprobe_handle_fault() inline in kprobes.h to remove > all of the arch-dependant, practically identical implementations in > avr32, ia64, powerpc, s390, sparc64, and x86. > > avr32 was the only arch without the preempt_disable/enable pair > in its notify_page_

[PATCH 1/2] kprobes: Introduce kprobe_handle_fault()

2008-01-09 Thread Harvey Harrison
Use a central kprobe_handle_fault() inline in kprobes.h to remove all of the arch-dependant, practically identical implementations in avr32, ia64, powerpc, s390, sparc64, and x86. avr32 was the only arch without the preempt_disable/enable pair in its notify_page_fault implementation. This uncover