[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] pass-through: adjust pIRQ migration
For one it is quite pointless to iterate over all pIRQ-s the domain has when just one is being adjusted. Introduce hvm_migrate_pirq(). Additionally it is bogus to migrate the pIRQ to a vCPU different from the one the event is supposed to be posted to - if anything, it might be worth considering not to migrate the pIRQ at all in the posting case. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -462,10 +462,9 @@ void hvm_migrate_timers(struct vcpu *v) pt_migrate(v); } -static int hvm_migrate_pirq(struct domain *d, struct hvm_pirq_dpci *pirq_dpci, - void *arg) +void hvm_migrate_pirq(struct hvm_pirq_dpci *pirq_dpci, const struct vcpu *v) { - struct vcpu *v = arg; + ASSERT(iommu_enabled && hvm_domain_irq(v->domain)->dpci); if ( (pirq_dpci->flags & HVM_IRQ_DPCI_MACH_MSI) && /* Needn't migrate pirq if this pirq is delivered to guest directly.*/ @@ -476,11 +475,17 @@ static int hvm_migrate_pirq(struct domai pirq_spin_lock_irq_desc(dpci_pirq(pirq_dpci), NULL); if ( !desc ) - return 0; + return; ASSERT(MSI_IRQ(desc - irq_desc)); irq_set_affinity(desc, cpumask_of(v->processor)); spin_unlock_irq(&desc->lock); } +} + +static int migrate_pirq(struct domain *d, struct hvm_pirq_dpci *pirq_dpci, + void *arg) +{ + hvm_migrate_pirq(pirq_dpci, arg); return 0; } @@ -493,7 +498,7 @@ void hvm_migrate_pirqs(struct vcpu *v) return; spin_lock(&d->event_lock); - pt_pirq_iterate(d, hvm_migrate_pirq, v); + pt_pirq_iterate(d, migrate_pirq, v); spin_unlock(&d->event_lock); } --- a/xen/drivers/passthrough/io.c +++ b/xen/drivers/passthrough/io.c @@ -434,8 +434,8 @@ int pt_irq_create_bind( if ( vcpu ) pirq_dpci->gmsi.posted = true; } - if ( dest_vcpu_id >= 0 ) - hvm_migrate_pirqs(d->vcpu[dest_vcpu_id]); + if ( vcpu && iommu_enabled ) + hvm_migrate_pirq(pirq_dpci, vcpu); /* Use interrupt posting if it is supported. */ if ( iommu_intpost ) --- a/xen/include/asm-x86/hvm/hvm.h +++ b/xen/include/asm-x86/hvm/hvm.h @@ -288,6 +288,7 @@ bool hvm_set_guest_bndcfgs(struct vcpu * bool hvm_check_cpuid_faulting(struct vcpu *v); void hvm_migrate_timers(struct vcpu *v); void hvm_do_resume(struct vcpu *v); +void hvm_migrate_pirq(struct hvm_pirq_dpci *pirq_dpci, const struct vcpu *v); void hvm_migrate_pirqs(struct vcpu *v); void hvm_inject_event(const struct x86_event *event); _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |