@@ -245,13 +245,16 @@ static int inject_event(struct domain *d,
if ( data->vcpuid >= d->max_vcpus || !(v = d->vcpu[data->vcpuid]) )
return -EINVAL;
- if ( v->arch.hvm_vcpu.inject_event.vector != -1 )
+ if ( cmpxchg(&v->arch.hvm_vcpu.inject_event.vector,
+ HVM_EVENT_VECTOR_UNSET, HVM_EVENT_VECTOR_UPDATING) !=
+ HVM_EVENT_VECTOR_UNSET )
return -EBUSY;
v->arch.hvm_vcpu.inject_event.type = data->type;
v->arch.hvm_vcpu.inject_event.insn_len = data->insn_len;
v->arch.hvm_vcpu.inject_event.error_code = data->error_code;
v->arch.hvm_vcpu.inject_event.cr2 = data->cr2;
+ smp_wmb();
v->arch.hvm_vcpu.inject_event.vector = data->vector;
return 0;
@@ -538,13 +538,15 @@ void hvm_do_resume(struct vcpu *v)
}
}
- /* Inject pending hw/sw trap */
- if ( v->arch.hvm_vcpu.inject_event.vector != -1 )
+ /* Inject pending hw/sw event */
+ if ( v->arch.hvm_vcpu.inject_event.vector >= 0 )
{
+ smp_rmb();
+
if ( !hvm_event_pending(v) )
hvm_inject_event(&v->arch.hvm_vcpu.inject_event);
- v->arch.hvm_vcpu.inject_event.vector = -1;
+ v->arch.hvm_vcpu.inject_event.vector = HVM_EVENT_VECTOR_UNSET;
}
if ( unlikely(v->arch.vm_event) && v->arch.monitor.next_interrupt_enabled )
@@ -1515,7 +1517,7 @@ int hvm_vcpu_initialise(struct vcpu *v)
(void(*)(unsigned long))hvm_assert_evtchn_irq,
(unsigned long)v);
- v->arch.hvm_vcpu.inject_event.vector = -1;
+ v->arch.hvm_vcpu.inject_event.vector = HVM_EVENT_VECTOR_UNSET;
if ( is_pvh_domain(d) )
{
@@ -77,6 +77,9 @@ enum hvm_intblk {
#define HVM_HAP_SUPERPAGE_2MB 0x00000001
#define HVM_HAP_SUPERPAGE_1GB 0x00000002
+#define HVM_EVENT_VECTOR_UNSET (-1)
+#define HVM_EVENT_VECTOR_UPDATING (-2)
+
/*
* The hardware virtual machine (HVM) interface abstracts away from the
* x86/x86_64 CPU virtualization assist specifics. Currently this interface