aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/hvm/vcpu.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2007-11-25 11:43:53 +0000
committerKeir Fraser <keir.fraser@citrix.com>2007-11-25 11:43:53 +0000
commita2b5673b0018f0184b4833f65a453538cf84f6f5 (patch)
tree3db44cdf515f059f4c2ddfe28a0137ff8a840d6c /xen/include/asm-x86/hvm/vcpu.h
parent727f3fd5fa194bb03e9e478b2fd1760f38a43546 (diff)
downloadxen-a2b5673b0018f0184b4833f65a453538cf84f6f5.tar.gz
xen-a2b5673b0018f0184b4833f65a453538cf84f6f5.tar.bz2
xen-a2b5673b0018f0184b4833f65a453538cf84f6f5.zip
vmx realmode: Plumb through I/O port accesses in emulated realmode.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/include/asm-x86/hvm/vcpu.h')
-rw-r--r--xen/include/asm-x86/hvm/vcpu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/xen/include/asm-x86/hvm/vcpu.h b/xen/include/asm-x86/hvm/vcpu.h
index 5d653f0ff9..f6c55dba12 100644
--- a/xen/include/asm-x86/hvm/vcpu.h
+++ b/xen/include/asm-x86/hvm/vcpu.h
@@ -59,6 +59,9 @@ struct hvm_vcpu {
bool_t flag_dr_dirty;
bool_t debug_state_latch;
+ /* Callback function for I/O completion. */
+ int (*io_complete)(void);
+
union {
struct arch_vmx_struct vmx;
struct arch_svm_struct svm;