[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v4 3/4] xen/arm: support irq delivery to vcpu > 0
On Fri, 2014-06-06 at 18:48 +0100, Stefano Stabellini wrote: > Use vgic_get_target_vcpu to retrieve the target vcpu from do_IRQ. > Remove in-code comments about missing implementation of SGI delivery to > vcpus other than 0. You meant SPI I think? What about PPIs? > Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> > > --- > > Changes in v4: > - the mask in gic_route_irq_to_guest is a physical cpu mask, treat it as > such; > - export vgic_get_target_vcpu in a previous patch. > --- > xen/arch/arm/gic.c | 1 - > xen/arch/arm/irq.c | 3 +-- > 2 files changed, 1 insertion(+), 3 deletions(-) > > diff --git a/xen/arch/arm/gic.c b/xen/arch/arm/gic.c > index 92391b4..6f24b14 100644 > --- a/xen/arch/arm/gic.c > +++ b/xen/arch/arm/gic.c > @@ -287,7 +287,6 @@ void gic_route_irq_to_guest(struct domain *d, struct > irq_desc *desc, > gic_set_irq_properties(desc->irq, level, cpumask_of(smp_processor_id()), > GIC_PRI_IRQ); > > - /* TODO: do not assume delivery to vcpu0 */ > p = irq_to_pending(d->vcpu[0], desc->irq); > p->desc = desc; > } > diff --git a/xen/arch/arm/irq.c b/xen/arch/arm/irq.c > index a33c797..0fad647 100644 > --- a/xen/arch/arm/irq.c > +++ b/xen/arch/arm/irq.c > @@ -175,8 +175,7 @@ void do_IRQ(struct cpu_user_regs *regs, unsigned int irq, > int is_fiq) > desc->status |= IRQ_INPROGRESS; > desc->arch.eoi_cpu = smp_processor_id(); > > - /* XXX: inject irq into all guest vcpus */ > - vgic_vcpu_inject_irq(d->vcpu[0], irq); > + vgic_vcpu_inject_irq(vgic_get_target_vcpu(d->vcpu[0], irq), irq); Would it make sense to push vgic_get_target_vcpu down into vgic_vcpu_inject_irq rather than have all callers need to do it? I'm also wondering if vgic_get_target_vcpu shouldn't take d and not v. Does this do the right thing for PPIs? vgic_get_target_vcpu will just lookup vcpu0's target, not the actual expected target, won't it? (something else must deal with this, or it'd be broken already I suppose) Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |