aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-04-19 10:06:42 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-04-19 10:06:42 +0100
commit197965150c69bde1d38ead5e8c7eb7bfa211d498 (patch)
tree859611772155be5af5284c45efdad446b6edd8a3 /xen/include/asm-x86
parentf770264fe1f91d685499179e0e9c339fa0aaa6a8 (diff)
downloadxen-197965150c69bde1d38ead5e8c7eb7bfa211d498.tar.gz
xen-197965150c69bde1d38ead5e8c7eb7bfa211d498.tar.bz2
xen-197965150c69bde1d38ead5e8c7eb7bfa211d498.zip
Move tasklet implementation into its own source files.
This is preparation for implementing tasklets in vcpu context rather than softirq context. There is no change to the implementation of tasklets in this patch. Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/include/asm-x86')
-rw-r--r--xen/include/asm-x86/hvm/vcpu.h1
-rw-r--r--xen/include/asm-x86/hvm/vlapic.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/xen/include/asm-x86/hvm/vcpu.h b/xen/include/asm-x86/hvm/vcpu.h
index 840625040f..ed6b250ff9 100644
--- a/xen/include/asm-x86/hvm/vcpu.h
+++ b/xen/include/asm-x86/hvm/vcpu.h
@@ -20,6 +20,7 @@
#ifndef __ASM_X86_HVM_VCPU_H__
#define __ASM_X86_HVM_VCPU_H__
+#include <xen/tasklet.h>
#include <asm/hvm/io.h>
#include <asm/hvm/vlapic.h>
#include <asm/hvm/vmx/vmcs.h>
diff --git a/xen/include/asm-x86/hvm/vlapic.h b/xen/include/asm-x86/hvm/vlapic.h
index 880754d2ab..05bd719da1 100644
--- a/xen/include/asm-x86/hvm/vlapic.h
+++ b/xen/include/asm-x86/hvm/vlapic.h
@@ -21,7 +21,7 @@
#ifndef __ASM_X86_HVM_VLAPIC_H__
#define __ASM_X86_HVM_VLAPIC_H__
-#include <xen/softirq.h>
+#include <xen/tasklet.h>
#include <asm/msr.h>
#include <public/hvm/ioreq.h>
#include <asm/hvm/vpt.h>