diff options
author | Steven Rostedt <rostedt@goodmis.org> | 2008-10-31 00:03:22 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-31 05:29:17 -0400 |
commit | a26a2a27396c0a0877aa701f8f92d08ba550a6c9 (patch) | |
tree | 8e314b970e0219419b89204d3197fbc1257bf36e /arch/x86/include/asm/ftrace.h | |
parent | b807c3d0f8e39ed7cbbbe6da162650e305e8de15 (diff) |
ftrace: nmi safe code clean ups
Impact: cleanup
This patch cleans up the NMI safe code for dynamic ftrace as suggested
by Andrew Morton.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm/ftrace.h')
-rw-r--r-- | arch/x86/include/asm/ftrace.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/include/asm/ftrace.h b/arch/x86/include/asm/ftrace.h index f2ed6b704a75..a23468194b8c 100644 --- a/arch/x86/include/asm/ftrace.h +++ b/arch/x86/include/asm/ftrace.h | |||
@@ -22,16 +22,16 @@ static inline unsigned long ftrace_call_adjust(unsigned long addr) | |||
22 | extern void ftrace_nmi_enter(void); | 22 | extern void ftrace_nmi_enter(void); |
23 | extern void ftrace_nmi_exit(void); | 23 | extern void ftrace_nmi_exit(void); |
24 | #else | 24 | #else |
25 | #define ftrace_nmi_enter() do { } while (0) | 25 | static inline void ftrace_nmi_enter(void) { } |
26 | #define ftrace_nmi_exit() do { } while (0) | 26 | static inline void ftrace_nmi_exit(void) { } |
27 | #endif | ||
28 | #endif | 27 | #endif |
28 | #endif /* __ASSEMBLY__ */ | ||
29 | 29 | ||
30 | #else /* CONFIG_FUNCTION_TRACER */ | 30 | #else /* CONFIG_FUNCTION_TRACER */ |
31 | 31 | ||
32 | #ifndef __ASSEMBLY__ | 32 | #ifndef __ASSEMBLY__ |
33 | #define ftrace_nmi_enter() do { } while (0) | 33 | static inline void ftrace_nmi_enter(void) { } |
34 | #define ftrace_nmi_exit() do { } while (0) | 34 | static inline void ftrace_nmi_exit(void) { } |
35 | #endif | 35 | #endif |
36 | 36 | ||
37 | #endif /* CONFIG_FUNCTION_TRACER */ | 37 | #endif /* CONFIG_FUNCTION_TRACER */ |