diff options
author | Alexey Kardashevskiy <aik@ozlabs.ru> | 2014-01-17 11:12:07 -0700 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2014-01-17 11:12:07 -0700 |
commit | 47c16ed56aa6bc4037bdb7b61f049097993cd244 (patch) | |
tree | 4e4825efa59941220ebbf91785064a5ec973aae9 /include/exec/exec-all.h | |
parent | 87ca1f77b1c406137fe36ab73b2dc91fb75f8d0a (diff) | |
download | qemu-47c16ed56aa6bc4037bdb7b61f049097993cd244.zip |
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 <aik@ozlabs.ru>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include/exec/exec-all.h')
-rw-r--r-- | include/exec/exec-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index ea90b649d4..3b03cbfcf8 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -81,6 +81,7 @@ void cpu_gen_init(void); int cpu_gen_code(CPUArchState *env, struct TranslationBlock *tb, int *gen_code_size_ptr); bool cpu_restore_state(CPUArchState *env, uintptr_t searched_pc); +void page_size_init(void); void QEMU_NORETURN cpu_resume_from_signal(CPUArchState *env1, void *puc); void QEMU_NORETURN cpu_io_recompile(CPUArchState *env, uintptr_t retaddr); |