All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>
Cc: qemu-devel@nongnu.org,  npiggin@gmail.com,
	 danielhb413@gmail.com, clg@kaod.org,
	 david@gibson.dropbear.id.au,  harshpb@linux.ibm.com,
	dave@treblig.org,  jasowang@redhat.com,  michael.roth@amd.com,
	kkostiuk@redhat.com,  mst@redhat.com,  david@redhat.com,
	kraxel@redhat.com,  marcandre.lureau@redhat.com,
	 qemu-ppc@nongnu.org
Subject: Re: [PATCH 7/7] target/i386/cpu: Improve error message for property "vendor"
Date: Wed, 15 Nov 2023 08:13:52 +0100	[thread overview]
Message-ID: <87bkbvtrnz.fsf@pond.sub.org> (raw)
In-Reply-To: <d2c8e554-3bdf-e89d-c579-c9a432e8e08f@linaro.org> ("Philippe Mathieu-Daudé"'s message of "Tue, 31 Oct 2023 15:07:00 +0100")

Philippe Mathieu-Daudé <philmd@linaro.org> writes:

> On 31/10/23 12:10, Markus Armbruster wrote:
>> Improve
>>      $ qemu-system-x86_64 -device max-x86_64-cpu,vendor=me
>>      qemu-system-x86_64: -device max-x86_64-cpu,vendor=me: Property '.vendor' doesn't take value 'me'
>> to
>>      qemu-system-x86_64: -device max-x86_64-cpu,vendor=0123456789abc: value of property 'vendor' must consist of excactly 12 characters
>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
>> ---
>>   target/i386/cpu.c | 3 ++-
>>   1 file changed, 2 insertions(+), 1 deletion(-)
>> diff --git a/target/i386/cpu.c b/target/i386/cpu.c
>> index fc8484cb5e..e708628c16 100644
>> --- a/target/i386/cpu.c
>> +++ b/target/i386/cpu.c
>> @@ -5192,7 +5192,8 @@ static void x86_cpuid_set_vendor(Object *obj, const char *value,
>>       int i;
>>         if (strlen(value) != CPUID_VENDOR_SZ) {
>> -        error_setg(errp, QERR_PROPERTY_VALUE_BAD, "", "vendor", value);
>> +        error_setg(errp, "value of property 'vendor' must consist of"
>> +                   " excactly " stringify(CPUID_VENDOR_SZ) " characters");
>
> Typo "exactly" (and in example), otherwise:

Fixed.

> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
>
>>           return;
>>       }
>>   

Thanks!



  reply	other threads:[~2023-11-15  7:14 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-31 11:10 [PATCH 0/7] Miscellaneous error message improvements Markus Armbruster
2023-10-31 11:10 ` [PATCH 1/7] spapr/pci: Correct "does not support hotplugging error messages Markus Armbruster
2023-11-01 20:52   ` Daniel Henrique Barboza
2023-11-01 21:11     ` BALATON Zoltan
2023-11-15  7:07       ` Markus Armbruster
2023-10-31 11:10 ` [PATCH 2/7] hmp: Improve sync-profile error message Markus Armbruster
2023-10-31 14:05   ` Philippe Mathieu-Daudé
2023-10-31 16:59   ` Dr. David Alan Gilbert
2023-10-31 11:10 ` [PATCH 3/7] qga: Improve guest-exec-status " Markus Armbruster
2023-10-31 11:24   ` Konstantin Kostiuk
2023-10-31 14:05   ` Philippe Mathieu-Daudé
2023-10-31 11:10 ` [PATCH 4/7] ui/qmp-cmds: Improve two error messages Markus Armbruster
2023-10-31 14:46   ` Philippe Mathieu-Daudé
2023-10-31 11:10 ` [PATCH 5/7] net: Fix a misleading error message Markus Armbruster
2023-10-31 11:10 ` [PATCH 6/7] balloon: " Markus Armbruster
2023-10-31 12:25   ` David Hildenbrand
2023-10-31 12:43   ` Michael S. Tsirkin
2023-11-02  6:57   ` Mario Casquero
2023-10-31 11:10 ` [PATCH 7/7] target/i386/cpu: Improve error message for property "vendor" Markus Armbruster
2023-10-31 14:07   ` Philippe Mathieu-Daudé
2023-11-15  7:13     ` Markus Armbruster [this message]
2023-11-17  9:14 ` [PATCH 0/7] Miscellaneous error message improvements Markus Armbruster

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=87bkbvtrnz.fsf@pond.sub.org \
    --to=armbru@redhat.com \
    --cc=clg@kaod.org \
    --cc=danielhb413@gmail.com \
    --cc=dave@treblig.org \
    --cc=david@gibson.dropbear.id.au \
    --cc=david@redhat.com \
    --cc=harshpb@linux.ibm.com \
    --cc=jasowang@redhat.com \
    --cc=kkostiuk@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=michael.roth@amd.com \
    --cc=mst@redhat.com \
    --cc=npiggin@gmail.com \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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.