diff options
author | Chen Fan | 2013-12-23 10:04:02 +0100 |
---|---|---|
committer | Andreas Färber | 2013-12-23 16:30:40 +0100 |
commit | 02e51483341a371b508c1a529782d83064c93596 (patch) | |
tree | a6f1621cf820f02bb122cf8990293ec9f5689065 /target-i386/cpu.h | |
parent | cputlb: Tidy memset() of arrays (diff) | |
download | qemu-02e51483341a371b508c1a529782d83064c93596.tar.gz qemu-02e51483341a371b508c1a529782d83064c93596.tar.xz qemu-02e51483341a371b508c1a529782d83064c93596.zip |
target-i386: Move apic_state field from CPUX86State to X86CPU
This motion is preparing for refactoring vCPU APIC subsequently.
Signed-off-by: Chen Fan <chen.fan.fnst@cn.fujitsu.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index ea373e82dc..1d94a9dbd7 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -895,10 +895,6 @@ typedef struct CPUX86State { int tsc_khz; void *kvm_xsave_buf; - /* in order to simplify APIC support, we leave this pointer to the - user */ - struct DeviceState *apic_state; - uint64_t mcg_cap; uint64_t mcg_ctl; uint64_t mce_banks[MCE_BANKS_DEF*4]; |