diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-11-26 14:42:19 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-11-26 14:42:19 -0500 |
commit | 8645419cdb588a743060175c1efbe23f6e44b29b (patch) | |
tree | 98f08a81fdc0b39c50ab7b5c31c0f97edcc9bfd3 /arch/x86 | |
parent | c82bc5ad5411ccd61d26355088e2f5c9e95ef54b (diff) |
x86: fix kprobes_64.c inlining borkage
fix:
arch/x86/kernel/kprobes_64.c: In function 'set_current_kprobe':
arch/x86/kernel/kprobes_64.c:152: sorry, unimplemented: inlining failed in call to 'is_IF_modifier': recursive inlining
arch/x86/kernel/kprobes_64.c:166: sorry, unimplemented: called from here
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Cc: mingo@elte.hu
Cc: akpm@linux-foundation.org
Cc: tglx@linutronix.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/kprobes_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/kprobes_64.c b/arch/x86/kernel/kprobes_64.c index 3db3611933d8..0c467644589c 100644 --- a/arch/x86/kernel/kprobes_64.c +++ b/arch/x86/kernel/kprobes_64.c | |||
@@ -58,7 +58,7 @@ const int kretprobe_blacklist_size = ARRAY_SIZE(kretprobe_blacklist); | |||
58 | /* | 58 | /* |
59 | * returns non-zero if opcode modifies the interrupt flag. | 59 | * returns non-zero if opcode modifies the interrupt flag. |
60 | */ | 60 | */ |
61 | static __always_inline int is_IF_modifier(kprobe_opcode_t *insn) | 61 | static int __kprobes is_IF_modifier(kprobe_opcode_t *insn) |
62 | { | 62 | { |
63 | switch (*insn) { | 63 | switch (*insn) { |
64 | case 0xfa: /* cli */ | 64 | case 0xfa: /* cli */ |