blob: a523d4d22767ec8cd80cd022d9ba96dad3e4c012 [file] [log] [blame]
Jens Axboe5995a6a2009-06-03 08:53:28 +02001#ifndef FIO_IOLOG_H
2#define FIO_IOLOG_H
3
Jens Axboe802ad4a2011-10-05 09:51:58 +02004#include "ieee754.h"
5
Jens Axboe5995a6a2009-06-03 08:53:28 +02006/*
7 * Use for maintaining statistics
8 */
9struct io_stat {
Jens Axboe7b9f7332011-10-03 10:06:44 +020010 uint64_t max_val;
11 uint64_t min_val;
12 uint64_t samples;
Jens Axboe5995a6a2009-06-03 08:53:28 +020013
Jens Axboe802ad4a2011-10-05 09:51:58 +020014 fio_fp64_t mean;
15 fio_fp64_t S;
Jens Axboe5995a6a2009-06-03 08:53:28 +020016};
17
18/*
19 * A single data sample
20 */
21struct io_sample {
22 unsigned long time;
23 unsigned long val;
24 enum fio_ddir ddir;
25 unsigned int bs;
26};
27
28/*
29 * Dynamically growing data sample log
30 */
31struct io_log {
32 unsigned long nr_samples;
33 unsigned long max_samples;
34 struct io_sample *log;
35};
36
Jens Axboe0d29de82010-09-01 13:54:15 +020037enum {
38 IP_F_ONRB = 1,
39 IP_F_ONLIST = 2,
40 IP_F_TRIMMED = 4,
41};
42
Jens Axboe5995a6a2009-06-03 08:53:28 +020043/*
44 * When logging io actions, this matches a single sent io_u
45 */
46struct io_piece {
47 union {
48 struct rb_node rb_node;
49 struct flist_head list;
50 };
Jens Axboe0d29de82010-09-01 13:54:15 +020051 struct flist_head trim_list;
Jens Axboe5995a6a2009-06-03 08:53:28 +020052 union {
53 int fileno;
54 struct fio_file *file;
55 };
56 unsigned long long offset;
57 unsigned long len;
Jens Axboea917a8b2010-09-02 13:23:20 +020058 unsigned int flags;
Jens Axboe5995a6a2009-06-03 08:53:28 +020059 enum fio_ddir ddir;
60 union {
61 unsigned long delay;
62 unsigned int file_action;
63 };
64};
65
66/*
67 * Log exports
68 */
69enum file_log_act {
70 FIO_LOG_ADD_FILE,
71 FIO_LOG_OPEN_FILE,
72 FIO_LOG_CLOSE_FILE,
73 FIO_LOG_UNLINK_FILE,
74};
75
76extern int __must_check read_iolog_get(struct thread_data *, struct io_u *);
77extern void log_io_u(struct thread_data *, struct io_u *);
78extern void log_file(struct thread_data *, struct fio_file *, enum file_log_act);
79extern int __must_check init_iolog(struct thread_data *td);
80extern void log_io_piece(struct thread_data *, struct io_u *);
81extern void queue_io_piece(struct thread_data *, struct io_piece *);
82extern void prune_io_piece_log(struct thread_data *);
83extern void write_iolog_close(struct thread_data *);
84
85/*
86 * Logging
87 */
Jens Axboe02af0982010-06-24 09:59:34 +020088extern void add_lat_sample(struct thread_data *, enum fio_ddir, unsigned long,
89 unsigned int);
Jens Axboe5995a6a2009-06-03 08:53:28 +020090extern void add_clat_sample(struct thread_data *, enum fio_ddir, unsigned long,
91 unsigned int);
92extern void add_slat_sample(struct thread_data *, enum fio_ddir, unsigned long,
93 unsigned int);
94extern void add_bw_sample(struct thread_data *, enum fio_ddir, unsigned int,
95 struct timeval *);
Jens Axboec8eeb9d2011-10-05 14:02:22 +020096extern void add_iops_sample(struct thread_data *, enum fio_ddir, struct timeval *);
Jens Axboe5995a6a2009-06-03 08:53:28 +020097extern void init_disk_util(struct thread_data *);
98extern void update_rusage_stat(struct thread_data *);
99extern void update_io_ticks(void);
100extern void setup_log(struct io_log **);
101extern void finish_log(struct thread_data *, struct io_log *, const char *);
102extern void finish_log_named(struct thread_data *, struct io_log *, const char *, const char *);
103extern void __finish_log(struct io_log *, const char *);
104extern struct io_log *agg_io_log[2];
105extern int write_bw_log;
106extern void add_agg_sample(unsigned long, enum fio_ddir, unsigned int);
107
Jens Axboe0d29de82010-09-01 13:54:15 +0200108static inline void init_ipo(struct io_piece *ipo)
109{
110 memset(ipo, 0, sizeof(*ipo));
111 INIT_FLIST_HEAD(&ipo->trim_list);
112}
113
Jens Axboe5995a6a2009-06-03 08:53:28 +0200114#endif