Re: [Xen-devel] [PATCH v4 17/33] xen/arm: vgic: Add spi_to_pending

2015-03-31 Thread Julien Grall
Hi Ian, On 31/03/15 11:55, Ian Campbell wrote: > On Thu, 2015-03-19 at 19:29 +, Julien Grall wrote: >> Introduce spi_to_pending in order retrieve the irq_pending structure for >> a specific SPI. >> >> It's not possible to re-use irq_to_pending because it's required a VCPU > > "it requires" >

Re: [Xen-devel] [PATCH v4 17/33] xen/arm: vgic: Add spi_to_pending

2015-03-31 Thread Ian Campbell
On Thu, 2015-03-19 at 19:29 +, Julien Grall wrote: > Introduce spi_to_pending in order retrieve the irq_pending structure for > a specific SPI. > > It's not possible to re-use irq_to_pending because it's required a VCPU "it requires" > and some call of the new function may during domain dest

[Xen-devel] [PATCH v4 17/33] xen/arm: vgic: Add spi_to_pending

2015-03-19 Thread Julien Grall
Introduce spi_to_pending in order retrieve the irq_pending structure for a specific SPI. It's not possible to re-use irq_to_pending because it's required a VCPU and some call of the new function may during domain destruction after the VCPUs are freed. Signed-off-by: Julien Grall --- Changes