hw/ppc/spapr: Use tb_invalidate_phys_range in h_page_init
We only need invalidate tbs from a single page, not flush all translations. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Harsh Prateek Bora <harshpb@linux.ibm.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
55b490b58f
commit
9d61f61b4f
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
|||
#include "qemu/main-loop.h"
|
||||
#include "qemu/module.h"
|
||||
#include "qemu/error-report.h"
|
||||
#include "exec/tb-flush.h"
|
||||
#include "exec/translation-block.h"
|
||||
#include "exec/target_page.h"
|
||||
#include "helper_regs.h"
|
||||
#include "hw/ppc/ppc.h"
|
||||
|
|
@ -301,7 +301,7 @@ static target_ulong h_page_init(PowerPCCPU *cpu, SpaprMachineState *spapr,
|
|||
if (kvm_enabled()) {
|
||||
kvmppc_icbi_range(cpu, pdst, len);
|
||||
} else if (tcg_enabled()) {
|
||||
tb_flush(CPU(cpu));
|
||||
tb_invalidate_phys_range(CPU(cpu), dst, dst + len - 1);
|
||||
} else {
|
||||
g_assert_not_reached();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue