Gentle ping.
Would you mind review this patch for zbc devices?
Thanks,
Daejun
> This patch enables mode sense for zbc devices.
>
> Signed-off-by: Daejun Park
> ---
> hw/scsi/scsi-disk.c 13 -
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/
This patch enables zoned ufs support.
By setting the LU parameter, each LU can be a host-managed zoned device.
This patch manages the zone condition and write pointer of each zone for
a zoned LU. It supports the report zones and reset write pointer commands
for Zoned LUs.
Signed-off-by: Daejun
This patch enables mode sense for zbc devices.
Signed-off-by: Daejun Park
---
hw/scsi/scsi-disk.c | 13 -
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c
index 6691f5edb8..f1ecb77317 100644
--- a/hw/scsi/scsi-disk.c
+++ b/hw
This patch includes the following tests
Test VPD page and report zones
Test write and unaligned write error
Signed-off-by: Daejun Park
---
tests/qtest/ufs-test.c | 178 +
1 file changed, 178 insertions(+)
diff --git a/tests/qtest/ufs-test.c b/tests
This patch enables zoned support for UFS devices.
By applying this patch, a QEMU run can use parameters to configure whether
each LU of each UFS is zoned, and the capacity, size, and max open zones.
Zoned UFS is implemented by referencing ZBC2.
(https://www.t10.org/members/w_zbc2.htm)
Daejun