X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.h;h=2fd354a94c742d52b210787f5cc8bcb6d0f9fb23;hp=c5e2bf13414ebbb58d186bb1cddaaabed2919e05;hb=f2a2ce0eedb44eaa8689e4cbfa77c79b1751b216;hpb=1ae83d45ed853cd73b95b89ae14cacac5b97187e diff --git a/fio.h b/fio.h index c5e2bf13..2fd354a9 100644 --- a/fio.h +++ b/fio.h @@ -40,7 +40,7 @@ struct thread_data; #include "stat.h" #include "flow.h" -#ifdef FIO_HAVE_SOLARISAIO +#ifdef CONFIG_SOLARISAIO #include #endif @@ -159,6 +159,7 @@ struct thread_options { unsigned int verify_async; unsigned long long verify_backlog; unsigned int verify_batch; + unsigned int experimental_verify; unsigned int use_thread; unsigned int unlink; unsigned int do_disk_util; @@ -236,6 +237,7 @@ struct thread_options { unsigned int disable_clat; unsigned int disable_slat; unsigned int disable_bw; + unsigned int unified_rw_rep; unsigned int gtod_reduce; unsigned int gtod_cpu; unsigned int gtod_offload; @@ -654,8 +656,6 @@ static inline int should_fsync(struct thread_data *td) { if (td->last_was_sync) return 0; - if (td->o.odirect) - return 0; if (td_write(td) || td_rw(td) || td->o.override_sync) return 1; @@ -791,7 +791,7 @@ static inline int __should_check_rate(struct thread_data *td, } static inline int should_check_rate(struct thread_data *td, - unsigned long *bytes_done) + uint64_t *bytes_done) { int ret = 0;