mirror of https://github.com/xemu-project/xemu.git
kvm-all: PAGE_SIZE should be real host page size
Just noticed this while grepping TARGET_PAGE_SIZE for an unrelated reason. I didn't use qemu_real_host_page_size as kvm_set_phys_mem() does, because we'd need to make sure page_size_init() has run first. Signed-off-by: Andrew Jones <drjones@redhat.com> Message-Id: <1447115022-4142-1-git-send-email-drjones@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2f3a2bb15e
commit
bc92e4e97e
|
@ -45,8 +45,10 @@
|
||||||
#include <sys/eventfd.h>
|
#include <sys/eventfd.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* KVM uses PAGE_SIZE in its definition of COALESCED_MMIO_MAX */
|
/* KVM uses PAGE_SIZE in its definition of KVM_COALESCED_MMIO_MAX. We
|
||||||
#define PAGE_SIZE TARGET_PAGE_SIZE
|
* need to use the real host PAGE_SIZE, as that's what KVM will use.
|
||||||
|
*/
|
||||||
|
#define PAGE_SIZE getpagesize()
|
||||||
|
|
||||||
//#define DEBUG_KVM
|
//#define DEBUG_KVM
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue