diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/kvm/arm.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/arch/arm/kvm/arm.c b/arch/arm/kvm/arm.c index 66f37c4cdf13..2d6d91001062 100644 --- a/arch/arm/kvm/arm.c +++ b/arch/arm/kvm/arm.c | |||
@@ -425,6 +425,7 @@ static void update_vttbr(struct kvm *kvm) | |||
425 | 425 | ||
426 | static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu) | 426 | static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu) |
427 | { | 427 | { |
428 | struct kvm *kvm = vcpu->kvm; | ||
428 | int ret; | 429 | int ret; |
429 | 430 | ||
430 | if (likely(vcpu->arch.has_run_once)) | 431 | if (likely(vcpu->arch.has_run_once)) |
@@ -436,12 +437,20 @@ static int kvm_vcpu_first_run_init(struct kvm_vcpu *vcpu) | |||
436 | * Map the VGIC hardware resources before running a vcpu the first | 437 | * Map the VGIC hardware resources before running a vcpu the first |
437 | * time on this VM. | 438 | * time on this VM. |
438 | */ | 439 | */ |
439 | if (unlikely(!vgic_ready(vcpu->kvm))) { | 440 | if (unlikely(!vgic_ready(kvm))) { |
440 | ret = kvm_vgic_map_resources(vcpu->kvm); | 441 | ret = kvm_vgic_map_resources(kvm); |
441 | if (ret) | 442 | if (ret) |
442 | return ret; | 443 | return ret; |
443 | } | 444 | } |
444 | 445 | ||
446 | /* | ||
447 | * Enable the arch timers only if we have an in-kernel VGIC | ||
448 | * and it has been properly initialized, since we cannot handle | ||
449 | * interrupts from the virtual timer with a userspace gic. | ||
450 | */ | ||
451 | if (irqchip_in_kernel(kvm) && vgic_initialized(kvm)) | ||
452 | kvm_timer_enable(kvm); | ||
453 | |||
445 | return 0; | 454 | return 0; |
446 | } | 455 | } |
447 | 456 | ||