All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: Sam Li <faithilikerun@gmail.com>
Cc: qemu-devel@nongnu.org,
	Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>,
	dmitry.fomichev@wdc.com, Kevin Wolf <kwolf@redhat.com>,
	cassel@kernel.org, Markus Armbruster <armbru@redhat.com>,
	qemu-block@nongnu.org, dlemoal@kernel.org,
	Eric Blake <eblake@redhat.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	hare@suse.de, Hanna Reitz <hreitz@redhat.com>
Subject: Re: [PATCH v10 1/4] docs/qcow2: add the zoned format feature
Date: Thu, 14 May 2026 14:47:42 -0400	[thread overview]
Message-ID: <20260514184742.GB1535937@fedora> (raw)
In-Reply-To: <20260510175059.311814-2-faithilikerun@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3054 bytes --]

On Sun, May 10, 2026 at 07:50:56PM +0200, Sam Li wrote:
> Add the specs for the zoned format feature of the qcow2 driver.
> The qcow2 file then can emulate real zoned devices, either passed
> through by virtio-blk device or NVMe ZNS drive to the guest
> given zoned information.
> 
> Signed-off-by: Sam Li <faithilikerun@gmail.com>
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
>  docs/system/qemu-block-drivers.rst.inc | 42 ++++++++++++++++++++++++++
>  1 file changed, 42 insertions(+)
> 
> diff --git a/docs/system/qemu-block-drivers.rst.inc b/docs/system/qemu-block-drivers.rst.inc
> index 384e95ba76..5066c943d5 100644
> --- a/docs/system/qemu-block-drivers.rst.inc
> +++ b/docs/system/qemu-block-drivers.rst.inc
> @@ -172,6 +172,48 @@ This section describes each format and the options that are supported for it.
>      filename`` to check if the NOCOW flag is set or not (Capital 'C' is
>      NOCOW flag).
>  
> +  .. option:: zone.mode
> +    If this is set to ``host-managed``, the image is an emulated zoned
> +    block device. This option is only valid to emulated zoned device files.
> +
> +  .. option:: zone.size
> +
> +    The size of a zone in bytes. The device is divided into zones of this
> +    size with the exception of the last zone, which may be smaller.

This option is required when zone.mode=host-managed?

It would be useful to indicate whether each option listed here is
required or has a default value when absent.

> +
> +  .. option:: zone.capacity
> +
> +    The initial capacity value, in bytes, for all zones. The capacity must
> +    be less than or equal to zone size. If the last zone is smaller, then
> +    its capacity is capped.
> +
> +    The zone capacity is per zone and may be different between zones in real
> +    devices. QCow2 sets all zones to the same capacity.

This defaults to zone.size?

> +
> +  .. option:: zone.conventional_zones
> +
> +    The number of conventional zones of the zoned device.

This defaults to (size + size.size - 1) / zone.size?

> +
> +  .. option:: zone.max_active_zones
> +
> +    The limit of the zones with implicit open, explicit open or closed state.
> +
> +    The max active zones must be less or equal to the number of SWR
> +    (sequential write required) zones of the device.

This defaults to (size + size.size - 1) / zone.size?

> +
> +  .. option:: zone.max_open_zones
> +
> +    The maximal allowed open zones. The max open zones must not be larger than
> +    the max active zones.
> +
> +    If the limits of open zones or active zones are equal to the number of
> +    SWR zones, then it is the same as having no limits.

This defaults to max_active_zones?

> +  .. option:: zone.max_append_bytes
> +
> +    The number of bytes in a zone append request that can be issued to the
> +    device. It must be 512-byte aligned and less than the zone capacity.

Is there a default?

> +
>  .. program:: image-formats
>  .. option:: qed
>  
> -- 
> 2.43.0
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2026-05-14 18:48 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-10 17:50 [PATCH v10 0/4] Add full zoned storage emulation to qcow2 driver Sam Li
2026-05-10 17:50 ` [PATCH v10 1/4] docs/qcow2: add the zoned format feature Sam Li
2026-05-14 18:47   ` Stefan Hajnoczi [this message]
2026-05-10 17:50 ` [PATCH v10 2/4] qcow2: add configurations for zoned format extension Sam Li
2026-05-14 19:49   ` Stefan Hajnoczi
2026-05-10 17:50 ` [PATCH v10 3/4] qcow2: add zoned emulation capability Sam Li
2026-05-14 20:23   ` Stefan Hajnoczi
2026-05-10 17:50 ` [PATCH v10 4/4] iotests: test the zoned format feature for qcow2 file Sam Li
2026-05-14 18:38 ` [PATCH v10 0/4] Add full zoned storage emulation to qcow2 driver Stefan Hajnoczi

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=20260514184742.GB1535937@fedora \
    --to=stefanha@redhat.com \
    --cc=armbru@redhat.com \
    --cc=cassel@kernel.org \
    --cc=dlemoal@kernel.org \
    --cc=dmitry.fomichev@wdc.com \
    --cc=eblake@redhat.com \
    --cc=faithilikerun@gmail.com \
    --cc=hare@suse.de \
    --cc=hreitz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mst@redhat.com \
    --cc=pierrick.bouvier@oss.qualcomm.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.