| 
         
xen-devel
Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use	irq_alloc_desc(_at) ins
 
| 
To:  | 
Jeremy Fitzhardinge <jeremy@xxxxxxxx> | 
 
| 
Subject:  | 
Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use	irq_alloc_desc(_at) instead of open-coding an IRQ allocator. | 
 
| 
From:  | 
Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> | 
 
| 
Date:  | 
Tue, 26 Oct 2010 13:08:41 -0400 | 
 
| 
Cc:  | 
xen-devel@xxxxxxxxxxxxxxxxxxx, Ian Campbell <ian.campbell@xxxxxxxxxx>,	Stefano Stabellini <Stefano.Stabellini@xxxxxxxxxxxxx>,	linux-kernel@xxxxxxxxxxxxxxx, "H. Peter Anvin" <hpa@xxxxxxxxx>,	mingo@xxxxxxx, tglx@xxxxxxxxxxxxx | 
 
| 
Delivery-date:  | 
Tue, 26 Oct 2010 10:10:44 -0700 | 
 
| 
Envelope-to:  | 
www-data@xxxxxxxxxxxxxxxxxxx | 
 
| 
In-reply-to:  | 
<4CC70583.2050503@xxxxxxxx> | 
 
| 
List-help:  | 
<mailto:xen-devel-request@lists.xensource.com?subject=help> | 
 
| 
List-id:  | 
Xen developer discussion <xen-devel.lists.xensource.com> | 
 
| 
List-post:  | 
<mailto:xen-devel@lists.xensource.com> | 
 
| 
List-subscribe:  | 
<http://lists.xensource.com/mailman/listinfo/xen-devel>,	<mailto:xen-devel-request@lists.xensource.com?subject=subscribe> | 
 
| 
List-unsubscribe:  | 
<http://lists.xensource.com/mailman/listinfo/xen-devel>,	<mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe> | 
 
| 
References:  | 
<1288023736.11153.40.camel@xxxxxxxxxxxxxxxxxxxxxx>	<1288023813-31989-1-git-send-email-ian.campbell@xxxxxxxxxx>	<20101025173522.GA5590@xxxxxxxxxxxx> <4CC60CB7.3070005@xxxxxxxx>	<20101026141739.GA9557@xxxxxxxxxxxx> <4CC70583.2050503@xxxxxxxx> | 
 
| 
Sender:  | 
xen-devel-bounces@xxxxxxxxxxxxxxxxxxx | 
 
| 
User-agent:  | 
Mutt/1.5.20 (2009-06-14) | 
 
 
 
> In that case we should use dynamic allocation for everything.  Or try to
> work out distinct irq ranges for different interrupts if you really want
> to keep irq==gsi.
Some little alarm bells are ringing in the back of my head about irq != gsi.
I think the issue was the permission. When a PCI device is allocated to the
PV guest, we do a bunch of xc_* calls to allow the domain to use the BARs
and the IRQ. I believe when the guest boots and tries to map the
event channel with the physical IRQ, one of the arguments is that GSI. And
if we provide a bogus GSI, well, we won't get the INTx to the guest.
As you mentioned, Stefano's patch add a new element to the tuple that can
contain the GSI value. At which point we can make the guest IRQ != GSI,
as long as we can contain the <gsi, event channel> mapping present so
that for the hypercalls we can give it the right GSI.
The MSI/MSI-X use a completly different mechanism that does not all
of this complication, so we are OK with that.
.. snip ..
> d) dynamically allocate all irqs for all event channel types.
<nods> Ok, you sold me on this idea.
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
 
 |   
 
| <Prev in Thread] | 
Current Thread | 
[Next in Thread>
 |  
- [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at) instead of open-coding an IRQ allocator., (continued)
 
- [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at) instead of open-coding an IRQ allocator., Jeremy Fitzhardinge
 - [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at) instead of open-coding an IRQ allocator., H. Peter Anvin
 - [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at) instead of open-coding an IRQ allocator., Jeremy Fitzhardinge
 
- Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use	irq_alloc_desc(_at) instead of open-coding an IRQ allocator., Konrad Rzeszutek Wilk
 - Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at)	instead of open-coding an IRQ allocator., Jeremy Fitzhardinge
 - Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use	irq_alloc_desc(_at) instead of open-coding an IRQ allocator.,
Konrad Rzeszutek Wilk <=
 - Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at)	instead of open-coding an IRQ allocator., Stefano Stabellini
 - Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at)	instead of open-coding an IRQ allocator., Sander Eikelenboom
 - Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at)	instead of open-coding an IRQ allocator., Stefano Stabellini
 - Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use	irq_alloc_desc(_at) instead of open-coding an IRQ allocator., Konrad Rzeszutek Wilk
 - Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at)	instead of open-coding an IRQ allocator., Jeremy Fitzhardinge
 
- Re: [Xen-devel] Re: [PATCH 1/5] xen: events: use irq_alloc_desc(_at)	instead of open-coding an IRQ allocator., Jeremy Fitzhardinge
 
- [Xen-devel] [PATCH 2/5] xen: events: turn irq_info constructors	into initialiser functions, Ian Campbell
 
- [Xen-devel] [PATCH 3/5] xen: events: push setup of irq<->{evtchn,	pirq} maps into irq_info init functions, Ian Campbell
 - [Xen-devel] Re: [PATCH 3/5] xen: events: push setup of irq<->{evtchn, pirq} maps into irq_info init functions, Konrad Rzeszutek Wilk
 
- [Xen-devel] [PATCH 4/5] xen: events: dynamically allocate irq info	structures, Ian Campbell
 
 
 |  
  
 | 
    |