diff options
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r-- | arch/x86/kvm/x86.c | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 9d068966fb2a..a1e1bc9d412d 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -670,7 +670,7 @@ static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) | |||
670 | { | 670 | { |
671 | static int version; | 671 | static int version; |
672 | struct pvclock_wall_clock wc; | 672 | struct pvclock_wall_clock wc; |
673 | struct timespec now, sys, boot; | 673 | struct timespec boot; |
674 | 674 | ||
675 | if (!wall_clock) | 675 | if (!wall_clock) |
676 | return; | 676 | return; |
@@ -685,9 +685,7 @@ static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) | |||
685 | * wall clock specified here. guest system time equals host | 685 | * wall clock specified here. guest system time equals host |
686 | * system time for us, thus we must fill in host boot time here. | 686 | * system time for us, thus we must fill in host boot time here. |
687 | */ | 687 | */ |
688 | now = current_kernel_time(); | 688 | getboottime(&boot); |
689 | ktime_get_ts(&sys); | ||
690 | boot = ns_to_timespec(timespec_to_ns(&now) - timespec_to_ns(&sys)); | ||
691 | 689 | ||
692 | wc.sec = boot.tv_sec; | 690 | wc.sec = boot.tv_sec; |
693 | wc.nsec = boot.tv_nsec; | 691 | wc.nsec = boot.tv_nsec; |
@@ -762,6 +760,7 @@ static void kvm_write_guest_time(struct kvm_vcpu *v) | |||
762 | local_irq_save(flags); | 760 | local_irq_save(flags); |
763 | kvm_get_msr(v, MSR_IA32_TSC, &vcpu->hv_clock.tsc_timestamp); | 761 | kvm_get_msr(v, MSR_IA32_TSC, &vcpu->hv_clock.tsc_timestamp); |
764 | ktime_get_ts(&ts); | 762 | ktime_get_ts(&ts); |
763 | monotonic_to_bootbased(&ts); | ||
765 | local_irq_restore(flags); | 764 | local_irq_restore(flags); |
766 | 765 | ||
767 | /* With all the info we got, fill in the values */ | 766 | /* With all the info we got, fill in the values */ |
@@ -1913,7 +1912,8 @@ static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, | |||
1913 | 1912 | ||
1914 | events->sipi_vector = vcpu->arch.sipi_vector; | 1913 | events->sipi_vector = vcpu->arch.sipi_vector; |
1915 | 1914 | ||
1916 | events->flags = 0; | 1915 | events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING |
1916 | | KVM_VCPUEVENT_VALID_SIPI_VECTOR); | ||
1917 | 1917 | ||
1918 | vcpu_put(vcpu); | 1918 | vcpu_put(vcpu); |
1919 | } | 1919 | } |
@@ -1921,7 +1921,8 @@ static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, | |||
1921 | static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, | 1921 | static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, |
1922 | struct kvm_vcpu_events *events) | 1922 | struct kvm_vcpu_events *events) |
1923 | { | 1923 | { |
1924 | if (events->flags) | 1924 | if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING |
1925 | | KVM_VCPUEVENT_VALID_SIPI_VECTOR)) | ||
1925 | return -EINVAL; | 1926 | return -EINVAL; |
1926 | 1927 | ||
1927 | vcpu_load(vcpu); | 1928 | vcpu_load(vcpu); |
@@ -1938,10 +1939,12 @@ static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, | |||
1938 | kvm_pic_clear_isr_ack(vcpu->kvm); | 1939 | kvm_pic_clear_isr_ack(vcpu->kvm); |
1939 | 1940 | ||
1940 | vcpu->arch.nmi_injected = events->nmi.injected; | 1941 | vcpu->arch.nmi_injected = events->nmi.injected; |
1941 | vcpu->arch.nmi_pending = events->nmi.pending; | 1942 | if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING) |
1943 | vcpu->arch.nmi_pending = events->nmi.pending; | ||
1942 | kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked); | 1944 | kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked); |
1943 | 1945 | ||
1944 | vcpu->arch.sipi_vector = events->sipi_vector; | 1946 | if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR) |
1947 | vcpu->arch.sipi_vector = events->sipi_vector; | ||
1945 | 1948 | ||
1946 | vcpu_put(vcpu); | 1949 | vcpu_put(vcpu); |
1947 | 1950 | ||
@@ -5068,12 +5071,13 @@ int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu) | |||
5068 | GFP_KERNEL); | 5071 | GFP_KERNEL); |
5069 | if (!vcpu->arch.mce_banks) { | 5072 | if (!vcpu->arch.mce_banks) { |
5070 | r = -ENOMEM; | 5073 | r = -ENOMEM; |
5071 | goto fail_mmu_destroy; | 5074 | goto fail_free_lapic; |
5072 | } | 5075 | } |
5073 | vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS; | 5076 | vcpu->arch.mcg_cap = KVM_MAX_MCE_BANKS; |
5074 | 5077 | ||
5075 | return 0; | 5078 | return 0; |
5076 | 5079 | fail_free_lapic: | |
5080 | kvm_free_lapic(vcpu); | ||
5077 | fail_mmu_destroy: | 5081 | fail_mmu_destroy: |
5078 | kvm_mmu_destroy(vcpu); | 5082 | kvm_mmu_destroy(vcpu); |
5079 | fail_free_pio_data: | 5083 | fail_free_pio_data: |
@@ -5084,6 +5088,7 @@ fail: | |||
5084 | 5088 | ||
5085 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) | 5089 | void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) |
5086 | { | 5090 | { |
5091 | kfree(vcpu->arch.mce_banks); | ||
5087 | kvm_free_lapic(vcpu); | 5092 | kvm_free_lapic(vcpu); |
5088 | down_read(&vcpu->kvm->slots_lock); | 5093 | down_read(&vcpu->kvm->slots_lock); |
5089 | kvm_mmu_destroy(vcpu); | 5094 | kvm_mmu_destroy(vcpu); |