Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 1 | #ifndef FIO_IOLOG_H |
| 2 | #define FIO_IOLOG_H |
| 3 | |
Jens Axboe | 0577543 | 2012-03-21 14:07:11 +0100 | [diff] [blame] | 4 | #include "lib/rbtree.h" |
Jens Axboe | c7c6cb4 | 2011-10-13 14:12:40 +0200 | [diff] [blame] | 5 | #include "lib/ieee754.h" |
Jens Axboe | 836fcc0 | 2013-01-24 09:08:45 -0700 | [diff] [blame] | 6 | #include "flist.h" |
Jens Axboe | ec41265 | 2012-03-08 12:37:31 +0100 | [diff] [blame] | 7 | #include "ioengine.h" |
Jens Axboe | 802ad4a | 2011-10-05 09:51:58 +0200 | [diff] [blame] | 8 | |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 9 | /* |
| 10 | * Use for maintaining statistics |
| 11 | */ |
| 12 | struct io_stat { |
Jens Axboe | 7b9f733 | 2011-10-03 10:06:44 +0200 | [diff] [blame] | 13 | uint64_t max_val; |
| 14 | uint64_t min_val; |
| 15 | uint64_t samples; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 16 | |
Jens Axboe | 802ad4a | 2011-10-05 09:51:58 +0200 | [diff] [blame] | 17 | fio_fp64_t mean; |
| 18 | fio_fp64_t S; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 19 | }; |
| 20 | |
| 21 | /* |
| 22 | * A single data sample |
| 23 | */ |
| 24 | struct io_sample { |
Jens Axboe | 1b42725 | 2012-03-14 15:03:03 +0100 | [diff] [blame] | 25 | uint64_t time; |
| 26 | uint64_t val; |
| 27 | uint32_t ddir; |
| 28 | uint32_t bs; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 29 | }; |
| 30 | |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 31 | struct io_sample_offset { |
| 32 | struct io_sample s; |
| 33 | uint64_t offset; |
| 34 | }; |
| 35 | |
Jens Axboe | ea51b95 | 2012-03-14 11:39:13 +0100 | [diff] [blame] | 36 | enum { |
| 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 Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 44 | /* |
| 45 | * Dynamically growing data sample log |
| 46 | */ |
| 47 | struct io_log { |
Jens Axboe | b8bc8cb | 2011-12-01 09:04:31 +0100 | [diff] [blame] | 48 | /* |
| 49 | * Entries already logged |
| 50 | */ |
Jens Axboe | f2b9a67 | 2014-07-01 08:47:11 -0600 | [diff] [blame] | 51 | uint64_t nr_samples; |
| 52 | uint64_t max_samples; |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 53 | void *log; |
Jens Axboe | b8bc8cb | 2011-12-01 09:04:31 +0100 | [diff] [blame] | 54 | |
Jens Axboe | 1b42725 | 2012-03-14 15:03:03 +0100 | [diff] [blame] | 55 | unsigned int log_type; |
Jens Axboe | ea51b95 | 2012-03-14 11:39:13 +0100 | [diff] [blame] | 56 | |
Jens Axboe | b8bc8cb | 2011-12-01 09:04:31 +0100 | [diff] [blame] | 57 | /* |
Jens Axboe | 3c56823 | 2013-09-30 12:17:34 -0600 | [diff] [blame] | 58 | * If we fail extending the log, stop collecting more entries. |
| 59 | */ |
| 60 | unsigned int disabled; |
| 61 | |
| 62 | /* |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 63 | * Log offsets |
| 64 | */ |
| 65 | unsigned int log_offset; |
| 66 | |
| 67 | /* |
Jens Axboe | b8bc8cb | 2011-12-01 09:04:31 +0100 | [diff] [blame] | 68 | * Windowed average, for logging single entries average over some |
| 69 | * period of time. |
| 70 | */ |
Shaohua Li | 6eaf09d | 2012-09-14 08:49:43 +0200 | [diff] [blame] | 71 | struct io_stat avg_window[DDIR_RWDIR_CNT]; |
Jens Axboe | b8bc8cb | 2011-12-01 09:04:31 +0100 | [diff] [blame] | 72 | unsigned long avg_msec; |
| 73 | unsigned long avg_last; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 74 | }; |
| 75 | |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 76 | static inline size_t __log_entry_sz(int log_offset) |
| 77 | { |
| 78 | if (log_offset) |
| 79 | return sizeof(struct io_sample_offset); |
| 80 | else |
| 81 | return sizeof(struct io_sample); |
| 82 | } |
| 83 | |
| 84 | static inline size_t log_entry_sz(struct io_log *log) |
| 85 | { |
| 86 | return __log_entry_sz(log->log_offset); |
| 87 | } |
| 88 | |
| 89 | static inline struct io_sample *__get_sample(void *samples, int log_offset, |
| 90 | uint64_t sample) |
| 91 | { |
| 92 | return samples + sample * __log_entry_sz(log_offset); |
| 93 | } |
| 94 | |
| 95 | static inline struct io_sample *get_sample(struct io_log *iolog, |
| 96 | uint64_t sample) |
| 97 | { |
| 98 | return __get_sample(iolog->log, iolog->log_offset, sample); |
| 99 | } |
| 100 | |
Jens Axboe | 0d29de8 | 2010-09-01 13:54:15 +0200 | [diff] [blame] | 101 | enum { |
| 102 | IP_F_ONRB = 1, |
| 103 | IP_F_ONLIST = 2, |
| 104 | IP_F_TRIMMED = 4, |
Jens Axboe | f940128 | 2014-02-06 12:17:37 -0700 | [diff] [blame] | 105 | IP_F_IN_FLIGHT = 8, |
Jens Axboe | 0d29de8 | 2010-09-01 13:54:15 +0200 | [diff] [blame] | 106 | }; |
| 107 | |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 108 | /* |
| 109 | * When logging io actions, this matches a single sent io_u |
| 110 | */ |
| 111 | struct io_piece { |
| 112 | union { |
| 113 | struct rb_node rb_node; |
| 114 | struct flist_head list; |
| 115 | }; |
Jens Axboe | 0d29de8 | 2010-09-01 13:54:15 +0200 | [diff] [blame] | 116 | struct flist_head trim_list; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 117 | union { |
| 118 | int fileno; |
| 119 | struct fio_file *file; |
| 120 | }; |
| 121 | unsigned long long offset; |
Juan Casse | da0a7bd | 2013-09-17 14:06:12 -0700 | [diff] [blame] | 122 | unsigned short numberio; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 123 | unsigned long len; |
Jens Axboe | a917a8b | 2010-09-02 13:23:20 +0200 | [diff] [blame] | 124 | unsigned int flags; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 125 | enum fio_ddir ddir; |
| 126 | union { |
| 127 | unsigned long delay; |
| 128 | unsigned int file_action; |
| 129 | }; |
| 130 | }; |
| 131 | |
| 132 | /* |
| 133 | * Log exports |
| 134 | */ |
| 135 | enum file_log_act { |
| 136 | FIO_LOG_ADD_FILE, |
| 137 | FIO_LOG_OPEN_FILE, |
| 138 | FIO_LOG_CLOSE_FILE, |
| 139 | FIO_LOG_UNLINK_FILE, |
| 140 | }; |
| 141 | |
Jens Axboe | 8062f52 | 2013-04-10 15:01:42 +0200 | [diff] [blame] | 142 | struct io_u; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 143 | extern int __must_check read_iolog_get(struct thread_data *, struct io_u *); |
| 144 | extern void log_io_u(struct thread_data *, struct io_u *); |
| 145 | extern void log_file(struct thread_data *, struct fio_file *, enum file_log_act); |
| 146 | extern int __must_check init_iolog(struct thread_data *td); |
| 147 | extern void log_io_piece(struct thread_data *, struct io_u *); |
Jens Axboe | 890b665 | 2014-05-06 19:06:51 -0600 | [diff] [blame] | 148 | extern void unlog_io_piece(struct thread_data *, struct io_u *); |
| 149 | extern void trim_io_piece(struct thread_data *, struct io_u *); |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 150 | extern void queue_io_piece(struct thread_data *, struct io_piece *); |
| 151 | extern void prune_io_piece_log(struct thread_data *); |
| 152 | extern void write_iolog_close(struct thread_data *); |
| 153 | |
| 154 | /* |
| 155 | * Logging |
| 156 | */ |
Peter Oberparleiter | 9900706 | 2014-02-20 14:20:05 +0100 | [diff] [blame] | 157 | extern void finalize_logs(struct thread_data *td); |
Jens Axboe | 02af098 | 2010-06-24 09:59:34 +0200 | [diff] [blame] | 158 | extern void add_lat_sample(struct thread_data *, enum fio_ddir, unsigned long, |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 159 | unsigned int, uint64_t); |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 160 | extern void add_clat_sample(struct thread_data *, enum fio_ddir, unsigned long, |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 161 | unsigned int, uint64_t); |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 162 | extern void add_slat_sample(struct thread_data *, enum fio_ddir, unsigned long, |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 163 | unsigned int, uint64_t); |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 164 | extern void add_bw_sample(struct thread_data *, enum fio_ddir, unsigned int, |
| 165 | struct timeval *); |
Erwan Velu | 9b7e600 | 2013-08-02 16:39:40 +0200 | [diff] [blame] | 166 | extern void add_iops_sample(struct thread_data *, enum fio_ddir, unsigned int, |
| 167 | struct timeval *); |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 168 | extern void init_disk_util(struct thread_data *); |
| 169 | extern void update_rusage_stat(struct thread_data *); |
Jens Axboe | ccefd5f | 2014-06-30 20:59:03 -0600 | [diff] [blame] | 170 | extern void setup_log(struct io_log **, unsigned long, int, int); |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 171 | extern void __finish_log(struct io_log *, const char *); |
Shaohua Li | 6eaf09d | 2012-09-14 08:49:43 +0200 | [diff] [blame] | 172 | extern struct io_log *agg_io_log[DDIR_RWDIR_CNT]; |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 173 | extern int write_bw_log; |
| 174 | extern void add_agg_sample(unsigned long, enum fio_ddir, unsigned int); |
Jens Axboe | 905e3d4 | 2014-04-02 20:01:27 -0600 | [diff] [blame] | 175 | extern void fio_writeout_logs(struct thread_data *); |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 176 | |
Jens Axboe | 0d29de8 | 2010-09-01 13:54:15 +0200 | [diff] [blame] | 177 | static inline void init_ipo(struct io_piece *ipo) |
| 178 | { |
| 179 | memset(ipo, 0, sizeof(*ipo)); |
| 180 | INIT_FLIST_HEAD(&ipo->trim_list); |
| 181 | } |
| 182 | |
Jens Axboe | 5995a6a | 2009-06-03 08:53:28 +0200 | [diff] [blame] | 183 | #endif |