blob: a1e32ae7335b0b439518f3e1940235c041158ab1 [file] [log] [blame]
Jens Axboe5995a6a2009-06-03 08:53:28 +02001#ifndef FIO_IOLOG_H
2#define FIO_IOLOG_H
3
Jens Axboe05775432012-03-21 14:07:11 +01004#include "lib/rbtree.h"
Jens Axboec7c6cb42011-10-13 14:12:40 +02005#include "lib/ieee754.h"
Jens Axboe836fcc02013-01-24 09:08:45 -07006#include "flist.h"
Jens Axboeec412652012-03-08 12:37:31 +01007#include "ioengine.h"
Jens Axboe802ad4a2011-10-05 09:51:58 +02008
Jens Axboe5995a6a2009-06-03 08:53:28 +02009/*
10 * Use for maintaining statistics
11 */
12struct io_stat {
Jens Axboe7b9f7332011-10-03 10:06:44 +020013 uint64_t max_val;
14 uint64_t min_val;
15 uint64_t samples;
Jens Axboe5995a6a2009-06-03 08:53:28 +020016
Jens Axboe802ad4a2011-10-05 09:51:58 +020017 fio_fp64_t mean;
18 fio_fp64_t S;
Jens Axboe5995a6a2009-06-03 08:53:28 +020019};
20
21/*
22 * A single data sample
23 */
24struct io_sample {
Jens Axboe1b427252012-03-14 15:03:03 +010025 uint64_t time;
26 uint64_t val;
Jens Axboebac4af12014-07-03 13:42:28 -060027 uint32_t __ddir;
Jens Axboe1b427252012-03-14 15:03:03 +010028 uint32_t bs;
Jens Axboe5995a6a2009-06-03 08:53:28 +020029};
30
Jens Axboeccefd5f2014-06-30 20:59:03 -060031struct io_sample_offset {
32 struct io_sample s;
33 uint64_t offset;
34};
35
Jens Axboeea51b952012-03-14 11:39:13 +010036enum {
37 IO_LOG_TYPE_LAT = 1,
38 IO_LOG_TYPE_CLAT,
39 IO_LOG_TYPE_SLAT,
40 IO_LOG_TYPE_BW,
41 IO_LOG_TYPE_IOPS,
42};
43
Jens Axboe5995a6a2009-06-03 08:53:28 +020044/*
45 * Dynamically growing data sample log
46 */
47struct io_log {
Jens Axboeb8bc8cb2011-12-01 09:04:31 +010048 /*
49 * Entries already logged
50 */
Jens Axboef2b9a672014-07-01 08:47:11 -060051 uint64_t nr_samples;
52 uint64_t max_samples;
Jens Axboeccefd5f2014-06-30 20:59:03 -060053 void *log;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +010054
Jens Axboebac4af12014-07-03 13:42:28 -060055 unsigned int log_ddir_mask;
56
Jens Axboe987c4f42014-07-01 16:29:12 -060057 char *filename;
58
Jens Axboe38a812d2014-07-03 09:10:39 -060059 struct thread_data *td;
60
Jens Axboe1b427252012-03-14 15:03:03 +010061 unsigned int log_type;
Jens Axboeea51b952012-03-14 11:39:13 +010062
Jens Axboeb8bc8cb2011-12-01 09:04:31 +010063 /*
Jens Axboe3c568232013-09-30 12:17:34 -060064 * If we fail extending the log, stop collecting more entries.
65 */
66 unsigned int disabled;
67
68 /*
Jens Axboeccefd5f2014-06-30 20:59:03 -060069 * Log offsets
70 */
71 unsigned int log_offset;
72
73 /*
Jens Axboe38a812d2014-07-03 09:10:39 -060074 * Max size of log entries before a chunk is compressed
75 */
76 unsigned int log_gz;
77
78 /*
Jens Axboebac4af12014-07-03 13:42:28 -060079 * Don't deflate for storing, just store the compressed bits
80 */
81 unsigned int log_gz_store;
82
83 /*
Jens Axboeb8bc8cb2011-12-01 09:04:31 +010084 * Windowed average, for logging single entries average over some
85 * period of time.
86 */
Shaohua Li6eaf09d2012-09-14 08:49:43 +020087 struct io_stat avg_window[DDIR_RWDIR_CNT];
Jens Axboeb8bc8cb2011-12-01 09:04:31 +010088 unsigned long avg_msec;
89 unsigned long avg_last;
Jens Axboe38a812d2014-07-03 09:10:39 -060090
91 pthread_mutex_t chunk_lock;
92 unsigned int chunk_seq;
93 struct flist_head chunk_list;
Jens Axboe5995a6a2009-06-03 08:53:28 +020094};
95
Jens Axboe238934c2014-07-03 18:01:11 -060096/*
97 * If the upper bit is set, then we have the offset as well
98 */
99#define LOG_OFFSET_SAMPLE_BIT 0x80000000U
100#define io_sample_ddir(io) ((io)->__ddir & ~LOG_OFFSET_SAMPLE_BIT)
Jens Axboebac4af12014-07-03 13:42:28 -0600101
102static inline void io_sample_set_ddir(struct io_log *log,
103 struct io_sample *io,
104 enum fio_ddir ddir)
105{
106 io->__ddir = ddir | log->log_ddir_mask;
107}
108
Jens Axboeccefd5f2014-06-30 20:59:03 -0600109static inline size_t __log_entry_sz(int log_offset)
110{
111 if (log_offset)
112 return sizeof(struct io_sample_offset);
113 else
114 return sizeof(struct io_sample);
115}
116
117static inline size_t log_entry_sz(struct io_log *log)
118{
119 return __log_entry_sz(log->log_offset);
120}
121
122static inline struct io_sample *__get_sample(void *samples, int log_offset,
123 uint64_t sample)
124{
125 return samples + sample * __log_entry_sz(log_offset);
126}
127
128static inline struct io_sample *get_sample(struct io_log *iolog,
129 uint64_t sample)
130{
131 return __get_sample(iolog->log, iolog->log_offset, sample);
132}
133
Jens Axboe0d29de82010-09-01 13:54:15 +0200134enum {
135 IP_F_ONRB = 1,
136 IP_F_ONLIST = 2,
137 IP_F_TRIMMED = 4,
Jens Axboef9401282014-02-06 12:17:37 -0700138 IP_F_IN_FLIGHT = 8,
Jens Axboe0d29de82010-09-01 13:54:15 +0200139};
140
Jens Axboe5995a6a2009-06-03 08:53:28 +0200141/*
142 * When logging io actions, this matches a single sent io_u
143 */
144struct io_piece {
145 union {
146 struct rb_node rb_node;
147 struct flist_head list;
148 };
Jens Axboe0d29de82010-09-01 13:54:15 +0200149 struct flist_head trim_list;
Jens Axboe5995a6a2009-06-03 08:53:28 +0200150 union {
151 int fileno;
152 struct fio_file *file;
153 };
154 unsigned long long offset;
Juan Casseda0a7bd2013-09-17 14:06:12 -0700155 unsigned short numberio;
Jens Axboe5995a6a2009-06-03 08:53:28 +0200156 unsigned long len;
Jens Axboea917a8b2010-09-02 13:23:20 +0200157 unsigned int flags;
Jens Axboe5995a6a2009-06-03 08:53:28 +0200158 enum fio_ddir ddir;
159 union {
160 unsigned long delay;
161 unsigned int file_action;
162 };
163};
164
165/*
166 * Log exports
167 */
168enum file_log_act {
169 FIO_LOG_ADD_FILE,
170 FIO_LOG_OPEN_FILE,
171 FIO_LOG_CLOSE_FILE,
172 FIO_LOG_UNLINK_FILE,
173};
174
Jens Axboe8062f522013-04-10 15:01:42 +0200175struct io_u;
Jens Axboe5995a6a2009-06-03 08:53:28 +0200176extern int __must_check read_iolog_get(struct thread_data *, struct io_u *);
Jens Axboe0cbbc392014-09-30 16:04:12 -0600177extern void log_io_u(const struct thread_data *, const struct io_u *);
Jens Axboe5995a6a2009-06-03 08:53:28 +0200178extern void log_file(struct thread_data *, struct fio_file *, enum file_log_act);
179extern int __must_check init_iolog(struct thread_data *td);
180extern void log_io_piece(struct thread_data *, struct io_u *);
Jens Axboe890b6652014-05-06 19:06:51 -0600181extern void unlog_io_piece(struct thread_data *, struct io_u *);
Jens Axboe0cbbc392014-09-30 16:04:12 -0600182extern void trim_io_piece(struct thread_data *, const struct io_u *);
Jens Axboe5995a6a2009-06-03 08:53:28 +0200183extern void queue_io_piece(struct thread_data *, struct io_piece *);
184extern void prune_io_piece_log(struct thread_data *);
185extern void write_iolog_close(struct thread_data *);
186
Jens Axboebac4af12014-07-03 13:42:28 -0600187#ifdef CONFIG_ZLIB
188extern int iolog_file_inflate(const char *);
189#endif
190
Jens Axboe5995a6a2009-06-03 08:53:28 +0200191/*
192 * Logging
193 */
Jens Axboe38a812d2014-07-03 09:10:39 -0600194struct log_params {
195 struct thread_data *td;
196 unsigned long avg_msec;
197 int log_type;
198 int log_offset;
199 int log_gz;
Jens Axboebac4af12014-07-03 13:42:28 -0600200 int log_gz_store;
Jens Axboe38a812d2014-07-03 09:10:39 -0600201 int log_compress;
202};
203
Peter Oberparleiter99007062014-02-20 14:20:05 +0100204extern void finalize_logs(struct thread_data *td);
Jens Axboe02af0982010-06-24 09:59:34 +0200205extern void add_lat_sample(struct thread_data *, enum fio_ddir, unsigned long,
Jens Axboeccefd5f2014-06-30 20:59:03 -0600206 unsigned int, uint64_t);
Jens Axboe5995a6a2009-06-03 08:53:28 +0200207extern void add_clat_sample(struct thread_data *, enum fio_ddir, unsigned long,
Jens Axboeccefd5f2014-06-30 20:59:03 -0600208 unsigned int, uint64_t);
Jens Axboe5995a6a2009-06-03 08:53:28 +0200209extern void add_slat_sample(struct thread_data *, enum fio_ddir, unsigned long,
Jens Axboeccefd5f2014-06-30 20:59:03 -0600210 unsigned int, uint64_t);
Jens Axboe5995a6a2009-06-03 08:53:28 +0200211extern void add_bw_sample(struct thread_data *, enum fio_ddir, unsigned int,
212 struct timeval *);
Erwan Velu9b7e6002013-08-02 16:39:40 +0200213extern void add_iops_sample(struct thread_data *, enum fio_ddir, unsigned int,
214 struct timeval *);
Jens Axboe5995a6a2009-06-03 08:53:28 +0200215extern void init_disk_util(struct thread_data *);
216extern void update_rusage_stat(struct thread_data *);
Jens Axboe38a812d2014-07-03 09:10:39 -0600217extern void setup_log(struct io_log **, struct log_params *, const char *);
218extern void flush_log(struct io_log *);
Jens Axboe633d8252014-07-02 13:36:34 -0600219extern void free_log(struct io_log *);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200220extern struct io_log *agg_io_log[DDIR_RWDIR_CNT];
Jens Axboe5995a6a2009-06-03 08:53:28 +0200221extern int write_bw_log;
222extern void add_agg_sample(unsigned long, enum fio_ddir, unsigned int);
Jens Axboe905e3d42014-04-02 20:01:27 -0600223extern void fio_writeout_logs(struct thread_data *);
Jens Axboe38a812d2014-07-03 09:10:39 -0600224extern int iolog_flush(struct io_log *, int);
Jens Axboe5995a6a2009-06-03 08:53:28 +0200225
Jens Axboe0d29de82010-09-01 13:54:15 +0200226static inline void init_ipo(struct io_piece *ipo)
227{
228 memset(ipo, 0, sizeof(*ipo));
229 INIT_FLIST_HEAD(&ipo->trim_list);
230}
231
Jens Axboe5995a6a2009-06-03 08:53:28 +0200232#endif