X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=thread_options.h;h=ed960eeb2861de263d3ac036d3e55483ab008396;hb=513e37eeb01a3037763124869dfcdd6152d92ab8;hp=38936e9a9e811e8e5d092a9de08eaefecff5f199;hpb=61b9861d45dcd6be23c527861b32aa36bcd1b682;p=fio.git diff --git a/thread_options.h b/thread_options.h index 38936e9a..ed960eeb 100644 --- a/thread_options.h +++ b/thread_options.h @@ -19,6 +19,7 @@ enum fio_memtype { MEM_SHMHUGE, /* use shared memory segments with huge pages */ MEM_MMAP, /* use anonynomous mmap */ MEM_MMAPHUGE, /* memory mapped huge file */ + MEM_MMAPSHARED, /* use mmap with shared flag */ }; #define ERROR_STR_MAX 128 @@ -54,7 +55,8 @@ struct thread_options { unsigned int iodepth; unsigned int iodepth_low; unsigned int iodepth_batch; - unsigned int iodepth_batch_complete; + unsigned int iodepth_batch_complete_min; + unsigned int iodepth_batch_complete_max; unsigned long long size; unsigned long long io_limit; @@ -299,7 +301,9 @@ struct thread_options_pack { uint32_t iodepth; uint32_t iodepth_low; uint32_t iodepth_batch; - uint32_t iodepth_batch_complete; + uint32_t iodepth_batch_complete_min; + uint32_t iodepth_batch_complete_max; + uint32_t __proper_alignment_for_64b; uint64_t size; uint64_t io_limit;