]> Git Repo - qemu.git/commitdiff
target/ppc: Fix argument to ppc_radix64_partition_scoped_xlate() again
authorGreg Kurz <[email protected]>
Tue, 26 May 2020 16:20:37 +0000 (18:20 +0200)
committerDavid Gibson <[email protected]>
Wed, 27 May 2020 05:29:36 +0000 (15:29 +1000)
The penultimate argument of function ppc_radix64_partition_scoped_xlate()
has the bool type.

Fixes: d04ea940c597 "target/ppc: Add support for Radix partition-scoped translation"
Signed-off-by: Greg Kurz <[email protected]>
Message-Id: <159051003729.407106.10610703877543955831[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: David Gibson <[email protected]>
target/ppc/mmu-radix64.c

index 0d3922537c4c73a7ff1a3044c0139af098e62871..c60bf3135734fa421e19b35087f0df1cd0597ce8 100644 (file)
@@ -513,7 +513,7 @@ static int ppc_radix64_xlate(PowerPCCPU *cpu, vaddr eaddr, int rwx,
 
             ret = ppc_radix64_partition_scoped_xlate(cpu, rwx, eaddr, g_raddr,
                                                      pate, raddr, &prot, &psize,
-                                                     0, guest_visible);
+                                                     false, guest_visible);
             if (ret) {
                 return ret;
             }
This page took 0.028003 seconds and 4 git commands to generate.