The following changes since commit 073974b24aac23610e9e13e3eb56438ad108ab31: filesetup: better handle non-uniform distributions (2023-04-20 15:24:39 +0000) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 9724b4f5ebf0841087c5a56c1d83efe0f4aeb6d7: Revert "zbd: Report the zone capacity" (2023-04-27 05:08:29 -0600) ---------------------------------------------------------------- Niklas Cassel (1): Revert "zbd: Report the zone capacity" zbd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/zbd.c b/zbd.c index f5fb923a..351b3971 100644 --- a/zbd.c +++ b/zbd.c @@ -804,8 +804,8 @@ static int parse_zone_info(struct thread_data *td, struct fio_file *f) goto out; } - dprint(FD_ZBD, "Device %s has %d zones of size %"PRIu64" KB and capacity %"PRIu64" KB\n", - f->file_name, nr_zones, zone_size / 1024, zones[0].capacity / 1024); + dprint(FD_ZBD, "Device %s has %d zones of size %"PRIu64" KB\n", + f->file_name, nr_zones, zone_size / 1024); zbd_info = scalloc(1, sizeof(*zbd_info) + (nr_zones + 1) * sizeof(zbd_info->zone_info[0]));