diff options
author | Jens Axboe <axboe@kernel.dk> | 2012-02-01 20:05:34 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2012-02-01 20:05:34 +0100 |
commit | 0e280eef250c3026e57445c9ebf1e2bbf31cd561 (patch) | |
tree | 6a012008c69f03c84c30278fca4f861bf4d80196 /file.h | |
parent | 0329ecda39a8ed42e173d25e16d39c968568d783 (diff) | |
download | fio-0e280eef250c3026e57445c9ebf1e2bbf31cd561.tar.gz fio-0e280eef250c3026e57445c9ebf1e2bbf31cd561.tar.bz2 |
Grow file num_maps to unsigned long
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -107,9 +107,9 @@ struct fio_file { * block map for random io */ unsigned long *file_map; - unsigned int num_maps; - unsigned int last_free_lookup; - unsigned int failed_rands; + unsigned long num_maps; + unsigned long last_free_lookup; + unsigned failed_rands; int references; enum fio_file_flags flags; |