diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-04 17:02:19 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-04 17:02:19 +0000 |
commit | db620f46a8c8b168831812eabd7428a952964334 (patch) | |
tree | 755a1cb01456c96211ca74ca7e048811655fe9c1 /target-i386/svm.h | |
parent | 3cd9acb410f313b03ad9348f36d86ad8d3bf703f (diff) |
reworked SVM interrupt handling logic - fixed vmrun EIP saved value - reworked cr8 handling - added CPUState.hflags2
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4662 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/svm.h')
-rw-r--r-- | target-i386/svm.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target-i386/svm.h b/target-i386/svm.h index 6d86890818..a224aead17 100644 --- a/target-i386/svm.h +++ b/target-i386/svm.h @@ -205,9 +205,7 @@ struct __attribute__ ((__packed__)) vmcb_save_area { uint64_t sysenter_esp; uint64_t sysenter_eip; uint64_t cr2; - /* qemu: cr8 added to reuse this as hsave */ - uint64_t cr8; - uint8_t reserved_6[32 - 8]; /* originally 32 */ + uint8_t reserved_6[32]; uint64_t g_pat; uint64_t dbgctl; uint64_t br_from; |