Commit 7dc7cc07 authored by Denys Vlasenko's avatar Denys Vlasenko Committed by Ingo Molnar

x86/irq/tracing: Fold ARCH_LOCKDEP_SYS_EXIT defines into their users

There is no need to have an extra level of macro indirection
here.
Signed-off-by: default avatarDenys Vlasenko <dvlasenk@redhat.com>
Cc: Alexei Starovoitov <ast@plumgrid.com>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Will Drewry <wad@chromium.org>
Link: http://lkml.kernel.org/r/1427314468-12763-3-git-send-email-dvlasenk@redhat.comSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 40e2ec65
...@@ -175,17 +175,17 @@ static inline int arch_irqs_disabled(void) ...@@ -175,17 +175,17 @@ static inline int arch_irqs_disabled(void)
#endif #endif
#ifdef CONFIG_DEBUG_LOCK_ALLOC #ifdef CONFIG_DEBUG_LOCK_ALLOC
# ifdef CONFIG_X86_64 # ifdef CONFIG_X86_64
# define ARCH_LOCKDEP_SYS_EXIT call lockdep_sys_exit_thunk # define LOCKDEP_SYS_EXIT call lockdep_sys_exit_thunk
# define ARCH_LOCKDEP_SYS_EXIT_IRQ \ # define LOCKDEP_SYS_EXIT_IRQ \
TRACE_IRQS_ON; \ TRACE_IRQS_ON; \
sti; \ sti; \
SAVE_EXTRA_REGS; \ SAVE_EXTRA_REGS; \
LOCKDEP_SYS_EXIT; \ call lockdep_sys_exit_thunk; \
RESTORE_EXTRA_REGS; \ RESTORE_EXTRA_REGS; \
cli; \ cli; \
TRACE_IRQS_OFF; TRACE_IRQS_OFF;
# else # else
# define ARCH_LOCKDEP_SYS_EXIT \ # define LOCKDEP_SYS_EXIT \
pushl %eax; \ pushl %eax; \
pushl %ecx; \ pushl %ecx; \
pushl %edx; \ pushl %edx; \
...@@ -193,14 +193,12 @@ static inline int arch_irqs_disabled(void) ...@@ -193,14 +193,12 @@ static inline int arch_irqs_disabled(void)
popl %edx; \ popl %edx; \
popl %ecx; \ popl %ecx; \
popl %eax; popl %eax;
# define ARCH_LOCKDEP_SYS_EXIT_IRQ # define LOCKDEP_SYS_EXIT_IRQ
# endif # endif
# define LOCKDEP_SYS_EXIT ARCH_LOCKDEP_SYS_EXIT #else
# define LOCKDEP_SYS_EXIT_IRQ ARCH_LOCKDEP_SYS_EXIT_IRQ
# else
# define LOCKDEP_SYS_EXIT # define LOCKDEP_SYS_EXIT
# define LOCKDEP_SYS_EXIT_IRQ # define LOCKDEP_SYS_EXIT_IRQ
# endif #endif
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment