Blame SOURCES/kvm-Simplify-machine-option-queries-with-qemu_get_machin.patch

218e99
From cfb7a42b4241cf1a8dea0f33947c66671923f694 Mon Sep 17 00:00:00 2001
218e99
From: Markus Armbruster <armbru@redhat.com>
218e99
Date: Tue, 6 Aug 2013 13:17:05 +0200
218e99
Subject: [PATCH 12/28] Simplify -machine option queries with qemu_get_machine_opts()
218e99
218e99
RH-Author: Markus Armbruster <armbru@redhat.com>
218e99
Message-id: <1375795025-28674-7-git-send-email-armbru@redhat.com>
218e99
Patchwork-id: 52996
218e99
O-Subject: [PATCH 7.0 qemu-kvm 6/6] Simplify -machine option queries with qemu_get_machine_opts()
218e99
Bugzilla: 980782
218e99
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
218e99
RH-Acked-by: Michal Novotny <minovotn@redhat.com>
218e99
RH-Acked-by: Orit Wasserman <owasserm@redhat.com>
218e99
218e99
The previous two commits fixed bugs in -machine option queries.  I
218e99
can't find fault with the remaining queries, but let's use
218e99
qemu_get_machine_opts() everywhere, for consistency, simplicity and
218e99
robustness.
218e99
218e99
Signed-off-by: Markus Armbruster <armbru@redhat.com>
218e99
Message-id: 1372943363-24081-7-git-send-email-armbru@redhat.com
218e99
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
218e99
(cherry picked from commit 2ff3de685a875ece3ee21256736c0a9dbf39dc4c)
218e99
---
218e99
 device_tree.c  | 28 ++++++++++------------------
218e99
 exec.c         | 12 ++++--------
218e99
 hw/arm/boot.c  |  8 +-------
218e99
 hw/ppc/e500.c  | 12 +++---------
218e99
 hw/ppc/spapr.c | 28 ++++++++++------------------
218e99
 vl.c           | 22 ++++++----------------
218e99
 6 files changed, 34 insertions(+), 76 deletions(-)
218e99
218e99
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
218e99
---
218e99
 device_tree.c  |   28 ++++++++++------------------
218e99
 exec.c         |   12 ++++--------
218e99
 hw/arm/boot.c  |    8 +-------
218e99
 hw/ppc/e500.c  |   12 +++---------
218e99
 hw/ppc/spapr.c |   28 ++++++++++------------------
218e99
 vl.c           |   22 ++++++----------------
218e99
 6 files changed, 34 insertions(+), 76 deletions(-)
218e99
218e99
diff --git a/device_tree.c b/device_tree.c
218e99
index 56af24b..77cbe04 100644
218e99
--- a/device_tree.c
218e99
+++ b/device_tree.c
218e99
@@ -21,6 +21,7 @@
218e99
 #include "config.h"
218e99
 #include "qemu-common.h"
218e99
 #include "sysemu/device_tree.h"
218e99
+#include "sysemu/sysemu.h"
218e99
 #include "hw/loader.h"
218e99
 #include "qemu/option.h"
218e99
 #include "qemu/config-file.h"
218e99
@@ -239,14 +240,10 @@ uint32_t qemu_devtree_alloc_phandle(void *fdt)
218e99
      * which phandle id to start allocting phandles.
218e99
      */
