summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/include
diff options
context:
space:
mode:
authorAlexander Graf2009-10-30 06:47:02 +0100
committerBenjamin Herrenschmidt2009-11-05 06:49:51 +0100
commitec3c11aa5f9d0a7f48f46d6790c33ccc654fd6ec (patch)
tree14d07266eab4f3c23cac149c1f9189835879e068 /arch/powerpc/include
parentMove dirty logging code to sub-arch (diff)
downloadkernel-qcow2-linux-ec3c11aa5f9d0a7f48f46d6790c33ccc654fd6ec.tar.gz
kernel-qcow2-linux-ec3c11aa5f9d0a7f48f46d6790c33ccc654fd6ec.tar.xz
kernel-qcow2-linux-ec3c11aa5f9d0a7f48f46d6790c33ccc654fd6ec.zip
Pass PVR in sregs
Right now sregs is unused on PPC, so we can use it for initialization of the CPU. KVM on BookE always virtualizes the host CPU. On Book3s we go a step further and take the PVR from userspace that tells us what kind of CPU we are supposed to virtualize, because we support Book3s_32 and Book3s_64 guests. In order to get that information, we use the sregs ioctl, because we don't want to reset the guest CPU on every normal register set. Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r--arch/powerpc/include/asm/kvm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/kvm.h b/arch/powerpc/include/asm/kvm.h
index bb2de6aa5ce0..c9ca97f43bc1 100644
--- a/arch/powerpc/include/asm/kvm.h
+++ b/arch/powerpc/include/asm/kvm.h
@@ -46,6 +46,8 @@ struct kvm_regs {
};
struct kvm_sregs {
+ __u32 pvr;
+ char pad[1020];
};
struct kvm_fpu {