]> Git Repo - qemu.git/blobdiff - target/ppc/misc_helper.c
cputlb: drop flush_global flag from tlb_flush
[qemu.git] / target / ppc / misc_helper.c
index 1e6e705a4e7990388caed61f1b492c9549ed56e6..ab432bafaf0a5891909e61ecc4aa3ad48994e669 100644 (file)
@@ -85,7 +85,7 @@ void helper_store_sdr1(CPUPPCState *env, target_ulong val)
     if (!env->external_htab) {
         if (env->spr[SPR_SDR1] != val) {
             ppc_store_sdr1(env, val);
-            tlb_flush(CPU(cpu), 1);
+            tlb_flush(CPU(cpu));
         }
     }
 }
@@ -114,7 +114,7 @@ void helper_store_403_pbr(CPUPPCState *env, uint32_t num, target_ulong value)
     if (likely(env->pb[num] != value)) {
         env->pb[num] = value;
         /* Should be optimized */
-        tlb_flush(CPU(cpu), 1);
+        tlb_flush(CPU(cpu));
     }
 }
 
This page took 0.025031 seconds and 4 git commands to generate.