mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-05-06 20:25:44 +00:00
KVM: fix LAPIC timer period overflow
commit b2d83cfa3fdefe5c6573d443d099a18dc3a93c5f upstream. Don't overflow when computing the 64-bit period from 32-bit registers. Fixes sourceforge bug #2826486. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ca9405b882
commit
ddf2acb72f
@@ -567,7 +567,7 @@ static void start_apic_timer(struct kvm_lapic *apic)
|
||||
{
|
||||
ktime_t now = apic->lapic_timer.timer.base->get_time();
|
||||
|
||||
apic->lapic_timer.period = apic_get_reg(apic, APIC_TMICT) *
|
||||
apic->lapic_timer.period = (u64)apic_get_reg(apic, APIC_TMICT) *
|
||||
APIC_BUS_CYCLE_NS * apic->divide_count;
|
||||
atomic_set(&apic->lapic_timer.pending, 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user