diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2008-04-02 10:53:55 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-24 23:57:32 +0200 |
commit | e04d0d0767a9c272d3c7300fb7a5221c5e3a71eb (patch) | |
tree | 41316aa05a218fcce5d619c11a57242c4f488d55 /include/xen | |
parent | af711cda4f94b5fddcdc5eb4134387ae026e3171 (diff) | |
download | linux-e04d0d0767a9c272d3c7300fb7a5221c5e3a71eb.tar.gz linux-e04d0d0767a9c272d3c7300fb7a5221c5e3a71eb.tar.bz2 linux-e04d0d0767a9c272d3c7300fb7a5221c5e3a71eb.zip |
xen: move events.c to drivers/xen for IA64/Xen support
move arch/x86/xen/events.c undedr drivers/xen to share codes
with x86 and ia64. And minor adjustment to compile.
ia64/xen also uses events.c
Signed-off-by: Yaozu (Eddie) Dong <eddie.dong@intel.com>
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/xen')
-rw-r--r-- | include/xen/xen-ops.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/xen/xen-ops.h b/include/xen/xen-ops.h new file mode 100644 index 000000000000..10ddfe0142d0 --- /dev/null +++ b/include/xen/xen-ops.h @@ -0,0 +1,8 @@ +#ifndef INCLUDE_XEN_OPS_H +#define INCLUDE_XEN_OPS_H + +#include <linux/percpu.h> + +DECLARE_PER_CPU(struct vcpu_info *, xen_vcpu); + +#endif /* INCLUDE_XEN_OPS_H */ |