From: Damien Le Moal <damien.lemoal@opensource.wdc.com>
To: Sam Li <faithilikerun@gmail.com>, qemu-devel@nongnu.org
Cc: dmitry.fomichev@wdc.com, Markus Armbruster <armbru@redhat.com>,
Eric Blake <eblake@redhat.com>,
qemu-block@nongnu.org, Stefan Hajnoczi <stefanha@redhat.com>,
Kevin Wolf <kwolf@redhat.com>, Fam Zheng <fam@euphon.net>,
hare@suse.de, Hanna Reitz <hreitz@redhat.com>
Subject: Re: [PATCH v9 7/7] docs/zoned-storage: add zoned device documentation
Date: Sun, 11 Sep 2022 14:38:47 +0900 [thread overview]
Message-ID: <1058a61c-4b11-42c3-8f6c-a5296f8771d0@opensource.wdc.com> (raw)
In-Reply-To: <20220910052759.27517-8-faithilikerun@gmail.com>
On 2022/09/10 14:27, Sam Li wrote:
> Add the documentation about the zoned device support to virtio-blk
> emulation.
>
> Signed-off-by: Sam Li <faithilikerun@gmail.com>
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
> docs/devel/zoned-storage.rst | 41 ++++++++++++++++++++++++++
> docs/system/qemu-block-drivers.rst.inc | 6 ++++
> 2 files changed, 47 insertions(+)
> create mode 100644 docs/devel/zoned-storage.rst
>
> diff --git a/docs/devel/zoned-storage.rst b/docs/devel/zoned-storage.rst
> new file mode 100644
> index 0000000000..ead2d149cc
> --- /dev/null
> +++ b/docs/devel/zoned-storage.rst
> @@ -0,0 +1,41 @@
> +=============
> +zoned-storage
> +=============
> +
> +Zoned Block Devices (ZBDs) devide the LBA space into block regions called zones
> +that are larger than the LBA size. It can only allow sequential writes, which
s/It/They
> +reduces write amplification in SSDs, leading to higher throughput and increased
> +capacity. More details about ZBDs can be found at:
I would rephrase this like this, to be less assertive about the potential
benefits (as they depend on the vendor implementation):
..., which can reduce write amplification in SSDs, and potentially lead to
higher throughput and increased device capacity.
> +
> +https://zonedstorage.io/docs/introduction/zoned-storage
> +
> +1. Block layer APIs for zoned storage
> +-------------------------------------
> +QEMU block layer has three zoned storage model:
> +- BLK_Z_HM: This model only allows sequential writes access. It supports a set
> +of ZBD-specific I/O request that used by the host to manage device zones.
> +- BLK_Z_HA: It deals with both sequential writes and random writes access.
> +- BLK_Z_NONE: Regular block devices and drive-managed ZBDs are treated as
> +non-zoned devices.
> +
> +The block device information resides inside BlockDriverState. QEMU uses
> +BlockLimits struct(BlockDriverState::bl) that is continuously accessed by the
> +block layer while processing I/O requests. A BlockBackend has a root pointer to
> +a BlockDriverState graph(for example, raw format on top of file-posix). The
> +zoned storage information can be propagated from the leaf BlockDriverState all
> +the way up to the BlockBackend. If the zoned storage model in file-posix is
> +set to BLK_Z_HM, then block drivers will declare support for zoned host device.
> +
> +The block layer APIs support commands needed for zoned storage devices,
> +including report zones, four zone operations, and zone append.
> +
> +2. Emulating zoned storage controllers
> +--------------------------------------
> +When the BlockBackend's BlockLimits model reports a zoned storage device, users
> +like the virtio-blk emulation or the qemu-io-cmds.c utility can use block layer
> +APIs for zoned storage emulation or testing.
> +
> +For example, the command line for zone report testing a null_blk device of
> +qemu-io-cmds.c is:
> +$ path/to/qemu-io --image-opts driver=zoned_host_device,filename=/dev/nullb0 -c
> +"zrp offset nr_zones"
> diff --git a/docs/system/qemu-block-drivers.rst.inc b/docs/system/qemu-block-drivers.rst.inc
> index dfe5d2293d..0b97227fd9 100644
> --- a/docs/system/qemu-block-drivers.rst.inc
> +++ b/docs/system/qemu-block-drivers.rst.inc
> @@ -430,6 +430,12 @@ Hard disks
> you may corrupt your host data (use the ``-snapshot`` command
> line option or modify the device permissions accordingly).
>
> +Zoned block devices
> + Zoned block devices can be passed through to the guest if the emulated storage
> + controller supports zoned storage. Use ``--blockdev zoned_host_device,
> + node-name=drive0,filename=/dev/nullb0`` to pass through ``/dev/nullb0``
> + as ``drive0``.
> +
> Windows
> ^^^^^^^
>
--
Damien Le Moal
Western Digital Research
prev parent reply other threads:[~2022-09-11 5:55 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-10 5:27 [PATCH v9 0/7] Add support for zoned device Sam Li
2022-09-10 5:27 ` [PATCH v9 1/7] include: add zoned device structs Sam Li
2022-09-15 8:05 ` Eric Blake
2022-09-15 10:06 ` Sam Li
2022-09-16 15:16 ` Stefan Hajnoczi
2022-09-19 0:50 ` Sam Li
2022-09-19 8:04 ` Damien Le Moal
2022-09-19 8:06 ` Sam Li
2022-09-10 5:27 ` [PATCH v9 2/7] file-posix: introduce helper functions for sysfs attributes Sam Li
2022-09-11 4:56 ` Damien Le Moal
2022-09-10 5:27 ` [PATCH v9 3/7] block: add block layer APIs resembling Linux ZonedBlockDevice ioctls Sam Li
2022-09-11 5:31 ` Damien Le Moal
2022-09-11 6:33 ` Sam Li
2022-09-11 6:48 ` Damien Le Moal
2022-09-11 7:30 ` Sam Li
2022-09-11 7:02 ` Damien Le Moal
2022-09-16 16:00 ` Stefan Hajnoczi
2022-09-20 8:51 ` Klaus Jensen
2022-09-20 13:21 ` Sam Li
2022-09-21 4:44 ` Damien Le Moal
2022-09-21 9:08 ` Klaus Jensen
2022-09-10 5:27 ` [PATCH v9 4/7] raw-format: add zone operations to pass through requests Sam Li
2022-09-11 5:32 ` Damien Le Moal
2022-09-10 5:27 ` [PATCH v9 5/7] config: add check to block layer Sam Li
2022-09-11 5:34 ` Damien Le Moal
2022-09-11 6:54 ` Sam Li
2022-09-11 7:05 ` Damien Le Moal
2022-09-16 15:22 ` Stefan Hajnoczi
2022-09-10 5:27 ` [PATCH v9 6/7] qemu-iotests: test new zone operations Sam Li
2022-09-10 5:27 ` [PATCH v9 7/7] docs/zoned-storage: add zoned device documentation Sam Li
2022-09-11 5:38 ` Damien Le Moal [this message]
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=1058a61c-4b11-42c3-8f6c-a5296f8771d0@opensource.wdc.com \
--to=damien.lemoal@opensource.wdc.com \
--cc=armbru@redhat.com \
--cc=dmitry.fomichev@wdc.com \
--cc=eblake@redhat.com \
--cc=faithilikerun@gmail.com \
--cc=fam@euphon.net \
--cc=hare@suse.de \
--cc=hreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--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).