Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8645419cdb588a743060175c1efbe23f6e44b29b
Commit:     8645419cdb588a743060175c1efbe23f6e44b29b
Parent:     c82bc5ad5411ccd61d26355088e2f5c9e95ef54b
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Mon Nov 26 20:42:19 2007 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Mon Nov 26 20:42:19 2007 +0100

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Cc: [EMAIL PROTECTED]
    Cc: [EMAIL PROTECTED]
    Cc: [EMAIL PROTECTED]
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
---
 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 3db3611..0c46764 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);
 /*
  * returns non-zero if opcode modifies the interrupt flag.
  */
-static __always_inline int is_IF_modifier(kprobe_opcode_t *insn)
+static int __kprobes is_IF_modifier(kprobe_opcode_t *insn)
 {
        switch (*insn) {
        case 0xfa:              /* cli */
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to