Re: [Qemu-devel] [PATCH v4 4/5] Initial implementation of vGICv3

2015-07-15 Thread Pavel Fedin
Hello! > Here GICV3_INTERNAL is used, but kvm_arch_gicv3_set_irq relies on > kvm_arm_gic_set_irq which is using GIC_INTERNAL, so the GICv3 related > code is using both defines. The change relies on these definitions being equal. Ok, i agree this is a kind of hack and will redo this in v5. > A

Re: [Qemu-devel] [PATCH v4 4/5] Initial implementation of vGICv3

2015-07-15 Thread Diana Craciun
Hi, On 07/14/2015 10:54 AM, Pavel Fedin wrote: Get/put routines are missing, live migration is not possible. Signed-off-by: Pavel Fedin --- hw/intc/Makefile.objs | 3 + hw/intc/arm_gicv3_kvm.c | 192 2 files changed, 195 insertions(+)

[Qemu-devel] [PATCH v4 4/5] Initial implementation of vGICv3

2015-07-14 Thread Pavel Fedin
Get/put routines are missing, live migration is not possible. Signed-off-by: Pavel Fedin --- hw/intc/Makefile.objs | 3 + hw/intc/arm_gicv3_kvm.c | 192 2 files changed, 195 insertions(+) create mode 100644 hw/intc/arm_gicv3_kvm.c diff --git