diff options
author | Namhyung Kim <namhyung@gmail.com> | 2010-09-15 01:04:28 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-09-15 08:44:01 (GMT) |
commit | 6376b2297502e72255b7eb2893c6044ad5a7b5f4 (patch) | |
tree | 8ceebb98c5a324580b1e9ce648ded86db2dd85fc /arch/x86/kernel/kprobes.c | |
parent | 05662bdb64c746079de7ac4dc4fb4caa5e8e119f (diff) | |
download | linux-6376b2297502e72255b7eb2893c6044ad5a7b5f4.tar.xz |
kprobes: Make functions static
Make following (internal) functions static to make sparse
happier :-)
* get_optimized_kprobe: only called from static functions
* kretprobe_table_unlock: _lock function is static
* kprobes_optinsn_template_holder: never called but holding asm code
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Acked-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
LKML-Reference: <1284512670-2369-4-git-send-email-namhyung@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/kprobes.c')
-rw-r--r-- | arch/x86/kernel/kprobes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/kprobes.c b/arch/x86/kernel/kprobes.c index 770ebfb..05c20a4 100644 --- a/arch/x86/kernel/kprobes.c +++ b/arch/x86/kernel/kprobes.c @@ -1129,7 +1129,7 @@ static void __kprobes synthesize_set_arg1(kprobe_opcode_t *addr, *(unsigned long *)addr = val; } -void __kprobes kprobes_optinsn_template_holder(void) +static void __used __kprobes kprobes_optinsn_template_holder(void) { asm volatile ( ".global optprobe_template_entry\n" |