Various cleanups
[fio.git] / iolog.h
CommitLineData
5995a6a4
JA
1#ifndef FIO_IOLOG_H
2#define FIO_IOLOG_H
3
05775438 4#include "lib/rbtree.h"
c7c6cb4c 5#include "lib/ieee754.h"
836fcc0f 6#include "flist.h"
ec41265e 7#include "ioengine.h"
802ad4a8 8
5995a6a4
JA
9/*
10 * Use for maintaining statistics
11 */
12struct io_stat {
7b9f733a
JA
13 uint64_t max_val;
14 uint64_t min_val;
15 uint64_t samples;
5995a6a4 16
802ad4a8
JA
17 fio_fp64_t mean;
18 fio_fp64_t S;
5995a6a4
JA
19};
20
1e613c9c
KC
21struct io_hist {
22 uint64_t samples;
23 unsigned long hist_last;
24};
25
5995a6a4
JA
26/*
27 * A single data sample
28 */
29struct io_sample {
1b42725f
JA
30 uint64_t time;
31 uint64_t val;
b26317c9 32 uint32_t __ddir;
1b42725f 33 uint32_t bs;
5995a6a4
JA
34};
35
ae588852
JA
36struct io_sample_offset {
37 struct io_sample s;
38 uint64_t offset;
39};
40
ea51b956
JA
41enum {
42 IO_LOG_TYPE_LAT = 1,
43 IO_LOG_TYPE_CLAT,
44 IO_LOG_TYPE_SLAT,
45 IO_LOG_TYPE_BW,
46 IO_LOG_TYPE_IOPS,
1e613c9c 47 IO_LOG_TYPE_HIST,
ea51b956
JA
48};
49
6d37f67f 50#define DEF_LOG_ENTRIES 1024
7e419452
JA
51#define MAX_LOG_ENTRIES (1024 * DEF_LOG_ENTRIES)
52
7e419452
JA
53struct io_logs {
54 struct flist_head list;
55 uint64_t nr_samples;
56 uint64_t max_samples;
57 void *log;
58};
6d37f67f 59
5995a6a4
JA
60/*
61 * Dynamically growing data sample log
62 */
63struct io_log {
b8bc8cba
JA
64 /*
65 * Entries already logged
66 */
7e419452
JA
67 struct flist_head io_logs;
68 uint32_t cur_log_max;
b8bc8cba 69
1fed2080
JA
70 /*
71 * When the current log runs out of space, store events here until
72 * we have a chance to regrow
73 */
74 struct io_logs *pending;
75
b26317c9
JA
76 unsigned int log_ddir_mask;
77
cb7e0ace
JA
78 char *filename;
79
aee2ab67
JA
80 struct thread_data *td;
81
1b42725f 82 unsigned int log_type;
ea51b956 83
3c568239
JA
84 /*
85 * If we fail extending the log, stop collecting more entries.
86 */
7e419452 87 bool disabled;
3c568239 88
ae588852
JA
89 /*
90 * Log offsets
91 */
92 unsigned int log_offset;
93
aee2ab67
JA
94 /*
95 * Max size of log entries before a chunk is compressed
96 */
97 unsigned int log_gz;
98
b26317c9
JA
99 /*
100 * Don't deflate for storing, just store the compressed bits
101 */
102 unsigned int log_gz_store;
103
b8bc8cba
JA
104 /*
105 * Windowed average, for logging single entries average over some
106 * period of time.
107 */
6eaf09d6 108 struct io_stat avg_window[DDIR_RWDIR_CNT];
b8bc8cba
JA
109 unsigned long avg_msec;
110 unsigned long avg_last;
aee2ab67 111
8aa89d70
JA
112 /*
113 * Windowed latency histograms, for keeping track of when we need to
114 * save a copy of the histogram every approximately hist_msec
115 * milliseconds.
116 */
1e613c9c
KC
117 struct io_hist hist_window[DDIR_RWDIR_CNT];
118 unsigned long hist_msec;
119 int hist_coarseness;
120
aee2ab67
JA
121 pthread_mutex_t chunk_lock;
122 unsigned int chunk_seq;
123 struct flist_head chunk_list;
5995a6a4
JA
124};
125
49e98daa
JA
126/*
127 * If the upper bit is set, then we have the offset as well
128 */
129#define LOG_OFFSET_SAMPLE_BIT 0x80000000U
130#define io_sample_ddir(io) ((io)->__ddir & ~LOG_OFFSET_SAMPLE_BIT)
b26317c9
JA
131
132static inline void io_sample_set_ddir(struct io_log *log,
133 struct io_sample *io,
134 enum fio_ddir ddir)
135{
136 io->__ddir = ddir | log->log_ddir_mask;
137}
138
ae588852
JA
139static inline size_t __log_entry_sz(int log_offset)
140{
141 if (log_offset)
142 return sizeof(struct io_sample_offset);
143 else
144 return sizeof(struct io_sample);
145}
146
147static inline size_t log_entry_sz(struct io_log *log)
148{
149 return __log_entry_sz(log->log_offset);
150}
151
152static inline struct io_sample *__get_sample(void *samples, int log_offset,
153 uint64_t sample)
154{
6f9bbb55
CB
155 uint64_t sample_offset = sample * __log_entry_sz(log_offset);
156 return (struct io_sample *) ((char *) samples + sample_offset);
ae588852
JA
157}
158
7e419452
JA
159struct io_logs *iolog_cur_log(struct io_log *);
160uint64_t iolog_nr_samples(struct io_log *);
1fed2080 161void regrow_logs(struct thread_data *);
7e419452 162
ae588852 163static inline struct io_sample *get_sample(struct io_log *iolog,
7e419452 164 struct io_logs *cur_log,
ae588852
JA
165 uint64_t sample)
166{
7e419452 167 return __get_sample(cur_log->log, iolog->log_offset, sample);
ae588852
JA
168}
169
0d29de83
JA
170enum {
171 IP_F_ONRB = 1,
172 IP_F_ONLIST = 2,
173 IP_F_TRIMMED = 4,
f9401285 174 IP_F_IN_FLIGHT = 8,
0d29de83
JA
175};
176
5995a6a4
JA
177/*
178 * When logging io actions, this matches a single sent io_u
179 */
180struct io_piece {
181 union {
182 struct rb_node rb_node;
183 struct flist_head list;
184 };
0d29de83 185 struct flist_head trim_list;
5995a6a4
JA
186 union {
187 int fileno;
188 struct fio_file *file;
189 };
190 unsigned long long offset;
da0a7bd2 191 unsigned short numberio;
5995a6a4 192 unsigned long len;
a917a8b3 193 unsigned int flags;
5995a6a4
JA
194 enum fio_ddir ddir;
195 union {
196 unsigned long delay;
197 unsigned int file_action;
198 };
199};
200
201/*
202 * Log exports
203 */
204enum file_log_act {
205 FIO_LOG_ADD_FILE,
206 FIO_LOG_OPEN_FILE,
207 FIO_LOG_CLOSE_FILE,
208 FIO_LOG_UNLINK_FILE,
209};
210
8062f527 211struct io_u;
5995a6a4 212extern int __must_check read_iolog_get(struct thread_data *, struct io_u *);
1f440ece 213extern void log_io_u(const struct thread_data *, const struct io_u *);
5995a6a4
JA
214extern void log_file(struct thread_data *, struct fio_file *, enum file_log_act);
215extern int __must_check init_iolog(struct thread_data *td);
216extern void log_io_piece(struct thread_data *, struct io_u *);
890b6656 217extern void unlog_io_piece(struct thread_data *, struct io_u *);
1f440ece 218extern void trim_io_piece(struct thread_data *, const struct io_u *);
5995a6a4
JA
219extern void queue_io_piece(struct thread_data *, struct io_piece *);
220extern void prune_io_piece_log(struct thread_data *);
221extern void write_iolog_close(struct thread_data *);
24660963 222extern int iolog_compress_init(struct thread_data *, struct sk_out *);
155f2f02 223extern void iolog_compress_exit(struct thread_data *);
0cba0f91 224extern size_t log_chunk_sizes(struct io_log *);
5995a6a4 225
b26317c9
JA
226#ifdef CONFIG_ZLIB
227extern int iolog_file_inflate(const char *);
228#endif
229
5995a6a4
JA
230/*
231 * Logging
232 */
aee2ab67
JA
233struct log_params {
234 struct thread_data *td;
235 unsigned long avg_msec;
1e613c9c
KC
236 unsigned long hist_msec;
237 int hist_coarseness;
aee2ab67
JA
238 int log_type;
239 int log_offset;
240 int log_gz;
b26317c9 241 int log_gz_store;
aee2ab67
JA
242 int log_compress;
243};
244
a47591e4
JA
245static inline bool per_unit_log(struct io_log *log)
246{
247 return log && !log->avg_msec;
248}
249
b392f36d
JA
250static inline bool inline_log(struct io_log *log)
251{
252 return log->log_type == IO_LOG_TYPE_LAT ||
253 log->log_type == IO_LOG_TYPE_CLAT ||
254 log->log_type == IO_LOG_TYPE_SLAT;
255}
256
a47591e4 257extern void finalize_logs(struct thread_data *td, bool);
aee2ab67 258extern void setup_log(struct io_log **, struct log_params *, const char *);
60a25727 259extern void flush_log(struct io_log *, bool);
bead01d7 260extern void flush_samples(FILE *, void *, uint64_t);
518dac09 261extern void free_log(struct io_log *);
a47591e4
JA
262extern void fio_writeout_logs(bool);
263extern void td_writeout_logs(struct thread_data *, bool);
7e419452 264extern int iolog_cur_flush(struct io_log *, struct io_logs *);
5995a6a4 265
0d29de83
JA
266static inline void init_ipo(struct io_piece *ipo)
267{
268 memset(ipo, 0, sizeof(*ipo));
269 INIT_FLIST_HEAD(&ipo->trim_list);
270}
271
0cba0f91
JA
272struct iolog_compress {
273 struct flist_head list;
274 void *buf;
275 size_t len;
276 unsigned int seq;
277};
278
5995a6a4 279#endif