From: "Benoît Canet" <benoit.canet@irqsave.net>
To: Jeff Cody <jcody@redhat.com>
Cc: kwolf@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH 2/2] block: remove qcow2 .bdrv_make_empty implementation
Date: Tue, 28 Jan 2014 01:36:10 +0100 [thread overview]
Message-ID: <20140128003609.GC15867@irqsave.net> (raw)
In-Reply-To: <7dd2c1ffc9826a99ce82cc4408c5a7ccc15f1133.1390856648.git.jcody@redhat.com>
Le Monday 27 Jan 2014 à 16:09:13 (-0500), Jeff Cody a écrit :
> The QCOW2 .bdrv_make_empty implementation always returns 0 for success,
> but does not actually do anything.
>
> The proper way to not support an optional driver function stub is to
> just not implement it, so let's remove the stub.
>
> Signed-off-by: Jeff Cody <jcody@redhat.com>
> ---
> block/qcow2.c | 21 ---------------------
> 1 file changed, 21 deletions(-)
>
> diff --git a/block/qcow2.c b/block/qcow2.c
> index 2da62b8..99a1ad1 100644
> --- a/block/qcow2.c
> +++ b/block/qcow2.c
> @@ -1689,26 +1689,6 @@ static int qcow2_create(const char *filename, QEMUOptionParameter *options,
> return ret;
> }
>
> -static int qcow2_make_empty(BlockDriverState *bs)
> -{
> -#if 0
> - /* XXX: not correct */
> - BDRVQcowState *s = bs->opaque;
> - uint32_t l1_length = s->l1_size * sizeof(uint64_t);
> - int ret;
> -
> - memset(s->l1_table, 0, l1_length);
> - if (bdrv_pwrite(bs->file, s->l1_table_offset, s->l1_table, l1_length) < 0)
> - return -1;
> - ret = bdrv_truncate(bs->file, s->l1_table_offset + l1_length);
> - if (ret < 0)
> - return ret;
> -
> - l2_cache_reset(bs);
> -#endif
> - return 0;
> -}
> -
> static coroutine_fn int qcow2_co_write_zeroes(BlockDriverState *bs,
> int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
> {
> @@ -2252,7 +2232,6 @@ static BlockDriver bdrv_qcow2 = {
> .bdrv_has_zero_init = bdrv_has_zero_init_1,
> .bdrv_co_get_block_status = qcow2_co_get_block_status,
> .bdrv_set_key = qcow2_set_key,
> - .bdrv_make_empty = qcow2_make_empty,
>
> .bdrv_co_readv = qcow2_co_readv,
> .bdrv_co_writev = qcow2_co_writev,
> --
> 1.8.3.1
>
>
Reviewed-by: Benoit Canet <benoit@irqsave.net>
next prev parent reply other threads:[~2014-01-28 0:36 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-27 21:09 [Qemu-devel] [PATCH 0/2] Remove unsupported / empty .bdrv_make_empty functions Jeff Cody
2014-01-27 21:09 ` [Qemu-devel] [PATCH 1/2] block: remove QED .bdrv_make_empty implementation Jeff Cody
2014-01-28 0:35 ` Benoît Canet
2014-01-27 21:09 ` [Qemu-devel] [PATCH 2/2] block: remove qcow2 " Jeff Cody
2014-01-28 0:36 ` Benoît Canet [this message]
2014-01-27 21:13 ` [Qemu-devel] [PATCH 0/2] Remove unsupported / empty .bdrv_make_empty functions Eric Blake
2014-01-28 9:21 ` Kevin Wolf
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=20140128003609.GC15867@irqsave.net \
--to=benoit.canet@irqsave.net \
--cc=jcody@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--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).