Re: [Qemu-devel] [PATCH 0/2] add support for KVM_CAP_SPLIT_IRQCHIP

2015-12-07 Thread Matt Gingell
Will do. Thanks, Matt > On Dec 5, 2015, at 2:00 AM, Jan Kiszka wrote: > > On 2015-11-14 00:25, Matt Gingell wrote: >> Hi, >> >> The following patches adds support for the new KVM split irqchip >> interface discussed on the KVM mailing list. >> >>

Re: [Qemu-devel] [PATCH v2 1/2] add support for KVM_CAP_SPLIT_IRQCHIP

2015-11-16 Thread Matt Gingell
This patch adds the initial plumbing for split IRQ chip mode via KVM_CAP_SPLIT_IRQCHIP. In addition to option processing, a number of kvm_*_in_kernel macros are defined to help clarify which component is where. Signed-off-by: Matt Gingell --- hw/core/machine.c| 49

Re: [Qemu-devel] [PATCH 1/2] add support for KVM_CAP_SPLIT_IRQCHIP

2015-11-16 Thread Matt Gingell
Hi Eric, Thanks for your comments. I’m submitting a v2 based on your feedback. Matt > On Nov 13, 2015, at 4:11 PM, Eric Blake wrote: > > On 11/13/2015 04:25 PM, Matt Gingell wrote: > > [meta-comment:] This patch was sent without an In-Reply-To header tying > it back to th

[Qemu-devel] [PATCH 1/2] add support for KVM_CAP_SPLIT_IRQCHIP

2015-11-13 Thread Matt Gingell
This patch adds the initial plumbing for split IRQ chip mode via KVM_CAP_SPLIT_IRQCHIP. In addition to option processing, a number of kvm_*_in_kernel macros are defined to help clarify which component is where. Signed-off-by: Matt Gingell --- hw/core/machine.c| 48

[Qemu-devel] [PATCH 2/2] add support for KVM_CAP_SPLIT_IRQCHIP

2015-11-13 Thread Matt Gingell
ioapic_eoi_broadcast. Signed-off-by: Matt Gingell --- hw/i386/pc.c | 7 -- hw/i386/pc_piix.c| 4 ++-- hw/intc/ioapic.c | 63 ++-- include/sysemu/kvm.h | 5 - kvm-all.c| 10 +++-- stubs/kvm.c | 2

[Qemu-devel] [PATCH 0/2] add support for KVM_CAP_SPLIT_IRQCHIP

2015-11-13 Thread Matt Gingell
appreciated. Thanks, Matt Gingell

Re: [Qemu-devel] [RFC v2] Add support for KVM_CAP_SPLIT_IRQCHIP

2015-11-05 Thread Matt Gingell
Hi Paolo, Thanks for your comments. I'll address your comments and submit two separate patches. > On Nov 4, 2015, at 1:23 PM, Paolo Bonzini wrote: > > More importantly, I would like to understand what is the kernel issue > that you are getting. It should be resolved before 4.4 goes out in two

[Qemu-devel] [RFC v2] Add support for KVM_CAP_SPLIT_IRQCHIP

2015-11-02 Thread Matt Gingell
Hi Jan, Would you be able to look this over? I’d like to get this into shape to commit, either now or once the corresponding kernel patch goes in. Thanks, Matt Add support for KVM_CAP_SPLIT_IRQCHIP Adds a new alternative 'split' to the -machine kernel-irqchip option. When split mode is specif

Re: [Qemu-devel] RFC: Add support for KVM_CAP_SPLIT_IRQCHIP

2015-10-30 Thread Matt Gingell
Hi Eric, Thanks for your feedback, I’ve made the updates you suggested. > Your diff doesn't include the usual '---' separator and diffstat > provided by 'git send-email'; making it a bit harder to see at a glance > what your patch touches. OK, understood. I’ll will use git send-email going forwa

[Qemu-devel] RFC: Add support for KVM_CAP_SPLIT_IRQCHIP

2015-10-29 Thread Matt Gingell
iece ready to submit, I'd appreciate any feedback or discussion on the user space portion. Thanks, Matt Gingell diff --git a/hw/core/machine.c b/hw/core/machine.c index f4db340..3c14e78 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -11,6 +11,7 @@ */ #include "hw/board