mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
KVM: PIT: fix i8254 pending count read
count_load_time assignment is bogus: its supposed to contain what it means, not the expiration time. Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
ba4cef31d5
commit
d2a8284e8f
@ -207,7 +207,7 @@ static int __pit_timer_fn(struct kvm_kpit_state *ps)
|
|||||||
hrtimer_add_expires_ns(&pt->timer, pt->period);
|
hrtimer_add_expires_ns(&pt->timer, pt->period);
|
||||||
pt->scheduled = hrtimer_get_expires_ns(&pt->timer);
|
pt->scheduled = hrtimer_get_expires_ns(&pt->timer);
|
||||||
if (pt->period)
|
if (pt->period)
|
||||||
ps->channels[0].count_load_time = hrtimer_get_expires(&pt->timer);
|
ps->channels[0].count_load_time = ktime_get();
|
||||||
|
|
||||||
return (pt->period == 0 ? 0 : 1);
|
return (pt->period == 0 ? 0 : 1);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user