blob: f316b208481c902d010e707f6f6ceb4e602a209a [file] [log] [blame]
Jens Axboe380065a2008-03-01 18:56:24 +01001#ifndef FIO_FILE_HASH_H
2#define FIO_FILE_HASH_H
3
4extern unsigned int file_hash_size;
5
6extern void file_hash_init(void *);
Jens Axboe5e1d3062008-05-23 11:55:53 +02007extern void file_hash_exit(void);
Jens Axboe380065a2008-03-01 18:56:24 +01008extern struct fio_file *lookup_file_hash(const char *);
9extern struct fio_file *add_file_hash(struct fio_file *);
10extern void remove_file_hash(struct fio_file *);
Jens Axboe90426232014-04-01 12:28:47 -060011extern void fio_file_hash_lock(void);
12extern void fio_file_hash_unlock(void);
Jens Axboe380065a2008-03-01 18:56:24 +010013
14#endif