diff options
author | Jens Axboe <axboe@kernel.dk> | 2017-11-02 09:04:56 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2017-11-02 09:04:56 -0600 |
commit | 4d832322bf67a8a496bee049bc7dd9a2fdd828a2 (patch) | |
tree | 46be143430cc1a3095e662019f486050e1baea40 /file.h | |
parent | 3a03f0cf8005221d90045bed762e7d5e38f944fb (diff) | |
download | fio-4d832322bf67a8a496bee049bc7dd9a2fdd828a2.tar.gz fio-4d832322bf67a8a496bee049bc7dd9a2fdd828a2.tar.bz2 |
filesetup: change random file init to be bool based
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,7 +209,7 @@ extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir); extern void unlock_file(struct thread_data *, struct fio_file *); extern void unlock_file_all(struct thread_data *, struct fio_file *); extern int add_dir_files(struct thread_data *, const char *); -extern int init_random_map(struct thread_data *); +extern bool init_random_map(struct thread_data *); extern void dup_files(struct thread_data *, struct thread_data *); extern int get_fileno(struct thread_data *, const char *); extern void free_release_files(struct thread_data *); |