From 9158d2f7d9cea04a3f0cbe0817c697c0ba6e8b48 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 27 Oct 2006 14:27:39 +0200 Subject: [PATCH] [PATCH] Options must be integer Make all char options integers, to avoid having to introduce a char parse type. Signed-off-by: Jens Axboe --- fio.h | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/fio.h b/fio.h index f8b8e389..4af8a4df 100644 --- a/fio.h +++ b/fio.h @@ -187,21 +187,21 @@ struct thread_data { unsigned int ioprio; unsigned int last_was_sync; - unsigned char sequential; - unsigned char odirect; - unsigned char invalidate_cache; - unsigned char create_serialize; - unsigned char create_fsync; - unsigned char end_fsync; - unsigned char sync_io; - unsigned char verify; - unsigned char use_thread; - unsigned char unlink; - unsigned char do_disk_util; - unsigned char override_sync; - unsigned char rand_repeatable; - unsigned char write_lat_log; - unsigned char write_bw_log; + unsigned int sequential; + unsigned int odirect; + unsigned int invalidate_cache; + unsigned int create_serialize; + unsigned int create_fsync; + unsigned int end_fsync; + unsigned int sync_io; + unsigned int verify; + unsigned int use_thread; + unsigned int unlink; + unsigned int do_disk_util; + unsigned int override_sync; + unsigned int rand_repeatable; + unsigned int write_lat_log; + unsigned int write_bw_log; unsigned int bs; unsigned int min_bs; -- 2.25.1