diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2009-02-07 18:04:02 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-09 04:51:38 -0500 |
commit | 3861a17bcc0af815f684c6178bc9ec2d790c350e (patch) | |
tree | e5ab19215ea802a0c57279cd6dd89f68347b53b4 /kernel/module.c | |
parent | 1292211058aaf872eeb2a0e2677d237916b4501f (diff) |
tracing/function-graph-tracer: drop the kernel_text_address check
When the function graph tracer picks a return address, it ensures this address
is really a kernel text one by calling __kernel_text_address()
Actually this path has never been taken.Its role was more likely to debug the tracer
on the beginning of its development but this function is wasteful since it is called
for every traced function.
The fault check is already sufficient.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/module.c')
-rw-r--r-- | kernel/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c index ba22484a987e..22d7379709da 100644 --- a/kernel/module.c +++ b/kernel/module.c | |||
@@ -2735,7 +2735,7 @@ int is_module_address(unsigned long addr) | |||
2735 | 2735 | ||
2736 | 2736 | ||
2737 | /* Is this a valid kernel address? */ | 2737 | /* Is this a valid kernel address? */ |
2738 | __notrace_funcgraph struct module *__module_text_address(unsigned long addr) | 2738 | struct module *__module_text_address(unsigned long addr) |
2739 | { | 2739 | { |
2740 | struct module *mod; | 2740 | struct module *mod; |
2741 | 2741 | ||