aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/spinlock.h
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-01-30 07:30:33 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:30:33 -0500
commit2fed0c507cf0101d511366f36e8573f403dbfea5 (patch)
treed73332fca3b4a515755ad10b313780ca54f84fc1 /include/asm-x86/spinlock.h
parent6abcd98ffafbff81f0bfd7ee1d129e634af13245 (diff)
x86: consolidate spinlock.h
The cli and sti instructions need to be replaced by paravirt hooks. For the i386 architecture, this is already done. The code requirements aren't much different from x86_64 POV, so this part is consolidated in the common header Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org> Acked-by: Jeremy Fitzhardinge <jeremy@xensource.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/spinlock.h')
-rw-r--r--include/asm-x86/spinlock.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/asm-x86/spinlock.h b/include/asm-x86/spinlock.h
index d74d85e71dcb..e1d555a3dfe5 100644
--- a/include/asm-x86/spinlock.h
+++ b/include/asm-x86/spinlock.h
@@ -1,5 +1,19 @@
1#ifndef _X86_SPINLOCK_H_
2#define _X86_SPINLOCK_H_
3
4#ifdef CONFIG_PARAVIRT
5#include <asm/paravirt.h>
6#else
7#define CLI_STRING "cli"
8#define STI_STRING "sti"
9#define CLI_STI_CLOBBERS
10#define CLI_STI_INPUT_ARGS
11#endif /* CONFIG_PARAVIRT */
12
1#ifdef CONFIG_X86_32 13#ifdef CONFIG_X86_32
2# include "spinlock_32.h" 14# include "spinlock_32.h"
3#else 15#else
4# include "spinlock_64.h" 16# include "spinlock_64.h"
5#endif 17#endif
18
19#endif