aboutsummaryrefslogtreecommitdiffstats
path: root/include/kvm
diff options
context:
space:
mode:
authorChristoffer Dall <christoffer.dall@linaro.org>2014-12-09 08:28:09 -0500
committerChristoffer Dall <christoffer.dall@linaro.org>2014-12-13 08:17:05 -0500
commitc52edf5f8caff878afc93c1b1e9a3d9490a9932f (patch)
tree839b74bd118672950321f2d8cd8e6c7d90dbb80e /include/kvm
parent6d3cfbe21bef5b66530b50ad16c88fdc71a04c35 (diff)
arm/arm64: KVM: Rename vgic_initialized to vgic_ready
The vgic_initialized() macro currently returns the state of the vgic->ready flag, which indicates if the vgic is ready to be used when running a VM, not specifically if its internal state has been initialized. Rename the macro accordingly in preparation for a more nuanced initialization flow. Acked-by: Marc Zyngier <marc.zyngier@arm.com> Reviewed-by: Eric Auger <eric.auger@linaro.org> Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'include/kvm')
-rw-r--r--include/kvm/arm_vgic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kvm/arm_vgic.h b/include/kvm/arm_vgic.h
index fe9783ba924c..3e262b9bbddf 100644
--- a/include/kvm/arm_vgic.h
+++ b/include/kvm/arm_vgic.h
@@ -287,7 +287,7 @@ bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
287 struct kvm_exit_mmio *mmio); 287 struct kvm_exit_mmio *mmio);
288 288
289#define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel)) 289#define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel))
290#define vgic_initialized(k) ((k)->arch.vgic.ready) 290#define vgic_ready(k) ((k)->arch.vgic.ready)
291 291
292int vgic_v2_probe(struct device_node *vgic_node, 292int vgic_v2_probe(struct device_node *vgic_node,
293 const struct vgic_ops **ops, 293 const struct vgic_ops **ops,
@@ -369,7 +369,7 @@ static inline int irqchip_in_kernel(struct kvm *kvm)
369 return 0; 369 return 0;
370} 370}
371 371
372static inline bool vgic_initialized(struct kvm *kvm) 372static inline bool vgic_ready(struct kvm *kvm)
373{ 373{
374 return true; 374 return true;
375} 375}