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