From a5bfd33afa20233b71aa8cd16ceb29012b9a8c80 Mon Sep 17 00:00:00 2001 From: Klaus Jensen Date: Thu, 30 Jan 2020 09:49:41 +0100 Subject: [PATCH] common/fio: do not use norandommap with verify As per the fio documentation, using norandommap with an async I/O engine and I/O depth > 1, can cause verification errors. Signed-off-by: Klaus Jensen --- common/fio | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/fio b/common/fio index 2e81b26..8bfad42 100644 --- a/common/fio +++ b/common/fio @@ -180,7 +180,7 @@ _run_fio_rand_io() { _run_fio_verify_io() { _run_fio --name=verify --rw=randwrite --direct=1 --ioengine=libaio --bs=4k \ - --norandommap --iodepth=16 --verify=crc32c "$@" + --iodepth=16 --verify=crc32c "$@" } _fio_perf_report() { -- 2.49.0