From: Eric Blake <eblake@redhat.com>
To: qemu-devel@nongnu.org
Cc: armbru@redhat.com, Kevin Wolf <kwolf@redhat.com>,
Max Reitz <mreitz@redhat.com>,
"open list:Block layer core" <qemu-block@nongnu.org>
Subject: [Qemu-devel] [PATCH v4 10/13] block: Simplify bdrv_append_temp_snapshot() logic
Date: Tue, 11 Apr 2017 13:50:31 -0500 [thread overview]
Message-ID: <20170411185034.13460-11-eblake@redhat.com> (raw)
In-Reply-To: <20170411185034.13460-1-eblake@redhat.com>
Noticed while checking Coccinelle results. Naming a label 'out:'
when it is only used on error paths is weird. Also, we had some
dead stores to 'ret'. Meanwhile we know that snapshot_options
is NULL on success and that QDECREF(NULL) is safe. So merge the
two exit paths into one by careful control over bs_snapshot.
Signed-off-by: Eric Blake <eblake@redhat.com>
---
v4: fix -O2 compilation bug, kill dead 'ret'
v3: split out from bigger v2 patch
---
block.c | 19 ++++++++-----------
1 file changed, 8 insertions(+), 11 deletions(-)
diff --git a/block.c b/block.c
index c8a6bce..2bf3d40 100644
--- a/block.c
+++ b/block.c
@@ -2158,7 +2158,7 @@ static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
char *tmp_filename = g_malloc0(PATH_MAX + 1);
int64_t total_size;
QemuOpts *opts = NULL;
- BlockDriverState *bs_snapshot;
+ BlockDriverState *bs_snapshot = NULL;
Error *local_err = NULL;
int ret;
@@ -2198,28 +2198,25 @@ static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
snapshot_options = NULL;
if (!bs_snapshot) {
- ret = -EINVAL;
goto out;
}
- /* bdrv_append() consumes a strong reference to bs_snapshot (i.e. it will
- * call bdrv_unref() on it), so in order to be able to return one, we have
- * to increase bs_snapshot's refcount here */
+ /* bdrv_append() consumes a strong reference to bs_snapshot
+ * (i.e. it will call bdrv_unref() on it) even on error, so in
+ * order to be able to return one, we have to increase
+ * bs_snapshot's refcount here */
bdrv_ref(bs_snapshot);
bdrv_append(bs_snapshot, bs, &local_err);
if (local_err) {
error_propagate(errp, local_err);
- ret = -EINVAL;
+ bs_snapshot = NULL;
goto out;
}
+out:
+ QDECREF(snapshot_options);
g_free(tmp_filename);
return bs_snapshot;
-
-out:
- QDECREF(snapshot_options);
- g_free(tmp_filename);
- return NULL;
}
/*
--
2.9.3
next prev parent reply other threads:[~2017-04-11 18:51 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-11 18:50 [Qemu-devel] [PATCH v4 00/13] qapi-related cleanups Eric Blake
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 01/13] pci: Use struct instead of QDict to pass back parameters Eric Blake
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 02/13] pci: Reduce scope of error injection Eric Blake
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 03/13] s390x: Drop useless casts Eric Blake
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 04/13] coccinelle: Add script to remove useless QObject casts Eric Blake
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 05/13] qobject: Drop " Eric Blake
2017-04-12 13:06 ` Alberto Garcia
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 06/13] qobject: Add helper macros for common scalar insertions Eric Blake
2017-04-12 6:40 ` Markus Armbruster
2017-04-12 13:17 ` Eric Blake
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 07/13] block: Use simpler QDict/QList scalar insertion macros Eric Blake
2017-04-12 6:52 ` Markus Armbruster
2017-04-12 13:18 ` Eric Blake
2017-04-12 13:09 ` Alberto Garcia
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 08/13] tests: " Eric Blake
2017-04-12 3:14 ` Philippe Mathieu-Daudé
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 09/13] qobject: " Eric Blake
2017-04-12 4:25 ` Philippe Mathieu-Daudé
2017-04-11 18:50 ` Eric Blake [this message]
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 11/13] QemuOpts: Simplify qemu_opts_to_qdict() Eric Blake
2017-04-12 3:15 ` Philippe Mathieu-Daudé
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 12/13] fdc-test: Avoid deprecated 'change' command Eric Blake
2017-04-11 20:44 ` John Snow
2017-04-11 18:50 ` [Qemu-devel] [PATCH v4 13/13] test-qga: Actually test 0xff sync bytes Eric Blake
2017-04-12 6:54 ` [Qemu-devel] [PATCH v4 00/13] qapi-related cleanups 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=20170411185034.13460-11-eblake@redhat.com \
--to=eblake@redhat.com \
--cc=armbru@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@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 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).