Merge branch 'master' of ssh://alanbrunelle@git.kernel.dk/data/git/blktrace
[blktrace.git] / btt / globals.h
CommitLineData
63eba147
JA
1/*
2 * blktrace output analysis: generate a timeline & gather statistics
3 *
4 * Copyright (C) 2006 Alan D. Brunelle <Alan.Brunelle@hp.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
63eba147
JA
21#include <stdio.h>
22#include <string.h>
6eb42155 23#include <time.h>
63eba147
JA
24
25#include "blktrace.h"
6eb42155 26#include "rbtree.h"
63eba147
JA
27#include "list.h"
28
fa0ab85d
AB
29/*
30 * 0 == 1 blk
31 * 1 == 2 blks
32 * ...
33 * 1022 == 1023 blks
34 * 1023 == 1024 blks
35 * 1024 == > 1024 blks
36 */
37#define N_HIST_BKTS 1025
38
63eba147
JA
39#define BIT_TIME(t) ((double)SECONDS(t) + ((double)NANO_SECONDS(t) / 1.0e9))
40
41#define BIT_START(iop) ((iop)->t.sector)
42#define BIT_END(iop) ((iop)->t.sector + ((iop)->t.bytes >> 9))
5225e788 43#define IOP_READ(iop) ((iop)->t.action & BLK_TC_ACT(BLK_TC_READ))
21e47d90 44#define IOP_RW(iop) (IOP_READ(iop) ? 1 : 0)
63eba147 45
b2ecdd0f
ADB
46#define TO_SEC(nanosec) ((double)(nanosec) / 1.0e9)
47#define TO_MSEC(nanosec) (1000.0 * TO_SEC(nanosec))
48
63eba147
JA
49enum iop_type {
50 IOP_Q = 0,
51 IOP_X = 1,
52 IOP_A = 2,
4c48f14e 53 IOP_G = 3,
095181f2 54 IOP_M = 4,
d76c5b81
AB
55 IOP_D = 5,
56 IOP_C = 6,
57 IOP_R = 7,
354db430
AB
58 IOP_I = 8,
59 IOP_S = 9
63eba147 60};
354db430 61#define N_IOP_TYPES (IOP_S + 1)
63eba147 62
b2ecdd0f
ADB
63struct file_info {
64 struct file_info *next;
65 FILE *ofp;
69040794 66 char *oname;
b2ecdd0f
ADB
67};
68
6eb42155
ADB
69struct mode {
70 int most_seeks, nmds;
71 long long *modes;
63eba147
JA
72};
73
74struct io;
75struct io_list {
76 struct list_head head;
77 struct io *iop;
78 int cy_users;
79};
80
81struct avg_info {
82 __u64 min, max, total;
83 double avg;
84 int n;
85};
86
87struct avgs_info {
ae6d30f4
AB
88 struct avg_info q2q_dm;
89 struct avg_info q2a_dm;
90 struct avg_info q2c_dm;
91
63eba147 92 struct avg_info q2q;
ae6d30f4
AB
93 struct avg_info q2a;
94 struct avg_info q2g;
354db430 95 struct avg_info s2g;
ae6d30f4
AB
96 struct avg_info g2i;
97 struct avg_info q2m;
98 struct avg_info i2d;
99 struct avg_info m2d;
63eba147 100 struct avg_info d2c;
ae6d30f4 101 struct avg_info q2c;
63eba147
JA
102
103 struct avg_info blks; /* Blocks transferred */
104};
105
106struct range_info {
107 struct list_head head; /* on: qranges OR cranges */
108 __u64 start, end;
109};
110
111struct region_info {
112 struct list_head qranges;
113 struct list_head cranges;
63eba147
JA
114};
115
63eba147 116struct p_info {
63eba147
JA
117 struct region_info regions;
118 struct avgs_info avgs;
63eba147 119 __u64 last_q;
6eb42155 120 __u32 pid;
69040794 121 char *name;
63eba147
JA
122};
123
124struct devmap {
125 struct devmap *next;
6eb42155 126 unsigned int host, bus, target, lun, irq, cpu;
63eba147 127 char model[64];
6eb42155 128 char device[32], node[32], pci[32], devno[32];
63eba147
JA
129};
130
21e47d90 131struct stats {
6eb42155 132 __u64 rqm[2], ios[2], sec[2], wait, svctm;
21e47d90 133 double last_qu_change, last_dev_change, tot_qusz, idle_time;
6eb42155 134 int cur_qusz, cur_dev;
21e47d90
ADB
135};
136
4a5cddba
JA
137struct stats_t {
138 double n;
139 double rqm_s[2], ios_s[2], sec_s[2];
140 double avgrq_sz, avgqu_sz, await, svctm, p_util;
141};
142
63eba147 143struct d_info {
6eb42155
ADB
144 struct list_head all_head, hash_head;
145 void *heads;
63eba147 146 struct region_info regions;
63eba147 147 struct devmap *map;
4c48f14e 148 void *q2q_handle, *seek_handle, *bno_dump_handle, *unplug_hist_handle;
2baef508 149 void *q2d_priv, *aqd_handle, *q2c_plat_handle, *d2c_plat_handle;
b2ecdd0f 150 FILE *d2c_ofp, *q2c_ofp;
6eb42155 151 struct avgs_info avgs;
21e47d90 152 struct stats stats, all_stats;
77f256cd 153 __u64 last_q, n_qs, n_ds;
50f73899 154 __u64 n_act_q, t_act_q; /* # currently active when Q comes in */
6eb42155 155 __u32 device;
b2822cea 156
11997716 157 int pre_culling;
b70a6642
AB
158 int is_plugged, nplugs, nplugs_t, n_timer_unplugs;
159 __u64 nios_up, nios_upt;
b2822cea 160 double start_time, last_plug, plugged_time, end_time;
63eba147
JA
161};
162
163struct io {
6eb42155 164 struct rb_node rb_node;
8b10aae0 165 struct list_head f_head, a_head;
63eba147
JA
166 struct d_info *dip;
167 struct p_info *pip;
6eb42155 168 void *pdu;
ae6d30f4 169 __u64 bytes_left, g_time, i_time, m_time, d_time, c_time, d_sec, c_sec;
354db430 170 __u64 s_time;
4c48f14e
AB
171 __u32 d_nsec, c_nsec;
172
d76c5b81 173 struct blk_io_trace t;
4c48f14e 174
ae6d30f4 175 int linked;
63eba147 176 enum iop_type type;
d76c5b81 177};
095181f2 178
6eb42155
ADB
179/* bt_timeline.c */
180
63eba147 181extern char bt_timeline_version[], *devices, *exes, *input_name, *output_name;
095181f2 182extern char *seek_name, *iostat_name, *d2c_name, *q2c_name, *per_io_name;
4ae2c3c6 183extern char *bno_dump_name, *unplug_hist_name, *sps_name, *aqd_name;
2baef508 184extern double range_delta, plat_freq;
f028c958 185extern FILE *ranges_ofp, *avgs_ofp, *xavgs_ofp, *iostat_ofp, *per_io_ofp;
84a26fcd 186extern FILE *msgs_ofp;
69040794 187extern int verbose, done, time_bounded, output_all_data, seek_absolute;
f028c958 188extern int easy_parse_avgs;
63eba147 189extern unsigned int n_devs;
6eb42155 190extern unsigned long n_traces;
4c48f14e 191extern struct list_head all_devs, all_procs;
63eba147 192extern struct avgs_info all_avgs;
4c48f14e 193extern __u64 last_q;
63eba147 194extern struct region_info all_regions;
8b10aae0 195extern struct list_head all_ios, free_ios;
21e47d90 196extern __u64 iostat_interval, iostat_last_stamp;
6eb42155 197extern time_t genesis, last_vtrace;
001b2633 198extern double t_astart, t_aend;
fa0ab85d 199extern __u64 q_histo[N_HIST_BKTS], d_histo[N_HIST_BKTS];
63eba147 200
6eb42155 201/* args.c */
63eba147 202void handle_args(int argc, char *argv[]);
c8aea612 203void clean_args();
6eb42155 204
4ae2c3c6
AB
205/* aqd.c */
206void *aqd_init(char *str);
2baef508
AB
207void aqd_exit(void *info);
208void aqd_clean(void);
4ae2c3c6
AB
209void aqd_issue(void *info, double ts);
210void aqd_complete(void *info, double ts);
211
69040794 212/* devmap.c */
63eba147 213int dev_map_read(char *fname);
6eb42155 214struct devmap *dev_map_find(__u32 device);
69040794 215void dev_map_exit(void);
63eba147 216
6eb42155
ADB
217/* devs.c */
218void init_dev_heads(void);
095181f2 219struct d_info *dip_add(__u32 device, struct io *iop);
6eb42155
ADB
220void dip_rem(struct io *iop);
221struct d_info *__dip_find(__u32 device);
095181f2 222void dip_foreach_list(struct io *iop, enum iop_type type, struct list_head *hd);
8b10aae0 223void dip_foreach(struct io *iop, enum iop_type type,
6eb42155
ADB
224 void (*fnc)(struct io *iop, struct io *this), int rm_after);
225struct io *dip_find_sec(struct d_info *dip, enum iop_type type, __u64 sec);
226void dip_foreach_out(void (*func)(struct d_info *, void *), void *arg);
b2822cea 227void dip_plug(__u32 dev, double cur_time);
b70a6642
AB
228void dip_unplug(__u32 dev, double cur_time, __u64 nio_ups);
229void dip_unplug_tm(__u32 dev, __u64 nio_ups);
69040794 230void dip_exit(void);
6eb42155
ADB
231
232/* dip_rb.c */
095181f2 233int rb_insert(struct rb_root *root, struct io *iop);
6eb42155 234struct io *rb_find_sec(struct rb_root *root, __u64 sec);
8b10aae0 235void rb_foreach(struct rb_node *n, struct io *iop,
6eb42155
ADB
236 void (*fnc)(struct io *iop, struct io *this),
237 struct list_head *head);
238
239/* iostat.c */
21e47d90 240void iostat_init(void);
4c48f14e 241void iostat_getrq(struct io *iop);
21e47d90
ADB
242void iostat_merge(struct io *iop);
243void iostat_issue(struct io *iop);
6eb42155
ADB
244void iostat_unissue(struct io *iop);
245void iostat_complete(struct io *d_iop, struct io *c_iop);
21e47d90
ADB
246void iostat_check_time(__u64 stamp);
247void iostat_dump_stats(__u64 stamp, int all);
248
6eb42155 249/* latency.c */
b2ecdd0f
ADB
250void latency_init(struct d_info *dip);
251void latency_clean(void);
252void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency);
253void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency);
254
6eb42155 255/* misc.c */
6eb42155 256int in_devices(struct blk_io_trace *t);
6eb42155
ADB
257void add_file(struct file_info **fipp, FILE *fp, char *oname);
258void clean_files(struct file_info **fipp);
69040794
AB
259void add_buf(void *buf);
260void clean_bufs(void);
84a26fcd 261char *make_dev_hdr(char *pad, size_t len, struct d_info *dip, int add_parens);
6eb42155
ADB
262void dbg_ping(void);
263
d76c5b81
AB
264/* mmap.c */
265void setup_ifile(char *fname);
266void cleanup_ifile(void);
267int next_trace(struct blk_io_trace *t, void **pdu);
32ff7e3b 268double pct_done(void);
d76c5b81 269
6eb42155
ADB
270/* output.c */
271int output_avgs(FILE *ofp);
272int output_ranges(FILE *ofp);
6eb42155
ADB
273
274/* proc.c */
275void add_process(__u32 pid, char *name);
276struct p_info *find_process(__u32 pid, char *name);
277void pip_update_q(struct io *iop);
278void pip_foreach_out(void (*f)(struct p_info *, void *), void *arg);
69040794
AB
279void pip_exit(void);
280
281/* bno_dump.c */
282void *bno_dump_init(__u32 device);
283void bno_dump_exit(void *param);
284void bno_dump_add(void *handle, struct io *iop);
285void bno_dump_clean(void);
6eb42155 286
2baef508
AB
287/* plat.c */
288void *plat_init(char *str);
289void plat_exit(void *info);
290void plat_clean(void);
291void plat_x2c(void *info, __u64 ts, __u64 latency);
292
951ea56c
AB
293/* q2d.c */
294void q2d_histo_add(void *priv, __u64 q2d);
295void *q2d_init(void);
296void q2d_release(void *priv);
297void q2d_display_header(FILE *fp);
298void q2d_display_dashes(FILE *fp);
299void q2d_display(FILE *fp, void *priv);
300int q2d_ok(void *priv);
301void q2d_acc(void *a1, void *a2);
302
6eb42155 303/* seek.c */
4c48f14e 304void *seeki_init(char *str);
69040794 305void seeki_exit(void *param);
6eb42155
ADB
306void seek_clean(void);
307void seeki_add(void *handle, struct io *iop);
308double seeki_mean(void *handle);
309long long seeki_nseeks(void *handle);
310long long seeki_median(void *handle);
311int seeki_mode(void *handle, struct mode *mp);
312
313/* trace.c */
314void add_trace(struct io *iop);
315
095181f2
JA
316/* trace_complete.c */
317void trace_complete(struct io *c_iop);
095181f2
JA
318
319/* trace_im.c */
c8b0b334
AB
320void run_im(struct io *im_iop, struct io *d_iop, struct io *c_iop);
321void run_unim(struct io *im_iop, struct io *d_iop, struct io *c_iop);
d76c5b81 322int ready_im(struct io *im_iop, struct io *c_iop);
095181f2
JA
323void trace_insert(struct io *i_iop);
324void trace_merge(struct io *m_iop);
4c48f14e 325void trace_getrq(struct io *g_iop);
354db430 326void trace_sleeprq(struct io *s_iop);
095181f2
JA
327
328/* trace_issue.c */
c8b0b334
AB
329void run_issue(struct io *d_iop, struct io *u_iop, struct io *c_iop);
330void run_unissue(struct io *d_iop, struct io *u_iop, struct io *c_iop);
d76c5b81 331int ready_issue(struct io *d_iop, struct io *c_iop);
095181f2 332void trace_issue(struct io *d_iop);
095181f2 333
b2822cea 334/* trace_plug.c */
b70a6642 335__u64 get_nio_up(struct io *u_iop);
b2822cea
AB
336void trace_plug(struct io *p_iop);
337void trace_unplug_io(struct io *u_iop);
338void trace_unplug_timer(struct io *u_iop);
339
095181f2 340/* trace_queue.c */
c8b0b334 341void run_queue(struct io *q_iop, struct io *u_iop, struct io *c_iop);
d76c5b81 342int ready_queue(struct io *q_iop, struct io *c_iop);
095181f2 343void trace_queue(struct io *q_iop);
095181f2
JA
344
345/* trace_remap.c */
c8b0b334 346void run_remap(struct io *a_iop, struct io *u_iop, struct io *c_iop);
d76c5b81 347int ready_remap(struct io *a_iop, struct io *c_iop);
095181f2 348void trace_remap(struct io *a_iop);
095181f2
JA
349
350/* trace_requeue.c */
351void trace_requeue(struct io *r_iop);
095181f2 352
fc16a815
AB
353/* unplug_hist.c */
354void *unplug_hist_init(__u32 device);
355void unplug_hist_exit(void *arg);
356void unplug_hist_add(struct io *u_iop);
357
63eba147 358#include "inlines.h"