From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, wdauchy@gmail.com
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH] Fix 'name' option to work with -readconfig
Date: Wed, 14 May 2014 10:34:49 +0100 [thread overview]
Message-ID: <20140514093448.GM2381@work-vm> (raw)
In-Reply-To: <87lhu4hg36.fsf@blackfin.pond.sub.org>
* Markus Armbruster (armbru@redhat.com) wrote:
> "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com> writes:
>
> > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> >
> > The 'name' option silently failed when used in config files
> > ( http://lists.gnu.org/archive/html/qemu-devel/2014-04/msg00378.html )
> >
> > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> > Reported-by: William Dauchy <wdauchy@gmail.com>
> > ---
> > vl.c | 9 +++++++--
> > 1 file changed, 7 insertions(+), 2 deletions(-)
> >
> > diff --git a/vl.c b/vl.c
> > index 8411a4a..47c199a 100644
> > --- a/vl.c
> > +++ b/vl.c
> > @@ -965,7 +965,7 @@ static int parse_sandbox(QemuOpts *opts, void *opaque)
> > return 0;
> > }
> >
> > -static void parse_name(QemuOpts *opts)
> > +static int parse_name(QemuOpts *opts, void *opaque)
> > {
> > const char *proc_name;
> >
> > @@ -978,6 +978,8 @@ static void parse_name(QemuOpts *opts)
> > if (proc_name) {
> > os_set_proc_name(proc_name);
> > }
> > +
> > + return 0;
> > }
> >
> > bool usb_enabled(bool default_usb)
> > @@ -3780,7 +3782,6 @@ int main(int argc, char **argv, char **envp)
> > if (!opts) {
> > exit(1);
> > }
> > - parse_name(opts);
> > break;
> > case QEMU_OPTION_prom_env:
> > if (nb_prom_envs >= MAX_PROM_ENVS) {
> > @@ -3955,6 +3956,10 @@ int main(int argc, char **argv, char **envp)
> > exit(1);
> > }
> >
> > + if (qemu_opts_foreach(qemu_find_opts("name"), parse_name, NULL, 1)) {
> > + exit(1);
> > + }
> > +
>
> This will never exit, but that's okay.
Ah, because my parse_name currently never fails?
> > #ifndef _WIN32
> > if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd, NULL, 1)) {
> > exit(1);
>
> -readconfig stores the configuration read in QemuOpts. Command line
> option parsing should do the same, and no more. In particular it should
> not act upon the option. That needs to be done separately, where both
> command line and -readconfig settings are visible in QemuOpts.
>
> Your patch does exactly that. I think amending the commit message with
> the previous paragraph would improve it.
>
> Have you checked command line option parsing (the big switch) for
> similar problems?
I hadn't, other than fixing up -name; tbh It's taken me a while to understand
how QemuOpts is supposed to work (and hence why I didn't get this in the 1st
patch); I'd seen the qemu_opts_foreach uses at the bottom of the switch, but
since they looked like a loop, I'd assumed they were only for options with
multiple sets of values and not looked any further.
The big switch seems to be a mix of a lot of different ways of doing things;
A quick scan shows rtc, option_rom, usb_device, and others all use qemu_opts_parse
in the big switch but also taking an action in the switch.
> Reviewed-by: Markus Armbruster <armbru@redhat.com>
Thanks.
Dave
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
WARNING: multiple messages have this Message-ID (diff)
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, wdauchy@gmail.com
Subject: Re: [Qemu-devel] [PATCH] Fix 'name' option to work with -readconfig
Date: Wed, 14 May 2014 10:34:49 +0100 [thread overview]
Message-ID: <20140514093448.GM2381@work-vm> (raw)
In-Reply-To: <87lhu4hg36.fsf@blackfin.pond.sub.org>
* Markus Armbruster (armbru@redhat.com) wrote:
> "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com> writes:
>
> > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> >
> > The 'name' option silently failed when used in config files
> > ( http://lists.gnu.org/archive/html/qemu-devel/2014-04/msg00378.html )
> >
> > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> > Reported-by: William Dauchy <wdauchy@gmail.com>
> > ---
> > vl.c | 9 +++++++--
> > 1 file changed, 7 insertions(+), 2 deletions(-)
> >
> > diff --git a/vl.c b/vl.c
> > index 8411a4a..47c199a 100644
> > --- a/vl.c
> > +++ b/vl.c
> > @@ -965,7 +965,7 @@ static int parse_sandbox(QemuOpts *opts, void *opaque)
> > return 0;
> > }
> >
> > -static void parse_name(QemuOpts *opts)
> > +static int parse_name(QemuOpts *opts, void *opaque)
> > {
> > const char *proc_name;
> >
> > @@ -978,6 +978,8 @@ static void parse_name(QemuOpts *opts)
> > if (proc_name) {
> > os_set_proc_name(proc_name);
> > }
> > +
> > + return 0;
> > }
> >
> > bool usb_enabled(bool default_usb)
> > @@ -3780,7 +3782,6 @@ int main(int argc, char **argv, char **envp)
> > if (!opts) {
> > exit(1);
> > }
> > - parse_name(opts);
> > break;
> > case QEMU_OPTION_prom_env:
> > if (nb_prom_envs >= MAX_PROM_ENVS) {
> > @@ -3955,6 +3956,10 @@ int main(int argc, char **argv, char **envp)
> > exit(1);
> > }
> >
> > + if (qemu_opts_foreach(qemu_find_opts("name"), parse_name, NULL, 1)) {
> > + exit(1);
> > + }
> > +
>
> This will never exit, but that's okay.
Ah, because my parse_name currently never fails?
> > #ifndef _WIN32
> > if (qemu_opts_foreach(qemu_find_opts("add-fd"), parse_add_fd, NULL, 1)) {
> > exit(1);
>
> -readconfig stores the configuration read in QemuOpts. Command line
> option parsing should do the same, and no more. In particular it should
> not act upon the option. That needs to be done separately, where both
> command line and -readconfig settings are visible in QemuOpts.
>
> Your patch does exactly that. I think amending the commit message with
> the previous paragraph would improve it.
>
> Have you checked command line option parsing (the big switch) for
> similar problems?
I hadn't, other than fixing up -name; tbh It's taken me a while to understand
how QemuOpts is supposed to work (and hence why I didn't get this in the 1st
patch); I'd seen the qemu_opts_foreach uses at the bottom of the switch, but
since they looked like a loop, I'd assumed they were only for options with
multiple sets of values and not looked any further.
The big switch seems to be a mix of a lot of different ways of doing things;
A quick scan shows rtc, option_rom, usb_device, and others all use qemu_opts_parse
in the big switch but also taking an action in the switch.
> Reviewed-by: Markus Armbruster <armbru@redhat.com>
Thanks.
Dave
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2014-05-14 9:35 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-06 11:15 [Qemu-trivial] [PATCH] Fix 'name' option to work with -readconfig Dr. David Alan Gilbert (git)
2014-05-06 11:15 ` [Qemu-devel] " Dr. David Alan Gilbert (git)
2014-05-06 14:13 ` [Qemu-trivial] " William Dauchy
2014-05-06 14:13 ` [Qemu-devel] " William Dauchy
2014-05-14 9:20 ` [Qemu-trivial] " Markus Armbruster
2014-05-14 9:20 ` Markus Armbruster
2014-05-14 9:34 ` Dr. David Alan Gilbert [this message]
2014-05-14 9:34 ` Dr. David Alan Gilbert
2014-05-14 11:02 ` [Qemu-trivial] " Markus Armbruster
2014-05-14 11:02 ` Markus Armbruster
2014-05-23 20:43 ` [Qemu-trivial] " Michael Tokarev
2014-05-23 20:43 ` [Qemu-devel] " Michael Tokarev
2014-05-27 7:51 ` Dr. David Alan Gilbert
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=20140514093448.GM2381@work-vm \
--to=dgilbert@redhat.com \
--cc=armbru@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=wdauchy@gmail.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 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.