# HG changeset patch
# User Keir Fraser <keir@xxxxxxxxxxxxx>
# Date 1194021294 0
# Node ID 838e77a41a3c53a54428e642cb0440a8a6f8912b
# Parent e11b24680480428275a78161b27752f906744dd5
hvm: Timer fixes:
1. Do not record more than one pending interrupt in
no-missed-tick-accounting mode. We do not stack up missed interrupts
in this timer mode.
2. Always record all missed ticks when we are in a
missed-tick-accounting mode. Do not have a ceiling for this as it
simply causes guests to lose track of wall time.
3. General bits of cleanup and simplification.
From: Dave Winchell <dwinchell@xxxxxxxxxxxxxxx>
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
xen/arch/x86/hvm/vpt.c | 32 ++++++++++----------------------
1 files changed, 10 insertions(+), 22 deletions(-)
diff -r e11b24680480 -r 838e77a41a3c xen/arch/x86/hvm/vpt.c
--- a/xen/arch/x86/hvm/vpt.c Fri Nov 02 16:06:06 2007 +0000
+++ b/xen/arch/x86/hvm/vpt.c Fri Nov 02 16:34:54 2007 +0000
@@ -49,6 +49,9 @@ static void pt_process_missed_ticks(stru
{
s_time_t missed_ticks;
+ if ( mode_is(pt->vcpu->domain, no_missed_tick_accounting) )
+ return;
+
if ( pt->one_shot )
return;
@@ -57,16 +60,7 @@ static void pt_process_missed_ticks(stru
return;
missed_ticks = missed_ticks / (s_time_t) pt->period + 1;
- if ( missed_ticks > 1000 )
- {
- /* TODO: Adjust guest time together */
- pt->pending_intr_nr++;
- }
- else
- {
- pt->pending_intr_nr += missed_ticks;
- }
-
+ pt->pending_intr_nr += missed_ticks;
pt->scheduled += missed_ticks * pt->period;
}
@@ -117,15 +111,7 @@ void pt_restore_timer(struct vcpu *v)
list_for_each_entry ( pt, head, list )
{
- if ( !mode_is(v->domain, no_missed_tick_accounting) )
- {
- pt_process_missed_ticks(pt);
- }
- else if ( (NOW() - pt->scheduled) >= 0 )
- {
- pt->pending_intr_nr++;
- pt->scheduled = NOW() + pt->period;
- }
+ pt_process_missed_ticks(pt);
set_timer(&pt->timer, pt->scheduled);
}
@@ -140,13 +126,15 @@ static void pt_timer_fn(void *data)
pt_lock(pt);
- pt->pending_intr_nr++;
+ if ( mode_is(pt->vcpu->domain, no_missed_tick_accounting) )
+ pt->pending_intr_nr = 1;
+ else
+ pt->pending_intr_nr++;
if ( !pt->one_shot )
{
pt->scheduled += pt->period;
- if ( !mode_is(pt->vcpu->domain, no_missed_tick_accounting) )
- pt_process_missed_ticks(pt);
+ pt_process_missed_ticks(pt);
set_timer(&pt->timer, pt->scheduled);
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|