[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] x86 hvm: don't set periodical timer again until its IRQ is delivered.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1253089757 -3600 # Node ID 0c83979c1b56b297a5109f2c206630af28460337 # Parent a35a1ac91230c74067736b82123b65c370a8d910 x86 hvm: don't set periodical timer again until its IRQ is delivered. Modern Windows OS (ex XP,2003,2008) never use the PIT timer, and neither cpu#0's LAPIC timer after boot. Despite that, xen emulates them busily. It's inefficient. With this patch, setting a timer is defered while its IRQ is masked. The reasons why pt_timer_fn() simply calls vcpu_kick() are: - checking by pt_irq_masked() is duplicated. pt_update_irq() also does. - pt_timer_fn() is likely called on the same processor as pt->vcpu->processor. Hence vcpu_kick() hardly send IPI. Signed-off-by: Kouya Shimura <kouya@xxxxxxxxxxxxxx> --- xen/arch/x86/hvm/vpt.c | 23 ++++++++++++----------- 1 files changed, 12 insertions(+), 11 deletions(-) diff -r a35a1ac91230 -r 0c83979c1b56 xen/arch/x86/hvm/vpt.c --- a/xen/arch/x86/hvm/vpt.c Wed Sep 16 09:26:04 2009 +0100 +++ b/xen/arch/x86/hvm/vpt.c Wed Sep 16 09:29:17 2009 +0100 @@ -187,8 +187,11 @@ void pt_restore_timer(struct vcpu *v) list_for_each_entry ( pt, head, list ) { - pt_process_missed_ticks(pt); - set_timer(&pt->timer, pt->scheduled); + if ( pt->pending_intr_nr == 0 ) + { + pt_process_missed_ticks(pt); + set_timer(&pt->timer, pt->scheduled); + } } pt_thaw_time(v); @@ -205,15 +208,7 @@ static void pt_timer_fn(void *data) pt->pending_intr_nr++; pt->do_not_freeze = 0; - if ( !pt->one_shot ) - { - pt->scheduled += pt->period; - pt_process_missed_ticks(pt); - set_timer(&pt->timer, pt->scheduled); - } - - if ( !pt_irq_masked(pt) ) - vcpu_kick(pt->vcpu); + vcpu_kick(pt->vcpu); pt_unlock(pt); } @@ -302,6 +297,9 @@ void pt_intr_post(struct vcpu *v, struct } else { + pt->scheduled += pt->period; + pt_process_missed_ticks(pt); + if ( mode_is(v->domain, one_missed_tick_pending) || mode_is(v->domain, no_missed_ticks_pending) ) { @@ -313,6 +311,9 @@ void pt_intr_post(struct vcpu *v, struct pt->last_plt_gtime += pt->period; pt->pending_intr_nr--; } + + if ( pt->pending_intr_nr == 0 ) + set_timer(&pt->timer, pt->scheduled); } if ( mode_is(v->domain, delay_for_missed_ticks) && _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |