aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/hvm/vpt.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2007-12-12 11:08:21 +0000
committerKeir Fraser <keir.fraser@citrix.com>2007-12-12 11:08:21 +0000
commit73f67c0d9a0a3dff0fe27e977706492316126a1e (patch)
treee8b4b68fc318471f7721edd62de4b8ecf0b61f4c /xen/arch/x86/hvm/vpt.c
parentba25075759a192b3ec87ece653801af25f2ebee1 (diff)
downloadxen-73f67c0d9a0a3dff0fe27e977706492316126a1e.tar.gz
xen-73f67c0d9a0a3dff0fe27e977706492316126a1e.tar.bz2
xen-73f67c0d9a0a3dff0fe27e977706492316126a1e.zip
hvm: Fix destroy_periodic_time() to not race destruction of one-shot timers.
This bug was tracked down by Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/arch/x86/hvm/vpt.c')
-rw-r--r--xen/arch/x86/hvm/vpt.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/xen/arch/x86/hvm/vpt.c b/xen/arch/x86/hvm/vpt.c
index 0a780298b8..d4bc8690c8 100644
--- a/xen/arch/x86/hvm/vpt.c
+++ b/xen/arch/x86/hvm/vpt.c
@@ -225,8 +225,9 @@ void pt_intr_post(struct vcpu *v, struct hvm_intack intack)
if ( pt->one_shot )
{
- pt->enabled = 0;
- list_del(&pt->list);
+ if ( pt->on_list )
+ list_del(&pt->list);
+ pt->on_list = 0;
}
else
{
@@ -294,7 +295,6 @@ void create_periodic_time(
spin_lock(&v->arch.hvm_vcpu.tm_lock);
- pt->enabled = 1;
pt->pending_intr_nr = 0;
pt->do_not_freeze = 0;
@@ -324,6 +324,7 @@ void create_periodic_time(
pt->cb = cb;
pt->priv = data;
+ pt->on_list = 1;
list_add(&pt->list, &v->arch.hvm_vcpu.tm_list);
init_timer(&pt->timer, pt_timer_fn, pt, v->processor);
@@ -334,12 +335,14 @@ void create_periodic_time(
void destroy_periodic_time(struct periodic_time *pt)
{
- if ( !pt->enabled )
+ /* Was this structure previously initialised by create_periodic_time()? */
+ if ( pt->vcpu == NULL )
return;
pt_lock(pt);
- pt->enabled = 0;
- list_del(&pt->list);
+ if ( pt->on_list )
+ list_del(&pt->list);
+ pt->on_list = 0;
pt_unlock(pt);
/*