diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-04-02 15:39:50 +0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2019-05-10 11:12:50 -0700 |
commit | 5d0044212c375c0696baef7bba13699277dac5b5 (patch) | |
tree | eb0ad2690200d264f0ca937958fc762d75304e00 /target/i386/cpu.h | |
parent | 3c7bef03c54f9b731539b8037ba0160402a3a2a6 (diff) | |
download | qemu-5d0044212c375c0696baef7bba13699277dac5b5.zip qemu-5d0044212c375c0696baef7bba13699277dac5b5.tar.gz qemu-5d0044212c375c0696baef7bba13699277dac5b5.tar.bz2 |
target/i386: Convert to CPUClass::tlb_fill
We do not support probing, but we do not need it yet either.
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/i386/cpu.h')
-rw-r--r-- | target/i386/cpu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/i386/cpu.h b/target/i386/cpu.h index 0128910..fce6660 100644 --- a/target/i386/cpu.h +++ b/target/i386/cpu.h @@ -1656,8 +1656,9 @@ void host_cpuid(uint32_t function, uint32_t count, void host_vendor_fms(char *vendor, int *family, int *model, int *stepping); /* helper.c */ -int x86_cpu_handle_mmu_fault(CPUState *cpu, vaddr addr, int size, - int is_write, int mmu_idx); +bool x86_cpu_tlb_fill(CPUState *cs, vaddr address, int size, + MMUAccessType access_type, int mmu_idx, + bool probe, uintptr_t retaddr); void x86_cpu_set_a20(X86CPU *cpu, int a20_state); #ifndef CONFIG_USER_ONLY |