From: Paolo Bonzini <pbonzini@redhat.com>
To: Li Qiang <liq3ea@gmail.com>, armbru@redhat.com, philmd@redhat.com
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] vl: Improve error message when we can't load fw_cfg from file
Date: Wed, 21 Nov 2018 18:52:33 +0100 [thread overview]
Message-ID: <ac213dd7-9204-9414-599a-4ef8fd2fbcb4@redhat.com> (raw)
In-Reply-To: <1541051971-28584-1-git-send-email-liq3ea@gmail.com>
On 01/11/18 06:59, Li Qiang wrote:
> parse_fw_cfg() reports "can't load" without further details. Get
> the details from g_file_get_contents(), and include them in the
> error message.
>
> Signed-off-by: Li Qiang <liq3ea@gmail.com>
> ---
> vl.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/vl.c b/vl.c
> index 1fcacc5..f0bd899 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -2244,8 +2244,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_setg(errp, "can't load %s", file);
> + GError *err = NULL;
> + if (!g_file_get_contents(file, &buf, &size, &err)) {
> + error_setg(errp, "can't load %s: %s", file, err->message);
> + g_error_free(err);
> return -1;
> }
> }
>
Queued, thanks.
Paolo
prev parent reply other threads:[~2018-11-21 17:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-01 5:59 [Qemu-devel] [PATCH] vl: Improve error message when we can't load fw_cfg from file Li Qiang
2018-11-15 12:20 ` Li Qiang
2018-11-21 17:52 ` Paolo Bonzini [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=ac213dd7-9204-9414-599a-4ef8fd2fbcb4@redhat.com \
--to=pbonzini@redhat.com \
--cc=armbru@redhat.com \
--cc=liq3ea@gmail.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 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).