KVM: PPC: Make EPCR a valid field for booke64 and bookehv
authorAlexander Graf <agraf@suse.de>
Sat, 1 Dec 2012 13:50:26 +0000 (14:50 +0100)
committerAlexander Graf <agraf@suse.de>
Thu, 6 Dec 2012 00:34:17 +0000 (01:34 +0100)
In BookE, EPCR is defined and valid when either the HV or the 64bit
category are implemented. Reflect this in the field definition.

Today the only KVM target on 64bit is HV enabled, so there is no
change in actual source code, but this keeps the code closer to the
spec and doesn't build up artificial road blocks for a PR KVM
on 64bit.

Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/include/asm/kvm_host.h

index 62fbd38b15fa44ceb7aae9967677bcccb40bd064..ca9bf459db6a56e2bb7d1e450a7b5c4d6026a3ae 100644 (file)
@@ -406,13 +406,18 @@ struct kvm_vcpu_arch {
        u32 host_mas4;
        u32 host_mas6;
        u32 shadow_epcr;
-       u32 epcr;
        u32 shadow_msrp;
        u32 eplc;
        u32 epsc;
        u32 oldpir;
 #endif
 
+#if defined(CONFIG_BOOKE)
+#if defined(CONFIG_KVM_BOOKE_HV) || defined(CONFIG_64BIT)
+       u32 epcr;
+#endif
+#endif
+
 #ifdef CONFIG_PPC_BOOK3S
        /* For Gekko paired singles */
        u32 qpr[32];