aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-01-08 18:58:14 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-01-08 18:58:14 -0500
commit516c50cde604e93f094bb4c42a2cf81411c7a78d (patch)
tree06496f37f8db43cb3e7ec2ee5c6606b211b85854
parent496b0b57c00f2193f2902dd70b219df5a4dfce94 (diff)
parente5e57e7a03b1cdcb98e4aed135def2a08cbf3257 (diff)
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
Pull KVM fix from Paolo Bonzini: "A simple fix. I'm sending it before the merge window, because it refines a patch found in your master branch but not yet in the kvm/next branch that is destined for 4.5" * tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm: kvm: x86: only channel 0 of the i8254 is linked to the HPET
-rw-r--r--arch/x86/kvm/i8254.c1
-rw-r--r--arch/x86/kvm/x86.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kvm/i8254.c b/arch/x86/kvm/i8254.c
index 08116ff227cc..b0ea42b78ccd 100644
--- a/arch/x86/kvm/i8254.c
+++ b/arch/x86/kvm/i8254.c
@@ -420,6 +420,7 @@ void kvm_pit_load_count(struct kvm *kvm, int channel, u32 val, int hpet_legacy_s
420 u8 saved_mode; 420 u8 saved_mode;
421 if (hpet_legacy_start) { 421 if (hpet_legacy_start) {
422 /* save existing mode for later reenablement */ 422 /* save existing mode for later reenablement */
423 WARN_ON(channel != 0);
423 saved_mode = kvm->arch.vpit->pit_state.channels[0].mode; 424 saved_mode = kvm->arch.vpit->pit_state.channels[0].mode;
424 kvm->arch.vpit->pit_state.channels[0].mode = 0xff; /* disable timer */ 425 kvm->arch.vpit->pit_state.channels[0].mode = 0xff; /* disable timer */
425 pit_load_count(kvm, channel, val); 426 pit_load_count(kvm, channel, val);
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 7ffc224bbe41..97592e190413 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3606,7 +3606,8 @@ static int kvm_vm_ioctl_set_pit2(struct kvm *kvm, struct kvm_pit_state2 *ps)
3606 sizeof(kvm->arch.vpit->pit_state.channels)); 3606 sizeof(kvm->arch.vpit->pit_state.channels));
3607 kvm->arch.vpit->pit_state.flags = ps->flags; 3607 kvm->arch.vpit->pit_state.flags = ps->flags;
3608 for (i = 0; i < 3; i++) 3608 for (i = 0; i < 3; i++)
3609 kvm_pit_load_count(kvm, i, kvm->arch.vpit->pit_state.channels[i].count, start); 3609 kvm_pit_load_count(kvm, i, kvm->arch.vpit->pit_state.channels[i].count,
3610 start && i == 0);
3610 mutex_unlock(&kvm->arch.vpit->pit_state.lock); 3611 mutex_unlock(&kvm->arch.vpit->pit_state.lock);
3611 return 0; 3612 return 0;
3612} 3613}