qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: Marcel Apfelbaum <marcel@redhat.com>
Cc: pbonzini@redhat.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH V2] vl.c: remove machine_opts from main and the duplicate call to qemu_get_machine_opts
Date: Mon, 8 Feb 2016 15:07:27 +0100	[thread overview]
Message-ID: <20160208150727.673496da@nial.brq.redhat.com> (raw)
In-Reply-To: <1454933759-31030-1-git-send-email-marcel@redhat.com>

On Mon,  8 Feb 2016 14:15:59 +0200
Marcel Apfelbaum <marcel@redhat.com> wrote:

> Use current machine properties instead of querying machine's opts.
> 
> Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>

> ---
> 
> v1 -> v2:
>  - Use the current machine also for dtb
>  - Remove the machine_opts from main completely 
> 
>  vl.c | 18 ++++++++----------
>  1 file changed, 8 insertions(+), 10 deletions(-)
> 
> diff --git a/vl.c b/vl.c
> index d4a8661..c8bc4bf 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -2991,7 +2991,7 @@ int main(int argc, char **argv, char **envp)
>      const char *boot_once = NULL;
>      DisplayState *ds;
>      int cyls, heads, secs, translation;
> -    QemuOpts *hda_opts = NULL, *opts, *machine_opts, *icount_opts = NULL;
> +    QemuOpts *hda_opts = NULL, *opts, *icount_opts = NULL;
>      QemuOptsList *olist;
>      int optind;
>      const char *optarg;
> @@ -4339,9 +4339,8 @@ int main(int argc, char **argv, char **envp)
>          exit(0);
>      }
>  
> -    machine_opts = qemu_get_machine_opts();
> -    if (qemu_opt_foreach(machine_opts, machine_set_property, current_machine,
> -                         NULL)) {
> +    if (qemu_opt_foreach(qemu_get_machine_opts(), machine_set_property,
> +                         current_machine, NULL)) {
>          object_unref(OBJECT(current_machine));
>          exit(1);
>      }
> @@ -4352,11 +4351,10 @@ int main(int argc, char **argv, char **envp)
>          qtest_init(qtest_chrdev, qtest_log, &error_fatal);
>      }
>  
> -    machine_opts = qemu_get_machine_opts();
> -    kernel_filename = qemu_opt_get(machine_opts, "kernel");
> -    initrd_filename = qemu_opt_get(machine_opts, "initrd");
> -    kernel_cmdline = qemu_opt_get(machine_opts, "append");
> -    bios_name = qemu_opt_get(machine_opts, "firmware");
> +    kernel_filename = current_machine->kernel_filename;
> +    initrd_filename = current_machine->initrd_filename;
> +    kernel_cmdline = current_machine->kernel_cmdline;
> +    bios_name = current_machine->firmware;
>  
>      opts = qemu_opts_find(qemu_find_opts("boot-opts"), NULL);
>      if (opts) {
> @@ -4395,7 +4393,7 @@ int main(int argc, char **argv, char **envp)
>          exit(1);
>      }
>  
> -    if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
> +    if (!linux_boot && current_machine->dtb) {
>          error_report("-dtb only allowed with -kernel option");
>          exit(1);
>      }

      reply	other threads:[~2016-02-08 14:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-08 12:15 [Qemu-devel] [PATCH V2] vl.c: remove machine_opts from main and the duplicate call to qemu_get_machine_opts Marcel Apfelbaum
2016-02-08 14:07 ` Igor Mammedov [this message]

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=20160208150727.673496da@nial.brq.redhat.com \
    --to=imammedo@redhat.com \
    --cc=marcel@redhat.com \
    --cc=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).