From: Eric Blake <eblake@redhat.com>
To: Eduardo Habkost <ehabkost@redhat.com>, qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Andrew Jones <drjones@redhat.com>,
Markus Armbruster <armbru@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] vl.c: Replace fprintf(stderr) with error_report()
Date: Mon, 26 Oct 2015 13:10:31 -0600 [thread overview]
Message-ID: <562E7AA7.3080300@redhat.com> (raw)
In-Reply-To: <1445879623-8403-1-git-send-email-ehabkost@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 4123 bytes --]
On 10/26/2015 11:13 AM, Eduardo Habkost wrote:
> This replaces most fprintf(stderr) calls on vl.c with error_report().
>
> The trailing newlines, "qemu:" and "error:" message prefixes were
> removed.
>
> The only remaining fprintf(stderr) calls are the ones at
> qemu_kill_report(), because the error mesage is split in multiple
> fprintf() calls.
>
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
> Not sure if this is appropriate post soft-freeze, but if we are going to apply
> the max-cpus patch from Drew before 2.5.0, we could simply change all the
> fprintf() calls in a single step.
Soft freeze means no new features that didn't already have a patch
review started - but this is a cleanup, not a new feature. I think it
qualifies for 2.5 inclusion just fine.
> ---
> vl.c | 228 +++++++++++++++++++++++++++++++++----------------------------------
> 1 file changed, 112 insertions(+), 116 deletions(-)
In addition to the things Markus pointed out,
> @@ -950,7 +950,7 @@ static struct bt_device_s *bt_device_add(const char *opt)
> if (endp) {
> vlan_id = strtol(endp + 6, &endp, 0);
> if (*endp) {
> - fprintf(stderr, "qemu: unrecognised bluetooth vlan Id\n");
> + error_report("unrecognised bluetooth vlan Id");
> return 0;
Do we have any strong preference for US vs. UK spelling in user-visible
messages? (I don't, but someone else might)
> }
> }
> @@ -958,13 +958,13 @@ static struct bt_device_s *bt_device_add(const char *opt)
> vlan = qemu_find_bt_vlan(vlan_id);
>
> if (!vlan->slave)
> - fprintf(stderr, "qemu: warning: adding a slave device to "
> - "an empty scatternet %i\n", vlan_id);
> + error_report("warning: adding a slave device to "
> + "an empty scatternet %i", vlan_id);
>
> if (!strcmp(devname, "keyboard"))
> return bt_keyboard_init(vlan);
>
> - fprintf(stderr, "qemu: unsupported bluetooth device `%s'\n", devname);
> + error_report("unsupported bluetooth device `%s'", devname);
Use of `' quoting is unusual these days; if it were me, I'd use this as
a chance to switch to '' quoting.
> @@ -3005,8 +3006,7 @@ int main(int argc, char **argv, char **envp)
> runstate_init();
>
> if (qcrypto_init(&err) < 0) {
> - fprintf(stderr, "Cannot initialize crypto: %s\n",
> - error_get_pretty(err));
> + error_report("Cannot initialize crypto: %s", error_get_pretty(err));
> exit(1);
> }
error_report_err() is nicer than manually calling
error_report(error_get_pretty(err))
> @@ -3999,8 +3995,8 @@ int main(int argc, char **argv, char **envp)
> }
>
> if (machine_class == NULL) {
> - fprintf(stderr, "No machine specified, and there is no default.\n"
> - "Use -machine help to list supported machines!\n");
> + error_report("No machine specified, and there is no default.\n"
> + "Use -machine help to list supported machines!");
Indentation looks off.
> @@ -4164,12 +4160,12 @@ int main(int argc, char **argv, char **envp)
> if (display_type == DT_NOGRAPHIC
> && (default_parallel || default_serial
> || default_monitor || default_virtcon)) {
> - fprintf(stderr, "-nographic can not be used with -daemonize\n");
> + error_report("-nographic can not be used with -daemonize");
s/can not/cannot/ while touching this
> exit(1);
> }
> #ifdef CONFIG_CURSES
> if (display_type == DT_CURSES) {
> - fprintf(stderr, "curses display can not be used with -daemonize\n");
> + error_report("curses display can not be used with -daemonize");
and again
Whether you squash in those fixes, roll a v2, or send a followup, feel
free to add:
Reviewed-by: Eric Blake <eblake@redhat.com>
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
next prev parent reply other threads:[~2015-10-26 19:10 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-26 17:13 [Qemu-devel] [PATCH] vl.c: Replace fprintf(stderr) with error_report() Eduardo Habkost
2015-10-26 17:43 ` Markus Armbruster
2015-10-26 18:03 ` Eduardo Habkost
2015-10-26 18:21 ` Eduardo Habkost
2015-10-28 18:12 ` Eduardo Habkost
2015-10-29 6:15 ` Markus Armbruster
2015-10-26 19:10 ` Eric Blake [this message]
2015-10-27 17:08 ` Eduardo Habkost
2015-10-27 7:30 ` Andrew Jones
2015-10-27 9:53 ` Markus Armbruster
2015-10-27 19:25 ` Eduardo Habkost
2015-10-27 19:36 ` Laszlo Ersek
2015-10-28 13:58 ` Andrew Jones
2015-10-28 15:27 ` Laszlo Ersek
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=562E7AA7.3080300@redhat.com \
--to=eblake@redhat.com \
--cc=armbru@redhat.com \
--cc=drjones@redhat.com \
--cc=ehabkost@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).