Re: [Qemu-devel] [PATCH] kvm/openpic: add kvm_irqchip_commit_routes

2013-06-12 Thread Alexander Graf

On 12.06.2013, at 23:21, Scott Wood wrote:

 The patch that added kvm_irqchip_commit_routes was originally
 meant to come after the in-kernel mpic patch, and thus it updated
 hw/intc/openpic_kvm.c.  However, it was applied before the in-kernel
 mpic patch (which creates hw/intc/openpic_kvm.c), and thus this hunk
 got lost.
 
 Signed-off-by: Scott Wood scottw...@freescale.com

I'll squash this in with your previous commit if you're ok with that.


Alex

 ---
 hw/intc/openpic_kvm.c |2 ++
 1 file changed, 2 insertions(+)
 
 diff --git a/hw/intc/openpic_kvm.c b/hw/intc/openpic_kvm.c
 index 809b34b..17d0a35 100644
 --- a/hw/intc/openpic_kvm.c
 +++ b/hw/intc/openpic_kvm.c
 @@ -204,6 +204,8 @@ static int kvm_openpic_init(SysBusDevice *dev)
 kvm_msi_via_irqfd_allowed = true;
 kvm_gsi_routing_allowed = true;
 
 +kvm_irqchip_commit_routes(s);
 +
 return 0;
 }
 
 -- 
 1.7.10.4
 
 




Re: [Qemu-devel] [PATCH] kvm/openpic: add kvm_irqchip_commit_routes

2013-06-12 Thread Scott Wood

On 06/12/2013 04:23:09 PM, Alexander Graf wrote:


On 12.06.2013, at 23:21, Scott Wood wrote:

 The patch that added kvm_irqchip_commit_routes was originally
 meant to come after the in-kernel mpic patch, and thus it updated
 hw/intc/openpic_kvm.c.  However, it was applied before the in-kernel
 mpic patch (which creates hw/intc/openpic_kvm.c), and thus this hunk
 got lost.

 Signed-off-by: Scott Wood scottw...@freescale.com

I'll squash this in with your previous commit if you're ok with that.


That's fine.

-Scott



Re: [Qemu-devel] [PATCH] kvm/openpic: add kvm_irqchip_commit_routes

2013-06-12 Thread Alexander Graf

On 12.06.2013, at 23:25, Scott Wood wrote:

 On 06/12/2013 04:23:09 PM, Alexander Graf wrote:
 On 12.06.2013, at 23:21, Scott Wood wrote:
  The patch that added kvm_irqchip_commit_routes was originally
  meant to come after the in-kernel mpic patch, and thus it updated
  hw/intc/openpic_kvm.c.  However, it was applied before the in-kernel
  mpic patch (which creates hw/intc/openpic_kvm.c), and thus this hunk
  got lost.
 
  Signed-off-by: Scott Wood scottw...@freescale.com
 I'll squash this in with your previous commit if you're ok with that.
 
 That's fine.

Ok, done.


Alex