From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Sharma Subject: [PATCH] vmx-pit-reset2.patch Date: Fri, 17 Jun 2005 13:32:34 -0700 Message-ID: <20050617203234.GA24241@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Ian Pratt , Keir Fraser Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org A VMX guest can reprogram the same PIT channel twice. We should not create two ac_timers to handle this case. Signed-off-by: Edwin Zhai Signed-off-by: Arun Sharma --- trunk/xen/arch/x86/vmx_intercept.c (revision 1187) +++ trunk/xen/arch/x86/vmx_intercept.c (working copy) @@ -214,6 +214,14 @@ void vmx_hooks_assist(struct exec_domain /* load init count*/ if (p->state == STATE_IORESP_HOOK) { + /* set up actimer, handle re-init */ + if ( active_ac_timer(&(vpit->pit_timer)) ) { + VMX_DBG_LOG(DBG_LEVEL_1, "VMX_PIT: guest reset PIT with channel %lx!\n", (unsigned long) ((p->u.data >> 24) & 0x3) ); + rem_ac_timer(&(vpit->pit_timer)); + } + else + init_ac_timer(&vpit->pit_timer, pit_timer_fn, vpit, 0); + /* init count for this channel */ vpit->init_val = (p->u.data & 0xFFFF) ; /* frequency(ms) of pit */ @@ -248,9 +256,7 @@ void vmx_hooks_assist(struct exec_domain vpit->intr_bitmap = intr; - /* set up the actimer */ - init_ac_timer(&vpit->pit_timer, pit_timer_fn, vpit, 0); - pit_timer_fn(vpit); /* timer seed */ + set_ac_timer(&vpit->pit_timer, NOW() + MILLISECS(vpit->period)); /*restore the state*/ p->state = STATE_IORESP_READY;