From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
kvm@vger.kernel.org, Alexander Graf <agraf@suse.de>,
Scott Wood <scottwood@freescale.com>,
qemu-ppc@nongnu.org, Marcel Apfelbaum <marcel@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: [Qemu-devel] [PULL 08/25] machine: query kernel-irqchip property
Date: Wed, 11 Mar 2015 20:50:58 +0100 [thread overview]
Message-ID: <20150311205058-mutt-send-email-mst@redhat.com> (raw)
In-Reply-To: <1426096767-30494-1-git-send-email-mst@redhat.com>
From: Marcel Apfelbaum <marcel@redhat.com>
Running
x86_64-softmmu/qemu-system-x86_64 -machine pc,kernel_irqchip=on -enable-kvm
leads to crash:
qemu-system-x86_64: qemu/util/qemu-option.c:387: qemu_opt_get_bool_helper:
Assertion `opt->desc && opt->desc->type == QEMU_OPT_BOOL' failed. Aborted
(core dumped)
This happens because the commit e79d5a6 ("machine: remove qemu_machine_opts
global list") removed the global option descriptions and moved them to
MachineState's QOM properties.
Fix this by querying machine properties through designated wrappers.
Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
hw/ppc/e500.c | 15 +++++----------
hw/ppc/spapr.c | 15 ++++++---------
kvm-all.c | 6 +++---
3 files changed, 14 insertions(+), 22 deletions(-)
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
index d51fb60..c10e1b5 100644
--- a/hw/ppc/e500.c
+++ b/hw/ppc/e500.c
@@ -734,8 +734,8 @@ static DeviceState *ppce500_init_mpic_kvm(PPCE500Params *params,
return dev;
}
-static qemu_irq *ppce500_init_mpic(PPCE500Params *params, MemoryRegion *ccsr,
- qemu_irq **irqs)
+static qemu_irq *ppce500_init_mpic(MachineState *machine, PPCE500Params *params,
+ MemoryRegion *ccsr, qemu_irq **irqs)
{
qemu_irq *mpic;
DeviceState *dev = NULL;
@@ -745,17 +745,12 @@ static qemu_irq *ppce500_init_mpic(PPCE500Params *params, MemoryRegion *ccsr,
mpic = g_new0(qemu_irq, 256);
if (kvm_enabled()) {
- QemuOpts *machine_opts = qemu_get_machine_opts();
- bool irqchip_allowed = qemu_opt_get_bool(machine_opts,
- "kernel_irqchip", true);
- bool irqchip_required = qemu_opt_get_bool(machine_opts,
- "kernel_irqchip", false);
Error *err = NULL;
- if (irqchip_allowed) {
+ if (machine_kernel_irqchip_allowed(machine)) {
dev = ppce500_init_mpic_kvm(params, irqs, &err);
}
- if (irqchip_required && !dev) {
+ if (machine_kernel_irqchip_required(machine) && !dev) {
error_report("kernel_irqchip requested but unavailable: %s",
error_get_pretty(err));
exit(1);
@@ -879,7 +874,7 @@ void ppce500_init(MachineState *machine, PPCE500Params *params)
memory_region_add_subregion(address_space_mem, params->ccsrbar_base,
ccsr_addr_space);
- mpic = ppce500_init_mpic(params, ccsr_addr_space, irqs);
+ mpic = ppce500_init_mpic(machine, params, ccsr_addr_space, irqs);
/* Serial */
if (serial_hds[0]) {
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 4aa979f..0487f52 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -127,22 +127,18 @@ static XICSState *try_create_xics(const char *type, int nr_servers,
return XICS_COMMON(dev);
}
-static XICSState *xics_system_init(int nr_servers, int nr_irqs)
+static XICSState *xics_system_init(MachineState *machine,
+ int nr_servers, int nr_irqs)
{
XICSState *icp = NULL;
if (kvm_enabled()) {
- QemuOpts *machine_opts = qemu_get_machine_opts();
- bool irqchip_allowed = qemu_opt_get_bool(machine_opts,
- "kernel_irqchip", true);
- bool irqchip_required = qemu_opt_get_bool(machine_opts,
- "kernel_irqchip", false);
Error *err = NULL;
- if (irqchip_allowed) {
+ if (machine_kernel_irqchip_allowed(machine)) {
icp = try_create_xics(TYPE_KVM_XICS, nr_servers, nr_irqs, &err);
}
- if (irqchip_required && !icp) {
+ if (machine_kernel_irqchip_required(machine) && !icp) {
error_report("kernel_irqchip requested but unavailable: %s",
error_get_pretty(err));
}
@@ -1455,7 +1451,8 @@ static void ppc_spapr_init(MachineState *machine)
}
/* Set up Interrupt Controller before we create the VCPUs */
- spapr->icp = xics_system_init(smp_cpus * kvmppc_smt_threads() / smp_threads,
+ spapr->icp = xics_system_init(machine,
+ smp_cpus * kvmppc_smt_threads() / smp_threads,
XICS_IRQS);
/* init CPUs */
diff --git a/kvm-all.c b/kvm-all.c
index 07ef62c..729f334 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -1360,11 +1360,11 @@ int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
false);
}
-static int kvm_irqchip_create(KVMState *s)
+static int kvm_irqchip_create(MachineState *machine, KVMState *s)
{
int ret;
- if (!qemu_opt_get_bool(qemu_get_machine_opts(), "kernel_irqchip", true) ||
+ if (!machine_kernel_irqchip_allowed(machine) ||
(!kvm_check_extension(s, KVM_CAP_IRQCHIP) &&
(kvm_vm_enable_cap(s, KVM_CAP_S390_IRQCHIP, 0) < 0))) {
return 0;
@@ -1603,7 +1603,7 @@ static int kvm_init(MachineState *ms)
goto err;
}
- ret = kvm_irqchip_create(s);
+ ret = kvm_irqchip_create(ms, s);
if (ret < 0) {
goto err;
}
--
MST
next prev parent reply other threads:[~2015-03-11 19:51 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1426096767-30494-1-git-send-email-mst@redhat.com>
2015-03-11 19:50 ` [Qemu-devel] [PULL 01/25] aml-build: don't modify child Michael S. Tsirkin
2015-03-11 19:50 ` [Qemu-devel] [PULL 02/25] aml-build: append opcodes using build_append_byte Michael S. Tsirkin
2015-03-11 19:50 ` [Qemu-devel] [PULL 03/25] acpi: fix aml_equal term implementation Michael S. Tsirkin
2015-03-11 19:50 ` [Qemu-devel] [PULL 04/25] acpi-test: update expected files Michael S. Tsirkin
2015-03-11 19:50 ` [Qemu-devel] [PULL 05/25] pci/shpc: fix signed integer overflow Michael S. Tsirkin
2015-03-11 19:50 ` [Qemu-devel] [PULL 06/25] machine: replace qemu opts with iommu property Michael S. Tsirkin
2015-03-11 19:50 ` [Qemu-devel] [PULL 07/25] machine: allowed/required kernel-irqchip support Michael S. Tsirkin
2015-03-11 19:50 ` Michael S. Tsirkin [this message]
2015-03-11 19:51 ` [Qemu-devel] [PULL 09/25] kvm: add machine state to kvm_arch_init Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 10/25] machine: query kvm-shadow-mem machine property Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 11/25] machine: query phandle-start " Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 12/25] hw/boards: make it safe to include for linux-user Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 13/25] machine: query dump-guest-core machine property Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 14/25] machine: query mem-merge " Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 15/25] pci: Convert pci_nic_init() to Error to avoid qdev_init() Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 16/25] virtio-pci: Convert to realize() Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 17/25] tpm: Move memory subregion function into realize function Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 18/25] MAINTAINERS: drop aliguori@amazon.com Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 19/25] acpi: specify format for build_append_namestring Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 20/25] exec: don't include hw/boards for linux-user Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 21/25] virtio-scsi: drop duplicate CDB/SENSE SIZE Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 22/25] uapi/virtio_scsi: allow overriding CDB/SENSE size Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 23/25] virtio-scsi: fix cdb/sense size Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 24/25] virtio-scsi: clean out duplicate cdb field Michael S. Tsirkin
2015-03-11 19:51 ` [Qemu-devel] [PULL 25/25] virtio-scsi: remove empty wrapper for cmd Michael S. Tsirkin
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=20150311205058-mutt-send-email-mst@redhat.com \
--to=mst@redhat.com \
--cc=agraf@suse.de \
--cc=kvm@vger.kernel.org \
--cc=marcel@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=scottwood@freescale.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).