From: Alexander Graf Date: Fri, 19 Feb 2010 10:00:28 +0000 (+0100) Subject: KVM: PPC: Make fpscr 64-bit X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c62e096dec032c82bae60545623c24743116f5dd;p=mv-sheeva.git KVM: PPC: Make fpscr 64-bit Modern PowerPCs have a 64 bit wide FPSCR register. Let's accomodate for that and make it 64 bits in our vcpu struct too. Signed-off-by: Alexander Graf Signed-off-by: Avi Kivity --- diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h index 4b14dcd4874..fb87dcf418b 100644 --- a/arch/powerpc/include/asm/kvm_host.h +++ b/arch/powerpc/include/asm/kvm_host.h @@ -175,7 +175,7 @@ struct kvm_vcpu_arch { ulong gpr[32]; u64 fpr[32]; - u32 fpscr; + u64 fpscr; #ifdef CONFIG_ALTIVEC vector128 vr[32];