From: David Hildenbrand <dahi@linux.vnet.ibm.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 4/4] hw/s390x: Rename local variables Error *l_err to just err
Date: Fri, 11 Dec 2015 09:07:41 +0100 [thread overview]
Message-ID: <20151211090741.400fd4ea@thinkpad-w530> (raw)
In-Reply-To: <1449768232-22924-5-git-send-email-armbru@redhat.com>
>
> static Property s390_ipl_properties[] = {
> diff --git a/hw/s390x/sclp.c b/hw/s390x/sclp.c
> index a061b49..9a117c9 100644
> --- a/hw/s390x/sclp.c
> +++ b/hw/s390x/sclp.c
> @@ -456,29 +456,29 @@ static void sclp_realize(DeviceState *dev, Error **errp)
> {
> MachineState *machine = MACHINE(qdev_get_machine());
> SCLPDevice *sclp = SCLP(dev);
> - Error *l_err = NULL;
> + Error *err = NULL;
> uint64_t hw_limit;
> int ret;
>
> object_property_set_bool(OBJECT(sclp->event_facility), true, "realized",
> - &l_err);
> - if (l_err) {
> + &err);
> + if (err) {
> goto error;
> }
>
> ret = s390_set_memory_limit(machine->maxram_size, &hw_limit);
> if (ret == -E2BIG) {
> - error_setg(&l_err, "qemu: host supports a maximum of %" PRIu64 " GB",
> + error_setg(&err, "qemu: host supports a maximum of %" PRIu64 " GB",
> hw_limit >> 30);
> goto error;
> } else if (ret) {
> - error_setg(&l_err, "qemu: setting the guest size failed");
> + error_setg(&err, "qemu: setting the guest size failed");
> goto error;
> }
> return;
> error:
> - assert(l_err);
> - error_propagate(errp, l_err);
> + assert(err);
We could also get rid of that assert and remove the return; above (naming the
label "out").
> + error_propagate(errp, err);
> }
>
> static void sclp_memory_init(SCLPDevice *sclp)
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
David
next prev parent reply other threads:[~2015-12-11 8:07 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-10 17:23 [Qemu-devel] [PATCH 0/4] Error reporting cleanups Markus Armbruster
2015-12-10 17:23 ` [Qemu-devel] [PATCH 1/4] error: Strip trailing '\n' from error string arguments (again) Markus Armbruster
2015-12-10 17:31 ` Dr. David Alan Gilbert
2015-12-10 18:16 ` Cornelia Huck
2015-12-11 9:01 ` Hailiang Zhang
2015-12-11 3:09 ` Bharata B Rao
2015-12-11 5:26 ` Fam Zheng
2015-12-10 17:23 ` [Qemu-devel] [PATCH 2/4] error: Clean up errors with embedded newlines (again), part 1 Markus Armbruster
2015-12-10 17:36 ` Laszlo Ersek
2015-12-14 9:27 ` Markus Armbruster
2015-12-10 17:23 ` [Qemu-devel] [PATCH 3/4] error: Clean up errors with embedded newlines (again), part 2 Markus Armbruster
2015-12-10 17:48 ` Laszlo Ersek
2015-12-14 9:42 ` Markus Armbruster
2015-12-15 2:03 ` Fam Zheng
2015-12-15 7:59 ` Markus Armbruster
2015-12-10 17:23 ` [Qemu-devel] [PATCH 4/4] hw/s390x: Rename local variables Error *l_err to just err Markus Armbruster
2015-12-10 18:18 ` Cornelia Huck
2015-12-11 8:07 ` David Hildenbrand [this message]
2015-12-14 9:59 ` Markus Armbruster
2015-12-14 10:15 ` Cornelia Huck
2015-12-14 10:28 ` David Hildenbrand
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=20151211090741.400fd4ea@thinkpad-w530 \
--to=dahi@linux.vnet.ibm.com \
--cc=armbru@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).