io_uring: update to kernel struct io_uring_params
[fio.git] / filehash.h
CommitLineData
380065aa
JA
1#ifndef FIO_FILE_HASH_H
2#define FIO_FILE_HASH_H
3
1b2a83dc
JA
4#include "lib/types.h"
5
63a26e05 6extern void file_hash_init(void);
5e1d306e 7extern void file_hash_exit(void);
380065aa
JA
8extern 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 *);
90426237
JA
11extern void fio_file_hash_lock(void);
12extern void fio_file_hash_unlock(void);
1b2a83dc 13extern bool file_bloom_exists(const char *, bool);
380065aa
JA
14
15#endif