aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen/xen-asm.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-02-05 09:54:27 -0500
committerIngo Molnar <mingo@elte.hu>2009-02-05 09:54:27 -0500
commit69b745ff91836dfc25b26d7be0ead02a6fc0286e (patch)
treec37bf097914cb1da1e1c55cbe0c6ce58d0358edc /arch/x86/xen/xen-asm.h
parentef3892bd63420380d115f755d351d2071f1f805f (diff)
parente4d0407185cdbdcfd99fc23bde2e5454bbc46329 (diff)
Merge branch 'tj-percpu' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/misc into core/percpu
Diffstat (limited to 'arch/x86/xen/xen-asm.h')
-rw-r--r--arch/x86/xen/xen-asm.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/xen/xen-asm.h b/arch/x86/xen/xen-asm.h
new file mode 100644
index 000000000000..465276467a47
--- /dev/null
+++ b/arch/x86/xen/xen-asm.h
@@ -0,0 +1,12 @@
1#ifndef _XEN_XEN_ASM_H
2#define _XEN_XEN_ASM_H
3
4#include <linux/linkage.h>
5
6#define RELOC(x, v) .globl x##_reloc; x##_reloc=v
7#define ENDPATCH(x) .globl x##_end; x##_end=.
8
9/* Pseudo-flag used for virtual NMI, which we don't implement yet */
10#define XEN_EFLAGS_NMI 0x80000000
11
12#endif