From: Kevin Wolf <kwolf@redhat.com>
To: Pavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru>
Cc: edgar.iglesias@xilinx.com, peter.maydell@linaro.org,
igor.rubinov@gmail.com, mark.burton@greensocs.com,
real@ispras.ru, hines@cert.org, qemu-devel@nongnu.org,
maria.klimushenkova@ispras.ru, stefanha@redhat.com,
pbonzini@redhat.com, batuzovk@ispras.ru, alex.bennee@linaro.org,
fred.konrad@greensocs.com
Subject: Re: [Qemu-devel] [PATCH v3 5/5] replay: introduce block devices record/replay
Date: Wed, 9 Mar 2016 12:43:21 +0100 [thread overview]
Message-ID: <20160309114321.GE5205@noname.redhat.com> (raw)
In-Reply-To: <20160301110803.10104.77305.stgit@PASHA-ISP>
Am 01.03.2016 um 12:08 hat Pavel Dovgalyuk geschrieben:
> This patch introduces block driver that implement recording
> and replaying of block devices' operations.
> All block completion operations are added to the queue.
> Queue is flushed at checkpoints and information about processed requests
> is recorded to the log. In replay phase the queue is matched with
> events read from the log. Therefore block devices requests are processed
> deterministically.
>
> Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
I like this new version much better than the old one. :-)
> +static int blkreplay_open(BlockDriverState *bs, QDict *options, int flags,
> + Error **errp)
> +{
> + Error *local_err = NULL;
> + int ret;
> +
> + /* Open the image file */
> + bs->file = bdrv_open_child(NULL, options, "image",
> + bs, &child_file, false, &local_err);
> + if (local_err) {
> + ret = -EINVAL;
> + error_propagate(errp, local_err);
> + goto fail;
> + }
> +
> + ret = 0;
> +fail:
> + if (ret < 0) {
> + bdrv_unref_child(bs, bs->file);
This is unnecessary because in error cases, bdrv_open_child() returns
NULL. On the other hand, bdrv_unref_child() accepts a NULL child and
just doesn't do anything then, so it's harmless.
> + }
> + return ret;
> +}
> +
> +static void blkreplay_close(BlockDriverState *bs)
> +{
> +}
> +
> +static int64_t blkreplay_getlength(BlockDriverState *bs)
> +{
> + return bdrv_getlength(bs->file->bs);
> +}
> +
> +static void blkreplay_bh_cb(void *opaque)
> +{
> + Request *req = opaque;
> + qemu_coroutine_enter(req->co, NULL);
> + qemu_bh_delete(req->bh);
> + g_free(req);
> +}
Maybe add a comment here that explains why the BH exists (forcing the
coroutine into its I/O thread, if I understand correctly).
> +static void block_request_create(uint64_t reqid, BlockDriverState *bs,
> + Coroutine *co)
> +{
> + Request *req = g_malloc0(sizeof(Request));
> + req->co = co;
> + req->bh = aio_bh_new(bdrv_get_aio_context(bs), blkreplay_bh_cb, req);
g_malloc0() zeroes all fields and then you immediately overwrite them,
so this is useless work. If you just want to be protected when adding
new fields, you could consider this instead:
Request *req = g_new(Request, 1);
*req = (Request) {
.co = co,
.bh = aio_bh_new(bdrv_get_aio_context(bs), blkreplay_bh_cb, req),
};
It's just a suggestion, though, feel free to change it or leave it.
> + replay_block_event(req->bh, reqid);
> +}
> +
> +static int coroutine_fn blkreplay_co_readv(BlockDriverState *bs,
> + int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
> +{
> + uint64_t reqid = request_id++;
> +
> + bdrv_co_readv(bs->file->bs, sector_num, nb_sectors, qiov);
> + block_request_create(reqid, bs, qemu_coroutine_self());
> + qemu_coroutine_yield();
> +
> + return 0;
> +}
Error handling is broken here. You need to forward the return value of
bdrv_co_readv() to the caller.
> +
> +static int coroutine_fn blkreplay_co_writev(BlockDriverState *bs,
> + int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
> +{
> + uint64_t reqid = request_id++;
> +
> + bdrv_co_writev(bs->file->bs, sector_num, nb_sectors, qiov);
> + block_request_create(reqid, bs, qemu_coroutine_self());
> + qemu_coroutine_yield();
> +
> + return 0;
> +}
Same here.
> +static int coroutine_fn blkreplay_co_write_zeroes(BlockDriverState *bs,
> + int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
> +{
> + uint64_t reqid = request_id++;
> +
> + bdrv_co_write_zeroes(bs->file->bs, sector_num, nb_sectors, flags);
> + block_request_create(reqid, bs, qemu_coroutine_self());
> + qemu_coroutine_yield();
> +
> + return 0;
> +}
And here.
> +static int coroutine_fn blkreplay_co_discard(BlockDriverState *bs,
> + int64_t sector_num, int nb_sectors)
> +{
> + uint64_t reqid = request_id++;
> +
> + bdrv_co_discard(bs->file->bs, sector_num, nb_sectors);
> + block_request_create(reqid, bs, qemu_coroutine_self());
> + qemu_coroutine_yield();
> +
> + return 0;
> +}
Here, too.
> +static int coroutine_fn blkreplay_co_flush(BlockDriverState *bs)
> +{
> + uint64_t reqid = request_id++;
> +
> + bdrv_co_flush(bs->file->bs);
> + block_request_create(reqid, bs, qemu_coroutine_self());
> + qemu_coroutine_yield();
> +
> + return 0;
> +}
And finally here as well.
Kevin
next prev parent reply other threads:[~2016-03-09 11:43 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-01 11:07 [Qemu-devel] [PATCH v3 0/5] Deterministic replay extensions Pavel Dovgalyuk
2016-03-01 11:07 ` [Qemu-devel] [PATCH v3 1/5] replay: character devices Pavel Dovgalyuk
2016-03-01 11:07 ` [Qemu-devel] [PATCH v3 2/5] icount: remove obsolete warp call Pavel Dovgalyuk
2016-03-09 12:05 ` Paolo Bonzini
2016-03-01 11:07 ` [Qemu-devel] [PATCH v3 3/5] replay: introduce new checkpoint for icount warp Pavel Dovgalyuk
2016-03-09 12:03 ` Paolo Bonzini
2016-03-10 9:10 ` Pavel Dovgalyuk
2016-03-10 10:24 ` Paolo Bonzini
2016-03-01 11:07 ` [Qemu-devel] [PATCH v3 4/5] block: add flush callback Pavel Dovgalyuk
2016-03-09 11:25 ` Kevin Wolf
2016-03-01 11:08 ` [Qemu-devel] [PATCH v3 5/5] replay: introduce block devices record/replay Pavel Dovgalyuk
2016-03-09 11:43 ` Kevin Wolf [this message]
2016-03-10 6:15 ` Pavel Dovgalyuk
2016-03-07 7:21 ` [Qemu-devel] [PATCH v3 0/5] Deterministic replay extensions dovgaluk
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=20160309114321.GE5205@noname.redhat.com \
--to=kwolf@redhat.com \
--cc=Pavel.Dovgaluk@ispras.ru \
--cc=alex.bennee@linaro.org \
--cc=batuzovk@ispras.ru \
--cc=edgar.iglesias@xilinx.com \
--cc=fred.konrad@greensocs.com \
--cc=hines@cert.org \
--cc=igor.rubinov@gmail.com \
--cc=maria.klimushenkova@ispras.ru \
--cc=mark.burton@greensocs.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=real@ispras.ru \
--cc=stefanha@redhat.com \
/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).