From d87d9c6c611f74a5888c74568d545be200139498 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sat, 30 May 2020 15:54:09 -0700 Subject: [PATCH] zbd: Fix zoned_block_device_info.zone_size documentation Commit ee3696bdfd84 changed the unit of 'zone_size' from 512 bytes into one byte. Bring the documentation of that member variable in sync with the code. Fixes: ee3696bdfd84 ("zbd: Use bytes unit") Signed-off-by: Bart Van Assche --- zbd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zbd.h b/zbd.h index 9c447af4..e942a7f6 100644 --- a/zbd.h +++ b/zbd.h @@ -49,7 +49,7 @@ struct fio_zone_info { * sequential write zones. * @mutex: Protects the modifiable members in this structure (refcount and * num_open_zones). - * @zone_size: size of a single zone in units of 512 bytes + * @zone_size: size of a single zone in bytes. * @sectors_with_data: total size of data in all zones in units of 512 bytes * @zone_size_log2: log2 of the zone size in bytes if it is a power of 2 or 0 * if the zone size is not a power of 2. -- 2.25.1