[RFC v4 0/9] Add support for zoned device

2022-07-11 Thread Sam Li
This patch series adds support for zoned device to virtio-blk emulation. Zoned Storage can support sequential writes, which reduces write amplification in SSD, leading to higher write throughput and increased capacity. v4: - add block layer APIs (revision) - add configurations for zoned block devi

Re: [RFC v4 0/9] Add support for zoned device

2022-07-11 Thread Markus Armbruster
Sam Li writes: > This patch series adds support for zoned device to virtio-blk emulation. Zoned > Storage can support sequential writes, which reduces write amplification in > SSD, > leading to higher write throughput and increased capacity. Forgive me if this has already been discussed, or is

Re: [RFC v4 0/9] Add support for zoned device

2022-07-11 Thread Sam Li
Markus Armbruster 于2022年7月12日周二 13:47写道: > > Sam Li writes: > > > This patch series adds support for zoned device to virtio-blk emulation. > > Zoned > > Storage can support sequential writes, which reduces write amplification in > > SSD, > > leading to higher write throughput and increased capa

Re: [RFC v4 0/9] Add support for zoned device

2022-07-18 Thread Markus Armbruster
Sam Li writes: > Markus Armbruster 于2022年7月12日周二 13:47写道: >> >> Sam Li writes: >> >> > This patch series adds support for zoned device to virtio-blk emulation. >> > Zoned >> > Storage can support sequential writes, which reduces write amplification >> > in SSD, >> > leading to higher write th

Re: [RFC v4 0/9] Add support for zoned device

2022-07-27 Thread Stefan Hajnoczi
On Mon, 11 Jul 2022 at 22:17, Sam Li wrote: > > This patch series adds support for zoned device to virtio-blk emulation. Zoned > Storage can support sequential writes, which reduces write amplification in > SSD, > leading to higher write throughput and increased capacity. Please use "git rebase

Re: [RFC v4 0/9] Add support for zoned device

2022-07-27 Thread Stefan Hajnoczi
This patch series introduces the concept of zoned storage to the QEMU block layer. Documentation is needed so that users and developers know how to use and maintain this feature. As a minimum, let's document how to pass through zoned block devices on Linux: diff --git a/docs/system/qemu-block-dri

Re: [RFC v4 0/9] Add support for zoned device

2022-07-27 Thread Sam Li
Stefan Hajnoczi 于2022年7月27日周三 23:06写道: > > This patch series introduces the concept of zoned storage to the QEMU > block layer. Documentation is needed so that users and developers know > how to use and maintain this feature. > > As a minimum, let's document how to pass through zoned block devices