server: convert iolog in place instead of copy allocating it
[fio.git] / thread_options.h
index d46da31b706e31dbd7a131ec2da372e4a060ce10..c0fd7e26fed0bfb92cf6ee67b50a4de0293ae0f3 100644 (file)
@@ -146,6 +146,8 @@ struct thread_options {
        unsigned int zero_buffers;
        unsigned int refill_buffers;
        unsigned int scramble_buffers;
+       unsigned int compress_percentage;
+       unsigned int compress_chunk;
        unsigned int time_based;
        unsigned int disable_lat;
        unsigned int disable_clat;
@@ -331,6 +333,8 @@ struct thread_options_pack {
        uint32_t zero_buffers;
        uint32_t refill_buffers;
        uint32_t scramble_buffers;
+       unsigned int compress_percentage;
+       unsigned int compress_chunk;
        uint32_t time_based;
        uint32_t disable_lat;
        uint32_t disable_clat;
@@ -406,5 +410,6 @@ struct thread_options_pack {
 
 extern void convert_thread_options_to_cpu(struct thread_options *o, struct thread_options_pack *top);
 extern void convert_thread_options_to_net(struct thread_options_pack *top, struct thread_options *);
+extern int fio_test_cconv(struct thread_options *);
 
 #endif