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