提交 1f57be28 编写于 作者: C Christoffer Dall

arm/arm64: KVM: Add (new) vgic_initialized macro

Some code paths will need to check to see if the internal state of the
vgic has been initialized (such as when creating new VCPUs), so
introduce such a macro that checks the nr_cpus field which is set when
the vgic has been initialized.

Also set nr_cpus = 0 in kvm_vgic_destroy, because the error path in
vgic_init() will call this function, and code should never errornously
assume the vgic to be properly initialized after an error.
Acked-by: NMarc Zyngier <marc.zyngier@arm.com>
Reviewed-by: NEric Auger <eric.auger@linaro.org>
Signed-off-by: NChristoffer Dall <christoffer.dall@linaro.org>
上级 c52edf5f
...@@ -287,6 +287,7 @@ bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run, ...@@ -287,6 +287,7 @@ bool vgic_handle_mmio(struct kvm_vcpu *vcpu, struct kvm_run *run,
struct kvm_exit_mmio *mmio); struct kvm_exit_mmio *mmio);
#define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel)) #define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel))
#define vgic_initialized(k) (!!((k)->arch.vgic.nr_cpus))
#define vgic_ready(k) ((k)->arch.vgic.ready) #define vgic_ready(k) ((k)->arch.vgic.ready)
int vgic_v2_probe(struct device_node *vgic_node, int vgic_v2_probe(struct device_node *vgic_node,
...@@ -369,6 +370,11 @@ static inline int irqchip_in_kernel(struct kvm *kvm) ...@@ -369,6 +370,11 @@ static inline int irqchip_in_kernel(struct kvm *kvm)
return 0; return 0;
} }
static inline bool vgic_initialized(struct kvm *kvm)
{
return true;
}
static inline bool vgic_ready(struct kvm *kvm) static inline bool vgic_ready(struct kvm *kvm)
{ {
return true; return true;
......
...@@ -1780,6 +1780,7 @@ void kvm_vgic_destroy(struct kvm *kvm) ...@@ -1780,6 +1780,7 @@ void kvm_vgic_destroy(struct kvm *kvm)
dist->irq_spi_cpu = NULL; dist->irq_spi_cpu = NULL;
dist->irq_spi_target = NULL; dist->irq_spi_target = NULL;
dist->irq_pending_on_cpu = NULL; dist->irq_pending_on_cpu = NULL;
dist->nr_cpus = 0;
} }
/* /*
...@@ -1793,7 +1794,7 @@ static int vgic_init(struct kvm *kvm) ...@@ -1793,7 +1794,7 @@ static int vgic_init(struct kvm *kvm)
int nr_cpus, nr_irqs; int nr_cpus, nr_irqs;
int ret, i, vcpu_id; int ret, i, vcpu_id;
if (dist->nr_cpus) /* Already allocated */ if (vgic_initialized(kvm))
return 0; return 0;
nr_cpus = dist->nr_cpus = atomic_read(&kvm->online_vcpus); nr_cpus = dist->nr_cpus = atomic_read(&kvm->online_vcpus);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册