mirror of
https://github.com/mii443/qemu.git
synced 2025-09-01 22:59:29 +00:00
KVM: fix addr type for KVM_IOEVENTFD
The @addr here is a guest physical address and can easily be bigger than 4G. This changes uint32_t to hwaddr. Cc: qemu-stable@nongnu.org Cc: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
committed by
Paolo Bonzini
parent
94ccff1338
commit
584f2be79d
@ -519,7 +519,7 @@ int kvm_check_extension(KVMState *s, unsigned int extension)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int kvm_set_ioeventfd_mmio(int fd, uint32_t addr, uint32_t val,
|
static int kvm_set_ioeventfd_mmio(int fd, hwaddr addr, uint32_t val,
|
||||||
bool assign, uint32_t size, bool datamatch)
|
bool assign, uint32_t size, bool datamatch)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
Reference in New Issue
Block a user