]> git.proxmox.com Git - qemu.git/commitdiff
PPC: KVM: Fix BAT put
authorAlexander Graf <agraf@suse.de>
Fri, 5 Oct 2012 02:34:40 +0000 (04:34 +0200)
committerAlexander Graf <agraf@suse.de>
Fri, 5 Oct 2012 02:38:46 +0000 (04:38 +0200)
In the sregs API, upper and lower 32bit segments of the BAT registers
are swapped when doing a set. Since we need to support old kernels out
there, don't bother to fix it in the kernel, but instead work around
the problem in QEMU by swapping on put.

Signed-off-by: Alexander Graf <agraf@suse.de>
target-ppc/kvm.c

index 1975323eb70f1b94b292ee33fd2e5b8f7d00ab34..93c5bb75e79b363b6371bca8557804b367e4a9b9 100644 (file)
@@ -493,10 +493,11 @@ int kvm_arch_put_registers(CPUPPCState *env, int level)
 
         /* Sync BATs */
         for (i = 0; i < 8; i++) {
-            sregs.u.s.ppc32.dbat[i] = ((uint64_t)env->DBAT[1][i] << 32)
-                | env->DBAT[0][i];
-            sregs.u.s.ppc32.ibat[i] = ((uint64_t)env->IBAT[1][i] << 32)
-                | env->IBAT[0][i];
+            /* Beware. We have to swap upper and lower bits here */
+            sregs.u.s.ppc32.dbat[i] = ((uint64_t)env->DBAT[0][i] << 32)
+                | env->DBAT[1][i];
+            sregs.u.s.ppc32.ibat[i] = ((uint64_t)env->IBAT[0][i] << 32)
+                | env->IBAT[1][i];
         }
 
         ret = kvm_vcpu_ioctl(env, KVM_SET_SREGS, &sregs);