All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Andrew Jones <drjones@redhat.com>,
	qemu-arm@nongnu.org, QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH] hw/arm/virt: error_report cleanups
Date: Mon, 09 Nov 2015 08:44:30 +0100	[thread overview]
Message-ID: <87twovpqg1.fsf@blackfin.pond.sub.org> (raw)
In-Reply-To: <CAFEAcA_Pk7_MourHFc-SLCQ-StTfc8ssZ_Kz6HahE5=9bxMHyA@mail.gmail.com> (Peter Maydell's message of "Sat, 7 Nov 2015 16:56:47 +0000")

Peter Maydell <peter.maydell@linaro.org> writes:

> On 7 November 2015 at 15:25, Andrew Jones <drjones@redhat.com> wrote:
>> Signed-off-by: Andrew Jones <drjones@redhat.com>
>> ---
>>  hw/arm/virt.c | 10 +++++-----
>>  1 file changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
>> index 77d9267599b7e..9c6792cea16f6 100644
>> --- a/hw/arm/virt.c
>> +++ b/hw/arm/virt.c
>> @@ -941,8 +941,8 @@ static void machvirt_init(MachineState *machine)
>>      if (!gic_version) {
>>          gic_version = kvm_arm_vgic_probe();
>>          if (!gic_version) {
>> -            error_report("Unable to determine GIC version supported by host\n"
>> -                         "Probably KVM acceleration is not supported\n");
>> +            error_report("Unable to determine GIC version supported by host");
>> +            error_printf("KVM acceleration is probably not supported\n");
>>              exit(1);
>>          }
>>      }
>> @@ -990,7 +990,7 @@ static void machvirt_init(MachineState *machine)
>>          char *cpuopts = g_strdup(cpustr[1]);
>>
>>          if (!oc) {
>> -            fprintf(stderr, "Unable to find CPU definition\n");
>> +            error_report("Unable to find CPU definition");
>>              exit(1);
>>          }
>>          cpuobj = object_new(object_class_get_name(oc));
>> @@ -1126,8 +1126,8 @@ static void virt_set_gic_version(Object *obj, const char *value, Error **errp)
>>      } else if (!strcmp(value, "host")) {
>>          vms->gic_version = 0; /* Will probe later */
>>      } else {
>> -        error_report("Invalid gic-version option value\n"
>> -                     "Allowed values are: 3, 2, host\n");
>> +        error_report("Invalid gic-version option value");
>> +        error_printf("Allowed gic-version values are: 3, 2, host\n");
>>          exit(1);
>>      }
>
> Would it be better just to have a single error_report
> for these without the newlines, eg
>
>           error_report("Unable to determine GIC version supported by host. "
>                        "KVM acceleration is probably not supported.");
>
> ?

For consistency, error messages should be a phrase, not a full sentence,
let alone a paraphraph.

You can of course turn any parapgraph into a phrase by stringing
together its parts with semicolons, but that's cheating :)

Reviewed-by: Markus Armbruster <armbru@redhat.com>

  reply	other threads:[~2015-11-09  7:44 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-07 15:25 [Qemu-devel] [PATCH] hw/arm/virt: error_report cleanups Andrew Jones
2015-11-07 16:56 ` Peter Maydell
2015-11-09  7:44   ` Markus Armbruster [this message]
2015-11-09 10:01     ` Peter Maydell
2015-11-09 10:21       ` Markus Armbruster
2015-11-09 15:47         ` Peter Maydell
2015-11-09 18:52           ` Markus Armbruster
2015-11-10  9:31             ` Peter Maydell
2015-11-10  9:39               ` Markus Armbruster
2015-11-10 11:55                 ` Peter Maydell
2015-11-10 13:02                   ` Andrew Jones

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=87twovpqg1.fsf@blackfin.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=drjones@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --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 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.