qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 11/13] i386: only parse the initrd_filename once for multiboot modules
Date: Tue, 17 Jul 2018 17:06:53 +0200	[thread overview]
Message-ID: <1531840015-28804-12-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1531840015-28804-1-git-send-email-pbonzini@redhat.com>

From: Daniel P. Berrangé <berrange@redhat.com>

The multiboot code parses the initrd_filename twice, first to count how
many entries there are, and second to process each entry. This changes
the first loop to store the parse module names in a list, and the second
loop can now use these names. This avoids having to pass NULL to the
get_opt_value() method which means it can safely assume a non-NULL param.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20180514171913.17664-3-berrange@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Tested-by: Roman Kagan <rkagan@virtuozzo.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 hw/i386/multiboot.c | 32 +++++++++++++++-----------------
 1 file changed, 15 insertions(+), 17 deletions(-)

diff --git a/hw/i386/multiboot.c b/hw/i386/multiboot.c
index 8e26545..d519e20 100644
--- a/hw/i386/multiboot.c
+++ b/hw/i386/multiboot.c
@@ -161,6 +161,7 @@ int load_multiboot(FWCfgState *fw_cfg,
     uint8_t bootinfo[MBI_SIZE];
     uint8_t *mb_bootinfo_data;
     uint32_t cmdline_len;
+    GList *mods = NULL;
 
     /* Ok, let's see if it is a multiboot image.
        The header is 12x32bit long, so the latest entry may be 8192 - 48. */
@@ -291,15 +292,16 @@ int load_multiboot(FWCfgState *fw_cfg,
     cmdline_len = strlen(kernel_filename) + 1;
     cmdline_len += strlen(kernel_cmdline) + 1;
     if (initrd_filename) {
-        const char *r = get_opt_value(initrd_filename, NULL);
+        const char *r = initrd_filename;
         cmdline_len += strlen(initrd_filename) + 1;
-        while (1) {
+        while (*r) {
+            char *value;
+            r = get_opt_value(r, &value);
             mbs.mb_mods_avail++;
-            r = get_opt_value(r, NULL);
-            if (!*r) {
-                break;
+            mods = g_list_append(mods, value);
+            if (*r) {
+                r++;
             }
-            r++;
         }
     }
 
@@ -314,20 +316,16 @@ int load_multiboot(FWCfgState *fw_cfg,
     mbs.offset_cmdlines   = mbs.offset_mbinfo + mbs.mb_mods_avail * MB_MOD_SIZE;
     mbs.offset_bootloader = mbs.offset_cmdlines + cmdline_len;
 
-    if (initrd_filename) {
-        const char *next_initrd;
-        char not_last;
-        char *one_file = NULL;
-
+    if (mods) {
+        GList *tmpl = mods;
         mbs.offset_mods = mbs.mb_buf_size;
 
-        do {
+        while (tmpl) {
             char *next_space;
             int mb_mod_length;
             uint32_t offs = mbs.mb_buf_size;
+            char *one_file = tmpl->data;
 
-            next_initrd = get_opt_value(initrd_filename, &one_file);
-            not_last = *next_initrd;
             /* if a space comes after the module filename, treat everything
                after that as parameters */
             hwaddr c = mb_add_cmdline(&mbs, one_file);
@@ -352,10 +350,10 @@ int load_multiboot(FWCfgState *fw_cfg,
             mb_debug("mod_start: %p\nmod_end:   %p\n  cmdline: "TARGET_FMT_plx,
                      (char *)mbs.mb_buf + offs,
                      (char *)mbs.mb_buf + offs + mb_mod_length, c);
-            initrd_filename = next_initrd+1;
             g_free(one_file);
-            one_file = NULL;
-        } while (not_last);
+            tmpl = tmpl->next;
+        }
+        g_list_free(mods);
     }
 
     /* Commandline support */
-- 
1.8.3.1

  parent reply	other threads:[~2018-07-17 15:07 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-17 15:06 [Qemu-devel] [PULL 00/13] Misc fixes for QEMU 3.0.0-rc1 Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 01/13] dump: add kernel_gs_base to QEMU CPU state Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 02/13] accel: Fix typo and grammar in comment Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 03/13] hyperv: rename vcpu_id to vp_index Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 04/13] hyperv: ensure VP index equal to QEMU cpu_index Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 05/13] vhost-user-test: added proper TestServer *dest initialization in test_migrate() Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 06/13] PC Chipset: Improve serial divisor calculation Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 07/13] hw/char/serial: retry write if EAGAIN Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 08/13] qdev: add HotplugHandler->post_plug() callback Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 09/13] virtio-scsi: fix hotplug ->reset() vs event race Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 10/13] i386: fix regression parsing multiboot initrd modules Paolo Bonzini
2018-07-17 15:06 ` Paolo Bonzini [this message]
2018-07-17 15:06 ` [Qemu-devel] [PULL 12/13] opts: remove redundant check for NULL parameter Paolo Bonzini
2018-07-17 15:06 ` [Qemu-devel] [PULL 13/13] Document command line options with single dash Paolo Bonzini
2018-07-17 15:16 ` [Qemu-devel] [PULL 00/13] Misc fixes for QEMU 3.0.0-rc1 Peter Maydell

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=1531840015-28804-12-git-send-email-pbonzini@redhat.com \
    --to=pbonzini@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 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).