Prev: ieee1394/sdp2 Fix warning: variable 'unit_characteristics' set but not used
Next: [PATCH] __ioremap_caller(): make check for ioremapping of RAM cover complete mapping
From: Himanshu Chauhan on 15 Jun 2010 13:20 This is a set of 2 patches for adding support of kprobes and kretprobes support on MIPS architecture. All my tests are done on Qemu's MALTA board. If somebody has _real_ MIPS machine, I would appreciate a try on the machine. Signed-off-by: Himanshu Chauhan <hschauhan(a)nulltrace.org> --- Himanshu Chauhan (2): MIPS: KProbes Support MIPS: Kretprobe support arch/mips/Kconfig | 14 ++ arch/mips/include/asm/break.h | 2 + arch/mips/include/asm/kdebug.h | 5 + arch/mips/include/asm/kprobes.h | 86 +++++++ arch/mips/kernel/Makefile | 2 + arch/mips/kernel/kprobes.c | 493 +++++++++++++++++++++++++++++++++++++++ arch/mips/kernel/traps.c | 43 ++++- arch/mips/mm/fault.c | 12 +- 8 files changed, 654 insertions(+), 3 deletions(-) create mode 100644 arch/mips/include/asm/kprobes.h create mode 100644 arch/mips/kernel/kprobes.c -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |