From 3a30c53bf25c23a963aaa547098dcceff2c33baf Mon Sep 17 00:00:00 2001 From: Symious <14933944+symious@users.noreply.github.com> Date: Tue, 11 Mar 2025 10:41:13 +0800 Subject: [PATCH] Remove FIO_SYNCIO flag (#138) --- benchmarks/fio_usrbio/hf3fs_usrbio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/fio_usrbio/hf3fs_usrbio.cpp b/benchmarks/fio_usrbio/hf3fs_usrbio.cpp index 7568fbd..9f83c93 100644 --- a/benchmarks/fio_usrbio/hf3fs_usrbio.cpp +++ b/benchmarks/fio_usrbio/hf3fs_usrbio.cpp @@ -266,7 +266,7 @@ void get_ioengine(struct ioengine_ops **ioengine_ptr) { ioengine.name = "hf3fs_usrbio", ioengine.version = FIO_IOOPS_VERSION; - ioengine.flags = FIO_SYNCIO | FIO_NODISKUTIL; + ioengine.flags = FIO_NODISKUTIL; ioengine.init = hf3fs_usrbio_init; ioengine.queue = hf3fs_usrbio_queue; ioengine.commit = hf3fs_usrbio_commit;