From: Jan Kiszka <jan.kiszka@web.de>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
kvm@vger.kernel.org, "Michael S. Tsirkin" <mst@redhat.com>,
qemu-devel <qemu-devel@nongnu.org>,
Blue Swirl <blauwirbel@gmail.com>, Avi Kivity <avi@redhat.com>
Subject: Re: [PATCH v8 18/18] kvm: Activate in-kernel irqchip support
Date: Thu, 19 Jan 2012 19:54:24 +0100 [thread overview]
Message-ID: <4F1866E0.7010900@web.de> (raw)
In-Reply-To: <20120119180851.GA19099@amt.cnet>
[-- Attachment #1: Type: text/plain, Size: 1304 bytes --]
On 2012-01-19 19:08, Marcelo Tosatti wrote:
> On Thu, Jan 19, 2012 at 12:25:10PM +0100, Jan Kiszka wrote:
>> Make the basic in-kernel irqchip support selectable via
>> -machine ...,kernel_irqchip=on. Leave it off by default until it can
>> fully replace user space models.
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>> qemu-config.c | 4 ++++
>> qemu-options.hx | 5 ++++-
>> 2 files changed, 8 insertions(+), 1 deletions(-)
>>
>> diff --git a/qemu-config.c b/qemu-config.c
>> index ecc88e8..b030205 100644
>> --- a/qemu-config.c
>> +++ b/qemu-config.c
>> @@ -531,6 +531,10 @@ static QemuOptsList qemu_machine_opts = {
>> .name = "accel",
>> .type = QEMU_OPT_STRING,
>> .help = "accelerator list",
>> + }, {
>> + .name = "kernel_irqchip",
>> + .type = QEMU_OPT_BOOL,
>> + .help = "use KVM in-kernel irqchip",
>> },
>> { /* End of list */ }
>> },
>
>
> Pulled (and pushed),
Thanks. Will refresh my back-merge patch for qemu-kvm now.
> but you forgot to actually hook this option to kvm_irqchip_in_kernel?
>
Nope, see kvm_irqchip_create, patch 13. You can also check by browsing
the qtree (different device model names).
Jan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 262 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Jan Kiszka <jan.kiszka@web.de>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
kvm@vger.kernel.org, "Michael S. Tsirkin" <mst@redhat.com>,
qemu-devel <qemu-devel@nongnu.org>,
Blue Swirl <blauwirbel@gmail.com>, Avi Kivity <avi@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v8 18/18] kvm: Activate in-kernel irqchip support
Date: Thu, 19 Jan 2012 19:54:24 +0100 [thread overview]
Message-ID: <4F1866E0.7010900@web.de> (raw)
In-Reply-To: <20120119180851.GA19099@amt.cnet>
[-- Attachment #1: Type: text/plain, Size: 1304 bytes --]
On 2012-01-19 19:08, Marcelo Tosatti wrote:
> On Thu, Jan 19, 2012 at 12:25:10PM +0100, Jan Kiszka wrote:
>> Make the basic in-kernel irqchip support selectable via
>> -machine ...,kernel_irqchip=on. Leave it off by default until it can
>> fully replace user space models.
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>> qemu-config.c | 4 ++++
>> qemu-options.hx | 5 ++++-
>> 2 files changed, 8 insertions(+), 1 deletions(-)
>>
>> diff --git a/qemu-config.c b/qemu-config.c
>> index ecc88e8..b030205 100644
>> --- a/qemu-config.c
>> +++ b/qemu-config.c
>> @@ -531,6 +531,10 @@ static QemuOptsList qemu_machine_opts = {
>> .name = "accel",
>> .type = QEMU_OPT_STRING,
>> .help = "accelerator list",
>> + }, {
>> + .name = "kernel_irqchip",
>> + .type = QEMU_OPT_BOOL,
>> + .help = "use KVM in-kernel irqchip",
>> },
>> { /* End of list */ }
>> },
>
>
> Pulled (and pushed),
Thanks. Will refresh my back-merge patch for qemu-kvm now.
> but you forgot to actually hook this option to kvm_irqchip_in_kernel?
>
Nope, see kvm_irqchip_create, patch 13. You can also check by browsing
the qtree (different device model names).
Jan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 262 bytes --]
next prev parent reply other threads:[~2012-01-19 18:54 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-19 11:24 [PATCH v8 00/18] uq/master: Introduce basic irqchip support Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:24 ` [PATCH v8 01/18] msi: Generalize msix_supported to msi_supported Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:24 ` [PATCH v8 02/18] kvm: Move kvmclock into hw/kvm folder Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:24 ` [PATCH v8 03/18] apic: Stop timer on reset Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:24 ` [PATCH v8 04/18] apic: Inject external NMI events via LINT1 Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:24 ` [PATCH v8 05/18] apic: Introduce apic_report_irq_delivered Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:24 ` [PATCH v8 06/18] apic: Factor out base class for KVM reuse Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:24 ` [PATCH v8 07/18] apic: Open-code timer save/restore Jan Kiszka
2012-01-19 11:24 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 08/18] i8259: Completely privatize PicState Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 09/18] i8259: Factor out base class for KVM reuse Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 10/18] ioapic: Drop post-load irr initialization Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 11/18] ioapic: Factor out base class for KVM reuse Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 12/18] memory: Introduce memory_region_init_reservation Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 13/18] kvm: Introduce core services for in-kernel irqchip support Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 14/18] kvm: x86: Establish IRQ0 override control Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 15/18] kvm: x86: Add user space part for in-kernel APIC Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 16/18] kvm: x86: Add user space part for in-kernel i8259 Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 17/18] kvm: x86: Add user space part for in-kernel IOAPIC Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 11:25 ` [PATCH v8 18/18] kvm: Activate in-kernel irqchip support Jan Kiszka
2012-01-19 11:25 ` [Qemu-devel] " Jan Kiszka
2012-01-19 18:08 ` Marcelo Tosatti
2012-01-19 18:08 ` [Qemu-devel] " Marcelo Tosatti
2012-01-19 18:54 ` Jan Kiszka [this message]
2012-01-19 18:54 ` Jan Kiszka
2012-01-24 14:05 ` Avi Kivity
2012-01-24 14:05 ` [Qemu-devel] " Avi Kivity
2012-01-24 14:10 ` Jan Kiszka
2012-01-24 14:10 ` [Qemu-devel] " Jan Kiszka
2012-01-24 14:13 ` Avi Kivity
2012-01-24 14:13 ` [Qemu-devel] " Avi Kivity
2012-01-24 15:34 ` Anthony Liguori
2012-01-24 15:34 ` [Qemu-devel] " Anthony Liguori
2012-01-24 15:33 ` Anthony Liguori
2012-01-24 15:33 ` [Qemu-devel] " Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F1866E0.7010900@web.de \
--to=jan.kiszka@web.de \
--cc=aliguori@us.ibm.com \
--cc=avi@redhat.com \
--cc=blauwirbel@gmail.com \
--cc=kvm@vger.kernel.org \
--cc=mst@redhat.com \
--cc=mtosatti@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.