From 47c16ed56aa6bc4037bdb7b61f049097993cd244 Mon Sep 17 00:00:00 2001 From: Alexey Kardashevskiy Date: Fri, 17 Jan 2014 11:12:07 -0700 Subject: kvm: initialize qemu_host_page_size There is a HOST_PAGE_ALIGN macro which makes sense for KVM accelerator but it uses qemu_host_page_size/qemu_host_page_mask which initialized for TCG only. This moves qemu_host_page_size/qemu_host_page_mask initialization from TCG's page_init() and adds a call for it from kvm_init(). Signed-off-by: Alexey Kardashevskiy Acked-by: Paolo Bonzini Signed-off-by: Alex Williamson --- kvm-all.c | 1 + 1 file changed, 1 insertion(+) (limited to 'kvm-all.c') diff --git a/kvm-all.c b/kvm-all.c index 0bfb060fa7..edf2365b7a 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -1360,6 +1360,7 @@ int kvm_init(void) * page size for the system though. */ assert(TARGET_PAGE_SIZE <= getpagesize()); + page_size_init(); #ifdef KVM_CAP_SET_GUEST_DEBUG QTAILQ_INIT(&s->kvm_sw_breakpoints); -- cgit v1.2.1