From: Eric Blake <eblake@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>, qemu-block@nongnu.org
Cc: mreitz@redhat.com, pkrempa@redhat.com, jcody@redhat.com,
jdurgin@redhat.com, mitake.hitoshi@lab.ntt.co.jp,
namei.unix@gmail.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 04/27] qcow2: Pass BlockdevCreateOptions to qcow2_create2()
Date: Thu, 8 Feb 2018 17:29:41 -0600 [thread overview]
Message-ID: <78712c7a-a8f0-5d7b-d1f5-d37fcb178655@redhat.com> (raw)
In-Reply-To: <20180208192328.16550-5-kwolf@redhat.com>
On 02/08/2018 01:23 PM, Kevin Wolf wrote:
> All of the simple options are now passed to qcow2_create2() in a
> BlockdevCreateOptions object. Still missing: node-name and the
> encryption options.
>
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
> block/qcow2.c | 190 ++++++++++++++++++++++++++++++++++++++++++++++------------
> 1 file changed, 152 insertions(+), 38 deletions(-)
>
> -static size_t qcow2_opt_get_cluster_size_del(QemuOpts *opts, Error **errp)
> +static bool validate_cluster_size(size_t cluster_size, Error **errp)
> {
> - size_t cluster_size;
> - int cluster_bits;
> -
> - cluster_size = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE,
> - DEFAULT_CLUSTER_SIZE);
> - cluster_bits = ctz32(cluster_size);
> + int cluster_bits = ctz32(cluster_size);
> if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
> (1 << cluster_bits) != cluster_size)
Pre-existing, but why are we manually calling ctz32() instead of using
is_power_of_2()?
> @@ -2720,10 +2726,92 @@ static int qcow2_create2(BlockDriverState *bs, int64_t total_size,
> */
> BlockBackend *blk;
> QCowHeader *header;
> + size_t cluster_size;
> + int version;
> + int refcount_order;
> uint64_t* refcount_table;
> Error *local_err = NULL;
> int ret;
>
> + /* Validate options and set default values */
> + assert(create_options->driver == BLOCKDEV_DRIVER_QCOW2);
> + qcow2_opts = &create_options->u.qcow2;
> +
> + if (!QEMU_IS_ALIGNED(qcow2_opts->size, BDRV_SECTOR_SIZE)) {
> + error_setg(errp, "Image size must be a multiple of 512 bytes");
> + ret = -EINVAL;
> + goto out;
> + }
This check looks new. Does it really belong in this patch? And it does
NOT match what qemu-img can currently do, nor the fact that qcow2
supports byte-based addressing:
$ qemu-img create -f qcow2 tmp 12345
Formatting 'tmp', fmt=qcow2 size=12345 cluster_size=65536
lazy_refcounts=off refcount_bits=16
> + if (!qcow2_opts->has_lazy_refcounts) {
> + qcow2_opts->lazy_refcounts = false;
> + }
> + if (version < 3 && qcow2_opts->lazy_refcounts) {
> + error_setg(errp, "Lazy refcounts only supported with compatibility "
> + "level 1.1 and above (use compat=1.1 or greater)");
Do we want to reword this error message at all, now that QMP spells it
'v3'? Should qemu-img be taught to accept 'compat=v3' as a synonym to
'compat=1.1'?
> + return -EINVAL;
> + }
> +
> + if (!qcow2_opts->has_refcount_bits) {
> + qcow2_opts->refcount_bits = 16;
> + }
> + if (qcow2_opts->refcount_bits > 64 ||
> + !is_power_of_2(qcow2_opts->refcount_bits))
> + {
> + error_setg(errp, "Refcount width must be a power of two and may not "
> + "exceed 64 bits");
> + return -EINVAL;
> + }
> + if (version < 3 && qcow2_opts->refcount_bits != 16) {
> + error_setg(errp, "Different refcount widths than 16 bits require "
> + "compatibility level 1.1 or above (use compat=1.1 or "
> + "greater)");
and again
> @@ -2978,9 +3068,33 @@ static int qcow2_create(const char *filename, QemuOpts *opts, Error **errp)
> }
>
> /* Create the qcow2 image (format layer) */
> - ret = qcow2_create2(bs, size, backing_file, backing_fmt, flags,
> - cluster_size, prealloc, opts, version, refcount_order,
> - encryptfmt, errp);
> + create_options = (BlockdevCreateOptions) {
> + .driver = BLOCKDEV_DRIVER_QCOW2,
> + .u.qcow2 = {
> + .file = &(BlockdevRef) {
> + .type = QTYPE_QSTRING,
> + .u.reference = bs->node_name,
> + },
> + .size = size,
> + .has_version = true,
> + .version = version == 2
> + ? BLOCKDEV_QCOW2_VERSION_V2
> + : BLOCKDEV_QCOW2_VERSION_V3,
> + .has_backing_file = (backing_file != NULL),
> + .backing_file = backing_file,
> + .has_backing_fmt = (backing_fmt != NULL),
I might have spelled it '= !!backing_fmt', but your way is fine too.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
next prev parent reply other threads:[~2018-02-08 23:29 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-08 19:23 [Qemu-devel] [PATCH 00/27] x-blockdev-create for protocols and qcow2 Kevin Wolf
2018-02-08 19:23 ` [Qemu-devel] [PATCH 01/27] block/qapi: Introduce BlockdevCreateOptions Kevin Wolf
2018-02-08 22:48 ` Eric Blake
2018-02-09 13:19 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 02/27] block/qapi: Add qcow2 create options to schema Kevin Wolf
2018-02-08 23:14 ` Eric Blake
2018-02-09 13:36 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 03/27] qcow2: Let qcow2_create() handle protocol layer Kevin Wolf
2018-02-09 13:57 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 04/27] qcow2: Pass BlockdevCreateOptions to qcow2_create2() Kevin Wolf
2018-02-08 23:29 ` Eric Blake [this message]
2018-02-09 14:00 ` Kevin Wolf
2018-02-09 14:12 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 05/27] qcow2: Use BlockdevRef in qcow2_create2() Kevin Wolf
2018-02-09 13:57 ` Eric Blake
2018-02-09 14:31 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 06/27] qcow2: Use QCryptoBlockCreateOptions " Kevin Wolf
2018-02-09 14:13 ` Eric Blake
2018-02-09 18:01 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 07/27] qcow2: Handle full/falloc preallocation " Kevin Wolf
2018-02-09 18:04 ` Max Reitz
2018-02-12 14:19 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 08/27] util: Add qemu_opts_to_qdict_filtered() Kevin Wolf
2018-02-09 18:07 ` Max Reitz
2018-02-15 19:33 ` Eric Blake
2018-02-08 19:23 ` [Qemu-devel] [PATCH 09/27] qdict: Introduce qdict_rename_keys() Kevin Wolf
2018-02-09 18:18 ` Max Reitz
2018-02-09 18:19 ` Max Reitz
2018-02-15 19:39 ` Eric Blake
2018-02-08 19:23 ` [Qemu-devel] [PATCH 10/27] qcow2: Use visitor for options in qcow2_create() Kevin Wolf
2018-02-09 18:43 ` Max Reitz
2018-02-15 19:51 ` Eric Blake
2018-02-08 19:23 ` [Qemu-devel] [PATCH 11/27] block: x-blockdev-create QMP command Kevin Wolf
2018-02-12 13:48 ` Max Reitz
2018-02-15 19:58 ` Eric Blake
2018-02-21 10:29 ` Kevin Wolf
2018-02-21 16:21 ` Eric Blake
2018-02-08 19:23 ` [Qemu-devel] [PATCH 12/27] file-posix: Support .bdrv_co_create Kevin Wolf
2018-02-12 13:55 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 13/27] file-win32: " Kevin Wolf
2018-02-12 13:57 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 14/27] gluster: " Kevin Wolf
2018-02-12 14:28 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 15/27] rbd: " Kevin Wolf
2018-02-12 15:16 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 16/27] nfs: Use QAPI options in nfs_client_open() Kevin Wolf
2018-02-12 15:36 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 17/27] nfs: Support .bdrv_co_create Kevin Wolf
2018-02-12 15:45 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 18/27] sheepdog: QAPIfy "redundacy" create option Kevin Wolf
2018-02-12 16:03 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 19/27] sheepdog: Support .bdrv_co_create Kevin Wolf
2018-02-12 16:43 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 20/27] ssh: Use QAPI BlockdevOptionsSsh object Kevin Wolf
2018-02-12 17:17 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 21/27] ssh: QAPIfy host-key-check option Kevin Wolf
2018-02-12 17:29 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 22/27] ssh: Pass BlockdevOptionsSsh to connect_to_ssh() Kevin Wolf
2018-02-12 17:35 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 23/27] ssh: Support .bdrv_co_create Kevin Wolf
2018-02-12 17:40 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 24/27] file-posix: Fix no-op bdrv_truncate() with falloc preallocation Kevin Wolf
2018-02-12 17:41 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 25/27] block: Fail bdrv_truncate() with negative size Kevin Wolf
2018-02-12 17:42 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 26/27] qemu-iotests: Test qcow2 over file image creation with QMP Kevin Wolf
2018-02-12 17:50 ` Max Reitz
2018-02-08 19:23 ` [Qemu-devel] [PATCH 27/27] qemu-iotests: Test ssh image creation over QMP Kevin Wolf
2018-02-12 17:56 ` Max Reitz
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=78712c7a-a8f0-5d7b-d1f5-d37fcb178655@redhat.com \
--to=eblake@redhat.com \
--cc=jcody@redhat.com \
--cc=jdurgin@redhat.com \
--cc=kwolf@redhat.com \
--cc=mitake.hitoshi@lab.ntt.co.jp \
--cc=mreitz@redhat.com \
--cc=namei.unix@gmail.com \
--cc=pkrempa@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).