diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2012-10-27 13:23:25 -0400 |
---|---|---|
committer | Christoffer Dall <cdall@cs.columbia.edu> | 2013-03-06 18:48:44 -0500 |
commit | 9c7a6432fb081563f084b25bbd2774b1547c4fad (patch) | |
tree | a5aa3aa416b762feae8ea424f1ba374d30268592 /arch/arm/include | |
parent | e7858c58d52237a4519e2fdb1ce8f2d9805ce0ce (diff) |
ARM: KVM: use kvm_kernel_vfp_t as an abstract type for VFP containers
In order to keep the VFP allocation code common, use an abstract type
for the VFP containers. Maps onto struct vfp_hard_struct on ARM.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/kvm_host.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/include/asm/kvm_host.h b/arch/arm/include/asm/kvm_host.h index f00a557c107a..0c4e643d939e 100644 --- a/arch/arm/include/asm/kvm_host.h +++ b/arch/arm/include/asm/kvm_host.h | |||
@@ -87,6 +87,8 @@ struct kvm_vcpu_fault_info { | |||
87 | u32 hyp_pc; /* PC when exception was taken from Hyp mode */ | 87 | u32 hyp_pc; /* PC when exception was taken from Hyp mode */ |
88 | }; | 88 | }; |
89 | 89 | ||
90 | typedef struct vfp_hard_struct kvm_kernel_vfp_t; | ||
91 | |||
90 | struct kvm_vcpu_arch { | 92 | struct kvm_vcpu_arch { |
91 | struct kvm_regs regs; | 93 | struct kvm_regs regs; |
92 | 94 | ||
@@ -103,8 +105,8 @@ struct kvm_vcpu_arch { | |||
103 | struct kvm_vcpu_fault_info fault; | 105 | struct kvm_vcpu_fault_info fault; |
104 | 106 | ||
105 | /* Floating point registers (VFP and Advanced SIMD/NEON) */ | 107 | /* Floating point registers (VFP and Advanced SIMD/NEON) */ |
106 | struct vfp_hard_struct vfp_guest; | 108 | kvm_kernel_vfp_t vfp_guest; |
107 | struct vfp_hard_struct *vfp_host; | 109 | kvm_kernel_vfp_t *vfp_host; |
108 | 110 | ||
109 | /* VGIC state */ | 111 | /* VGIC state */ |
110 | struct vgic_cpu vgic_cpu; | 112 | struct vgic_cpu vgic_cpu; |