aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/hvm/vcpu.h
diff options
context:
space:
mode:
authorKeir Fraser <keir@xen.org>2012-05-30 09:27:51 +0100
committerKeir Fraser <keir@xen.org>2012-05-30 09:27:51 +0100
commit284f43f4fd6dccfff3b72afded0be03b3fe45091 (patch)
treeaf609cd27c2e4854d0eac101a0a31907d7d42fbc /xen/include/asm-x86/hvm/vcpu.h
parentde0e85188ca9e240e774f4598139ba92ee5ce4f8 (diff)
downloadxen-284f43f4fd6dccfff3b72afded0be03b3fe45091.tar.gz
xen-284f43f4fd6dccfff3b72afded0be03b3fe45091.tar.bz2
xen-284f43f4fd6dccfff3b72afded0be03b3fe45091.zip
xen: Define new struct hvm_trap and cleanup vmx exception
Define new struct hvm_trap to represent information of trap, and renames hvm_inject_exception to hvm_inject_trap, then define a couple of wrappers around that function for existing callers. Signed-off-by: Keir Fraser <keir@xen.org> Signed-off-by: Xudong Hao <xudong.hao@intel.com> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/include/asm-x86/hvm/vcpu.h')
-rw-r--r--xen/include/asm-x86/hvm/vcpu.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/xen/include/asm-x86/hvm/vcpu.h b/xen/include/asm-x86/hvm/vcpu.h
index 537da96f5e..f2da72d750 100644
--- a/xen/include/asm-x86/hvm/vcpu.h
+++ b/xen/include/asm-x86/hvm/vcpu.h
@@ -164,10 +164,9 @@ struct hvm_vcpu {
/* Callback into x86_emulate when emulating FPU/MMX/XMM instructions. */
void (*fpu_exception_callback)(void *, struct cpu_user_regs *);
void *fpu_exception_callback_arg;
- /* Pending hw/sw interrupt */
- int inject_trap; /* -1 for nothing to inject */
- int inject_error_code;
- unsigned long inject_cr2;
+
+ /* Pending hw/sw interrupt (.vector = -1 means nothing pending). */
+ struct hvm_trap inject_trap;
struct viridian_vcpu viridian;
};