Re: [Qemu-devel] [PATCH] irq: introduce qemu_irq_proxy()

2011-09-23 Thread Anthony Liguori
On 09/18/2011 07:58 AM, Avi Kivity wrote: In some cases we have a circular dependency involving irqs - the irq controller depends on a bus, which in turn depends on the irq controller. Add qemu_irq_proxy() which acts as a passthrough, except that the target irq may be set later on. Signed-off-by

Re: [Qemu-devel] [PATCH] irq: introduce qemu_irq_proxy()

2011-09-18 Thread Richard Henderson
On 09/18/2011 05:58 AM, Avi Kivity wrote: > In some cases we have a circular dependency involving irqs - the irq > controller depends on a bus, which in turn depends on the irq controller. > Add qemu_irq_proxy() which acts as a passthrough, except that the target > irq may be set later on. > > Sig

Re: [Qemu-devel] [PATCH] irq: introduce qemu_irq_proxy()

2011-09-18 Thread Avi Kivity
On 09/18/2011 03:58 PM, Avi Kivity wrote: In some cases we have a circular dependency involving irqs - the irq controller depends on a bus, which in turn depends on the irq controller. Add qemu_irq_proxy() which acts as a passthrough, except that the target irq may be set later on. Signed-off-by

[Qemu-devel] [PATCH] irq: introduce qemu_irq_proxy()

2011-09-18 Thread Avi Kivity
In some cases we have a circular dependency involving irqs - the irq controller depends on a bus, which in turn depends on the irq controller. Add qemu_irq_proxy() which acts as a passthrough, except that the target irq may be set later on. Signed-off-by: Avi Kivity --- Turns out the circular de