mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 19:33:39 +08:00
KVM: Make vmport KVM-compatible
The vmport "device" accesses the VCPU registers, so it requires proper cpu_synchronize_state. Add it to vmport_ioport_read, which also synchronizes vmport_ioport_write. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
parent
19ccb8ea17
commit
03c63b9452
@ -25,6 +25,7 @@
|
||||
#include "isa.h"
|
||||
#include "pc.h"
|
||||
#include "sysemu.h"
|
||||
#include "kvm.h"
|
||||
|
||||
//#define VMPORT_DEBUG
|
||||
|
||||
@ -58,6 +59,8 @@ static uint32_t vmport_ioport_read(void *opaque, uint32_t addr)
|
||||
unsigned char command;
|
||||
uint32_t eax;
|
||||
|
||||
cpu_synchronize_state(env);
|
||||
|
||||
eax = env->regs[R_EAX];
|
||||
if (eax != VMPORT_MAGIC)
|
||||
return eax;
|
||||
|
Loading…
Reference in New Issue
Block a user