diff options
author | Nicolas Pitre <nico@cam.org> | 2007-12-03 15:27:56 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 10:25:17 -0500 |
commit | 785d3cd286f0bf67d1bf692559b9ae5de12678f5 (patch) | |
tree | d533f0ab4792b1df11a0f862ec7246bb4455869c /arch/arm/kernel/traps.c | |
parent | d30a0c8bf99f0e6a7d8c57bd4524039585ffbced (diff) |
ARM kprobes: prevent some functions involved with kprobes from being probed
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Diffstat (limited to 'arch/arm/kernel/traps.c')
-rw-r--r-- | arch/arm/kernel/traps.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c index c34db4e868fa..65bb762b2d80 100644 --- a/arch/arm/kernel/traps.c +++ b/arch/arm/kernel/traps.c | |||
@@ -46,15 +46,6 @@ __setup("user_debug=", user_debug_setup); | |||
46 | 46 | ||
47 | static void dump_mem(const char *str, unsigned long bottom, unsigned long top); | 47 | static void dump_mem(const char *str, unsigned long bottom, unsigned long top); |
48 | 48 | ||
49 | static inline int in_exception_text(unsigned long ptr) | ||
50 | { | ||
51 | extern char __exception_text_start[]; | ||
52 | extern char __exception_text_end[]; | ||
53 | |||
54 | return ptr >= (unsigned long)&__exception_text_start && | ||
55 | ptr < (unsigned long)&__exception_text_end; | ||
56 | } | ||
57 | |||
58 | void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame) | 49 | void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame) |
59 | { | 50 | { |
60 | #ifdef CONFIG_KALLSYMS | 51 | #ifdef CONFIG_KALLSYMS |