io_u: residiual size should be unsigned long long
[fio.git] / blktrace.h
1 #ifndef FIO_BLKTRACE_H
2 #define FIO_BLKTRACE_H
3
4 #ifdef FIO_HAVE_BLKTRACE
5
6 bool is_blktrace(const char *, int *);
7 bool load_blktrace(struct thread_data *, const char *, int);
8
9 #else
10
11 static inline bool is_blktrace(const char *fname, int *need_swap)
12 {
13         return false;
14 }
15
16 static inline bool load_blktrace(struct thread_data *td, const char *fname,
17                                  int need_swap)
18 {
19         return false;
20 }
21
22 #endif
23 #endif