218e99
     if (!phandle) {
218e99
-        QemuOpts *machine_opts;
218e99
-        machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-        if (machine_opts) {
218e99
-            const char *phandle_start;
218e99
-            phandle_start = qemu_opt_get(machine_opts, "phandle_start");
218e99
-            if (phandle_start) {
218e99
-                phandle = strtoul(phandle_start, NULL, 0);
218e99
-            }
218e99
+        const char *phandle_start = qemu_opt_get(qemu_get_machine_opts(),
218e99
+                                                 "phandle_start");
218e99
+        if (phandle_start) {
218e99
+            phandle = strtoul(phandle_start, NULL, 0);
218e99
         }
218e99
     }
218e99
 
218e99
@@ -307,15 +304,10 @@ int qemu_devtree_add_subnode(void *fdt, const char *name)
218e99
 
218e99
 void qemu_devtree_dumpdtb(void *fdt, int size)
218e99
 {
218e99
-    QemuOpts *machine_opts;
218e99
-
218e99
-    machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (machine_opts) {
218e99
-        const char *dumpdtb = qemu_opt_get(machine_opts, "dumpdtb");
218e99
-        if (dumpdtb) {
218e99
-            /* Dump the dtb to a file and quit */
218e99
-            exit(g_file_set_contents(dumpdtb, fdt, size, NULL) ? 0 : 1);
218e99
-        }
218e99
-    }
218e99
+    const char *dumpdtb = qemu_opt_get(qemu_get_machine_opts(), "dumpdtb");
218e99
 
218e99
+    if (dumpdtb) {
218e99
+        /* Dump the dtb to a file and quit */
218e99
+        exit(g_file_set_contents(dumpdtb, fdt, size, NULL) ? 0 : 1);
218e99
+    }
218e99
 }
218e99
diff --git a/exec.c b/exec.c
218e99
index aec65c5..ee22b9b 100644
218e99
--- a/exec.c
218e99
+++ b/exec.c
218e99
@@ -31,6 +31,7 @@
218e99
 #include "hw/qdev.h"
218e99
 #include "qemu/osdep.h"
218e99
 #include "sysemu/kvm.h"
218e99
+#include "sysemu/sysemu.h"
218e99
 #include "hw/xen/xen.h"
218e99
 #include "qemu/timer.h"
218e99
 #include "qemu/config-file.h"
218e99
@@ -979,12 +980,10 @@ ram_addr_t last_ram_offset(void)
218e99
 static void qemu_ram_setup_dump(void *addr, ram_addr_t size)
218e99
 {
218e99
     int ret;
218e99
-    QemuOpts *machine_opts;
218e99
 
218e99
     /* Use MADV_DONTDUMP, if user doesn't want the guest memory in the core */
218e99
-    machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (machine_opts &&
218e99
-        !qemu_opt_get_bool(machine_opts, "dump-guest-core", true)) {
218e99
+    if (!qemu_opt_get_bool(qemu_get_machine_opts(),
218e99
+                           "dump-guest-core", true)) {
218e99
         ret = qemu_madvise(addr, size, QEMU_MADV_DONTDUMP);
218e99
         if (ret) {
218e99
             perror("qemu_madvise");
218e99
@@ -1031,10 +1030,7 @@ void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev)
218e99
 
218e99
 static int memory_try_enable_merging(void *addr, size_t len)
218e99
 {
218e99
-    QemuOpts *opts;
218e99
-
218e99
-    opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (opts && !qemu_opt_get_bool(opts, "mem-merge", true)) {
218e99
+    if (!qemu_opt_get_bool(qemu_get_machine_opts(), "mem-merge", true)) {
218e99
         /* disabled by the user */
218e99
         return 0;
218e99
     }
218e99
diff --git a/hw/arm/boot.c b/hw/arm/boot.c
218e99
index 6bffc3d..6436109 100644
218e99
--- a/hw/arm/boot.c
218e99
+++ b/hw/arm/boot.c
218e99
@@ -365,7 +365,6 @@ void arm_load_kernel(ARMCPU *cpu, struct arm_boot_info *info)
218e99
     uint64_t elf_entry;
218e99
     hwaddr entry;
218e99
     int big_endian;
218e99
-    QemuOpts *machine_opts;
218e99
 
218e99
     /* Load the kernel.  */
218e99
     if (!info->kernel_filename) {
218e99
@@ -373,12 +372,7 @@ void arm_load_kernel(ARMCPU *cpu, struct arm_boot_info *info)
218e99
         exit(1);
218e99
     }
218e99
 
218e99
-    machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (machine_opts) {
218e99
-        info->dtb_filename = qemu_opt_get(machine_opts, "dtb");
218e99
-    } else {
218e99
-        info->dtb_filename = NULL;
218e99
-    }
218e99
+    info->dtb_filename = qemu_opt_get(qemu_get_machine_opts(), "dtb");
218e99
 
218e99
     if (!info->secondary_cpu_reset_hook) {
218e99
         info->secondary_cpu_reset_hook = default_reset_secondary;
218e99
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
218e99
index c9ae512..ef3e571 100644
218e99
--- a/hw/ppc/e500.c
218e99
+++ b/hw/ppc/e500.c
218e99
@@ -137,7 +137,6 @@ static int ppce500_load_device_tree(CPUPPCState *env,
218e99
     uint32_t clock_freq = 400000000;
218e99
     uint32_t tb_freq = 400000000;
218e99
     int i;
218e99
-    const char *toplevel_compat = NULL; /* user override */
218e99
     char compatible_sb[] = "fsl,mpc8544-immr\0simple-bus";
218e99
     char soc[128];
218e99
     char mpic[128];
218e99
@@ -158,14 +157,9 @@ static int ppce500_load_device_tree(CPUPPCState *env,
218e99
             0x0, 0xe1000000,
218e99
             0x0, 0x10000,
218e99
         };
218e99
-    QemuOpts *machine_opts;
218e99
-    const char *dtb_file = NULL;
218e99
-
218e99
-    machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (machine_opts) {
218e99
-        dtb_file = qemu_opt_get(machine_opts, "dtb");
218e99
-        toplevel_compat = qemu_opt_get(machine_opts, "dt_compatible");
218e99
-    }
218e99
+    QemuOpts *machine_opts = qemu_get_machine_opts();
218e99
+    const char *dtb_file = qemu_opt_get(machine_opts, "dtb");
218e99
+    const char *toplevel_compat = qemu_opt_get(machine_opts, "dt_compatible");
218e99
 
218e99
     if (dtb_file) {
218e99
         char *filename;
218e99
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
218e99
index c96ac81..6a46488 100644
218e99
--- a/hw/ppc/spapr.c
218e99
+++ b/hw/ppc/spapr.c
218e99
@@ -678,27 +678,19 @@ static void spapr_cpu_reset(void *opaque)
218e99
 
218e99
 static void spapr_create_nvram(sPAPREnvironment *spapr)
218e99
 {
218e99
-    QemuOpts *machine_opts;
218e99
-    DeviceState *dev;
218e99
+    DeviceState *dev = qdev_create(&spapr->vio_bus->bus, "spapr-nvram");
218e99
+    const char *drivename = qemu_opt_get(qemu_get_machine_opts(), "nvram");
218e99
 
218e99
-    dev = qdev_create(&spapr->vio_bus->bus, "spapr-nvram");
218e99
+    if (drivename) {
218e99
+        BlockDriverState *bs;
218e99
 
218e99
-    machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (machine_opts) {
218e99
-        const char *drivename;
218e99
-
218e99
-        drivename = qemu_opt_get(machine_opts, "nvram");
218e99
-        if (drivename) {
218e99
-            BlockDriverState *bs;
218e99
-
218e99
-            bs = bdrv_find(drivename);
218e99
-            if (!bs) {
218e99
-                fprintf(stderr, "No such block device \"%s\" for nvram\n",
218e99
-                        drivename);
218e99
-                exit(1);
218e99
-            }
218e99
-            qdev_prop_set_drive_nofail(dev, "drive", bs);
218e99
+        bs = bdrv_find(drivename);
218e99
+        if (!bs) {
218e99
+            fprintf(stderr, "No such block device \"%s\" for nvram\n",
218e99
+                    drivename);
218e99
+            exit(1);
218e99
         }
218e99
+        qdev_prop_set_drive_nofail(dev, "drive", bs);
218e99
     }
218e99
 
218e99
     qdev_init_nofail(dev);
218e99
diff --git a/vl.c b/vl.c
218e99
index 0ed9257..d424af7 100644
218e99
--- a/vl.c
218e99
+++ b/vl.c
218e99
@@ -1037,15 +1037,9 @@ static int parse_sandbox(QemuOpts *opts, void *opaque)
218e99
     return 0;
218e99
 }
218e99
 
218e99
-/*********QEMU USB setting******/
218e99
 bool usb_enabled(bool default_usb)
218e99
 {
218e99
-    QemuOpts *mach_opts;
218e99
-    mach_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (mach_opts) {
218e99
-        return qemu_opt_get_bool(mach_opts, "usb", default_usb);
218e99
-    }
218e99
-    return default_usb;
218e99
+    return qemu_opt_get_bool(qemu_get_machine_opts(), "usb", default_usb);
218e99
 }
218e99
 
218e99
 #ifndef _WIN32
218e99
@@ -4136,14 +4130,10 @@ int main(int argc, char **argv, char **envp)
218e99
         qtest_init();
218e99
     }
218e99
 
218e99
-    machine_opts = qemu_opts_find(qemu_find_opts("machine"), 0);
218e99
-    if (machine_opts) {
218e99
-        kernel_filename = qemu_opt_get(machine_opts, "kernel");
218e99
-        initrd_filename = qemu_opt_get(machine_opts, "initrd");
218e99
-        kernel_cmdline = qemu_opt_get(machine_opts, "append");
218e99
-    } else {
218e99
-        kernel_filename = initrd_filename = kernel_cmdline = NULL;
218e99
-    }
218e99
+    machine_opts = qemu_get_machine_opts();
218e99
+    kernel_filename = qemu_opt_get(machine_opts, "kernel");
218e99
+    initrd_filename = qemu_opt_get(machine_opts, "initrd");
218e99
+    kernel_cmdline = qemu_opt_get(machine_opts, "append");
218e99
 
218e99
     if (!kernel_cmdline) {
218e99
         kernel_cmdline = "";
218e99
@@ -4161,7 +4151,7 @@ int main(int argc, char **argv, char **envp)
218e99
         exit(1);
218e99
     }
218e99
 
218e99
-    if (!linux_boot && machine_opts && qemu_opt_get(machine_opts, "dtb")) {
218e99
+    if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
218e99
         fprintf(stderr, "-dtb only allowed with -kernel option\n");
218e99
         exit(1);
218e99
     }
218e99
-- 
218e99
1.7.1
218e99