diff options
author | Marcelo Tosatti <mtosatti@redhat.com> | 2013-09-03 18:55:16 -0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-09-20 12:37:52 +0200 |
commit | 0e5035776df31380a44a1a851850d110b551ecb6 (patch) | |
tree | 3434e8d2b7064734f7416a4638ac3f9a0ffcccaf /target-i386/machine.c | |
parent | 670436ced08738802e15764039d03ab0dbab2bf3 (diff) | |
download | qemu-0e5035776df31380a44a1a851850d110b551ecb6.tar.gz qemu-0e5035776df31380a44a1a851850d110b551ecb6.tar.bz2 qemu-0e5035776df31380a44a1a851850d110b551ecb6.zip |
fix steal time MSR vmsd callback to proper opaque type
Convert steal time MSR vmsd callback pointer to proper X86CPU type.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386/machine.c')
-rw-r--r-- | target-i386/machine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-i386/machine.c b/target-i386/machine.c index dc81cde535..e568da2ba4 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -330,9 +330,9 @@ static bool pv_eoi_msr_needed(void *opaque) static bool steal_time_msr_needed(void *opaque) { - CPUX86State *cpu = opaque; + X86CPU *cpu = opaque; - return cpu->steal_time_msr != 0; + return cpu->env.steal_time_msr != 0; } static const VMStateDescription vmstate_steal_time_msr = { @@ -341,7 +341,7 @@ static const VMStateDescription vmstate_steal_time_msr = { .minimum_version_id = 1, .minimum_version_id_old = 1, .fields = (VMStateField []) { - VMSTATE_UINT64(steal_time_msr, CPUX86State), + VMSTATE_UINT64(env.steal_time_msr, X86CPU), VMSTATE_END_OF_LIST() } }; |