All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Li Qiang <liq3ea@gmail.com>
Cc: philmd@redhat.com, Paolo Bonzini <pbonzini@redhat.com>,
	f4bug@amsat.org, Qemu Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2] vl.c: print error message if load fw_cfg file failed
Date: Tue, 09 Oct 2018 15:04:26 +0200	[thread overview]
Message-ID: <87bm83uv8l.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <CAKXe6SKqfm2qXuN4YNWQTOnrF9O2OFqg41vp6y-ANMgqLLXBLg@mail.gmail.com> (Li Qiang's message of "Tue, 9 Oct 2018 13:58:21 +0800")

Li Qiang <liq3ea@gmail.com> writes:

> Hello  Philippe,
>
> Philippe Mathieu-Daudé <philmd@redhat.com> 于2018年10月9日周二 下午1:52写道:
>
>> Hi Li,
>>
>> On 09/10/2018 04:39, Li Qiang wrote:
>> > It makes sense to print the error message while reading
>> > file failed.
[...]
>> > diff --git a/vl.c b/vl.c
>> > index 4e25c78..69fc77c 100644
>> > --- a/vl.c
>> > +++ b/vl.c
>> > @@ -2207,8 +2207,10 @@ static int parse_fw_cfg(void *opaque, QemuOpts *opts, Error **errp)
>> >          size = strlen(str); /* NUL terminator NOT included in fw_cfg blob */
>> >          buf = g_memdup(str, size);
>> >      } else {
>> > -        if (!g_file_get_contents(file, &buf, &size, NULL)) {
>> > -            error_report("can't load %s", file);
>> > +        GError *error = NULL;
>> > +        if (!g_file_get_contents(file, &buf, &size, &error)) {
>> > +            error_report("can't load %s, %s", file, error->message);
>>
>> If you ever respin, you can help Markus [1] effort using:
>>
>>             error_setg(errp, "can't load %s, %s", file, error->message);
>>
>> Else your patch will clash with [2].
>>
>
> OK, I will send out this patch based Markus' tree or later when his patch
> goes to upstream.

Appreciated!

      reply	other threads:[~2018-10-09 13:04 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-09  2:39 [Qemu-devel] [PATCH v2] vl.c: print error message if load fw_cfg file failed Li Qiang
2018-10-09  5:52 ` Philippe Mathieu-Daudé
2018-10-09  5:58   ` Li Qiang
2018-10-09 13:04     ` Markus Armbruster [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=87bm83uv8l.fsf@dusky.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=f4bug@amsat.org \
    --cc=liq3ea@gmail.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@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 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.