diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2013-04-08 11:47:19 -0400 |
---|---|---|
committer | Christoffer Dall <cdall@cs.columbia.edu> | 2013-04-29 01:23:13 -0400 |
commit | 3de50da6901521f9e520b8eb47d092779512e83c (patch) | |
tree | 2cf4831d97ed5490c14b784581ddaad1ae21ceb7 /arch/arm/kernel | |
parent | 17b1e31f9201fc102ee3ddd409988e47753e22f9 (diff) |
ARM: KVM: promote vfp_host pointer to generic host cpu context
We use the vfp_host pointer to store the host VFP context, should
the guest start using VFP itself.
Actually, we can use this pointer in a more generic way to store
CPU speficic data, and arm64 is using it to dump the whole host
state before switching to the guest.
Simply rename the vfp_host field to host_cpu_context, and the
corresponding type to kvm_cpu_context_t. No change in functionnality.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Christoffer Dall <cdall@cs.columbia.edu>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/asm-offsets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/asm-offsets.c b/arch/arm/kernel/asm-offsets.c index ee1ac39a58f0..92562a2e9793 100644 --- a/arch/arm/kernel/asm-offsets.c +++ b/arch/arm/kernel/asm-offsets.c | |||
@@ -154,7 +154,7 @@ int main(void) | |||
154 | DEFINE(VCPU_MIDR, offsetof(struct kvm_vcpu, arch.midr)); | 154 | DEFINE(VCPU_MIDR, offsetof(struct kvm_vcpu, arch.midr)); |
155 | DEFINE(VCPU_CP15, offsetof(struct kvm_vcpu, arch.cp15)); | 155 | DEFINE(VCPU_CP15, offsetof(struct kvm_vcpu, arch.cp15)); |
156 | DEFINE(VCPU_VFP_GUEST, offsetof(struct kvm_vcpu, arch.vfp_guest)); | 156 | DEFINE(VCPU_VFP_GUEST, offsetof(struct kvm_vcpu, arch.vfp_guest)); |
157 | DEFINE(VCPU_VFP_HOST, offsetof(struct kvm_vcpu, arch.vfp_host)); | 157 | DEFINE(VCPU_VFP_HOST, offsetof(struct kvm_vcpu, arch.host_cpu_context)); |
158 | DEFINE(VCPU_REGS, offsetof(struct kvm_vcpu, arch.regs)); | 158 | DEFINE(VCPU_REGS, offsetof(struct kvm_vcpu, arch.regs)); |
159 | DEFINE(VCPU_USR_REGS, offsetof(struct kvm_vcpu, arch.regs.usr_regs)); | 159 | DEFINE(VCPU_USR_REGS, offsetof(struct kvm_vcpu, arch.regs.usr_regs)); |
160 | DEFINE(VCPU_SVC_REGS, offsetof(struct kvm_vcpu, arch.regs.svc_regs)); | 160 | DEFINE(VCPU_SVC_REGS, offsetof(struct kvm_vcpu, arch.regs.svc_regs)); |