Option --size was not specified to the fio command of test case #48. It resulted in write operations to all available sequential write required zones and relaxed zone locking test condition. Specify the option to limit test target to 16 zones so that zone locking is tested with expected condition. Fixes: 3bd2078bdd1c ("zbd: add test for stressing zone locking") Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@xxxxxxx> --- t/zbd/test-zbd-support | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/zbd/test-zbd-support b/t/zbd/test-zbd-support index 248423bb..acde3b3a 100755 --- a/t/zbd/test-zbd-support +++ b/t/zbd/test-zbd-support @@ -913,7 +913,7 @@ test48() { for ((i=0;i<jobs;i++)); do opts+=("--name=job$i" "--filename=$dev" "--offset=$off" "--bs=16K") opts+=("--io_size=$zone_size" "--iodepth=256" "--thread=1") - opts+=("--group_reporting=1") + opts+=("--size=$size" "--group_reporting=1") # max_open_zones is already specified opts+=($(job_var_opts_exclude "--max_open_zones")) done -- 2.26.2