btt: better data file naming
[blktrace.git] / btt / devs.c
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  */
21 #include <stdio.h>
22 #include "globals.h"
23
24 #define N_DEV_HASH      128
25 #define DEV_HASH(dev)   ((MAJOR(dev) ^ MINOR(dev)) & (N_DEV_HASH - 1))
26 struct list_head        dev_heads[N_DEV_HASH];
27
28 static inline void *dip_rb_mkhds(void)
29 {
30         size_t len = N_IOP_TYPES * sizeof(struct rb_root);
31         return memset(malloc(len), 0, len);
32 }
33
34 static void __destroy(struct rb_node *n)
35 {
36         if (n) {
37                 struct io *iop = rb_entry(n, struct io, rb_node);
38
39                 __destroy(n->rb_left);
40                 __destroy(n->rb_right);
41                 io_release(iop);
42         }
43 }
44
45 static void __destroy_heads(struct rb_root *roots)
46 {
47         int i;
48
49         for (i = 0; i < N_IOP_TYPES; i++)
50                 __destroy(roots[i].rb_node);
51
52         free(roots);
53 }
54
55 void init_dev_heads(void)
56 {
57         int i;
58         for (i = 0; i < N_DEV_HASH; i++)
59                 INIT_LIST_HEAD(&dev_heads[i]);
60 }
61
62 struct d_info *__dip_find(__u32 device)
63 {
64         struct d_info *dip;
65         struct list_head *p;
66
67         __list_for_each(p, &dev_heads[DEV_HASH(device)]) {
68                 dip = list_entry(p, struct d_info, hash_head);
69                 if (device == dip->device)
70                         return dip;
71         }
72
73         return NULL;
74 }
75
76 void __dip_exit(struct d_info *dip)
77 {
78         list_del(&dip->all_head);
79         __destroy_heads(dip->heads);
80         region_exit(&dip->regions);
81         seeki_free(dip->seek_handle);
82         seeki_free(dip->q2q_handle);
83         aqd_free(dip->aqd_handle);
84         plat_free(dip->q2d_plat_handle);
85         plat_free(dip->q2c_plat_handle);
86         plat_free(dip->d2c_plat_handle);
87         bno_dump_free(dip->bno_dump_handle);
88         unplug_hist_free(dip->up_hist_handle);
89         rstat_free(dip->rstat_handle);
90         if (output_all_data)
91                 q2d_free(dip->q2d_priv);
92         if (dip->pit_fp)
93                 fclose(dip->pit_fp);
94         free(dip);
95 }
96
97 void dip_exit(void)
98 {
99         struct list_head *p, *q;
100
101         list_for_each_safe(p, q, &all_devs) {
102                 struct d_info *dip = list_entry(p, struct d_info, all_head);
103                 __dip_exit(dip);
104         }
105 }
106
107 static inline FILE *open_pit(struct d_info *dip)
108 {
109         FILE *fp;
110         char str[256];
111
112         sprintf(str, "%s_pit.dat", dip->dip_name);
113         if ((fp = my_fopen(str, "w")) == NULL)
114                 perror(str);
115
116         return fp;
117 }
118
119 struct d_info *dip_alloc(__u32 device, struct io *iop)
120 {
121         struct d_info *dip = __dip_find(device);
122
123         if (dip == NULL) {
124                 dip = malloc(sizeof(struct d_info));
125                 memset(dip, 0, sizeof(*dip));
126                 dip->device = device;
127                 dip->devmap = dev_map_find(device);
128                 dip->last_q = (__u64)-1;
129                 dip->heads = dip_rb_mkhds();
130                 region_init(&dip->regions);
131                 dip->start_time = BIT_TIME(iop->t.time);
132                 dip->pre_culling = 1;
133
134                 mkhandle(dip, dip->dip_name, 256);
135
136                 latency_alloc(dip);
137                 dip->aqd_handle = aqd_alloc(dip);
138                 dip->bno_dump_handle = bno_dump_alloc(dip);
139                 dip->up_hist_handle = unplug_hist_alloc(dip);
140                 dip->seek_handle = seeki_alloc(dip, "_d2d");
141                 dip->q2q_handle = seeki_alloc(dip, "_q2q");
142                 dip->q2d_plat_handle = plat_alloc(dip, "_q2d");
143                 dip->q2c_plat_handle = plat_alloc(dip, "_q2c");
144                 dip->d2c_plat_handle = plat_alloc(dip, "_d2c");
145                 dip->rstat_handle = rstat_alloc(dip);
146
147                 if (per_io_trees)
148                         dip->pit_fp = open_pit(dip);
149
150                 if (output_all_data)
151                         dip->q2d_priv = q2d_alloc();
152
153                 list_add_tail(&dip->hash_head, &dev_heads[DEV_HASH(device)]);
154                 list_add_tail(&dip->all_head, &all_devs);
155                 n_devs++;
156         }
157
158         if (dip->pre_culling) {
159                 if (iop->type == IOP_Q || iop->type == IOP_A)
160                         dip->pre_culling = 0;
161                 else
162                         return NULL;
163         }
164
165         iop->linked = dip_rb_ins(dip, iop);
166         dip->end_time = BIT_TIME(iop->t.time);
167
168         return dip;
169 }
170
171 void iop_rem_dip(struct io *iop)
172 {
173         if (iop->linked) {
174                 dip_rb_rem(iop);
175                 iop->linked = 0;
176         }
177 }
178
179 void dip_foreach(struct io *iop, enum iop_type type,
180                  void (*fnc)(struct io *iop, struct io *this), int rm_after)
181 {
182         if (rm_after) {
183                 LIST_HEAD(head);
184                 struct io *this;
185                 struct list_head *p, *q;
186
187                 dip_rb_fe(iop->dip, type, iop, fnc, &head);
188                 list_for_each_safe(p, q, &head) {
189                         this = list_entry(p, struct io, f_head);
190                         list_del(&this->f_head);
191                         io_release(this);
192                 }
193         } else
194                 dip_rb_fe(iop->dip, type, iop, fnc, NULL);
195 }
196
197 void dip_foreach_list(struct io *iop, enum iop_type type, struct list_head *hd)
198 {
199         dip_rb_fe(iop->dip, type, iop, NULL, hd);
200 }
201
202 struct io *dip_find_sec(struct d_info *dip, enum iop_type type, __u64 sec)
203 {
204         return dip_rb_find_sec(dip, type, sec);
205 }
206
207 void dip_foreach_out(void (*func)(struct d_info *, void *), void *arg)
208 {
209         if (devices == NULL) {
210                 struct list_head *p;
211                 __list_for_each(p, &all_devs)
212                         func(list_entry(p, struct d_info, all_head), arg);
213         } else {
214                 int i;
215                 struct d_info *dip;
216                 unsigned int mjr, mnr;
217                 char *p = devices;
218
219                 while (p && ((i = sscanf(p, "%u,%u", &mjr, &mnr)) == 2)) {
220                         dip = __dip_find((__u32)((mjr << MINORBITS) | mnr));
221                         func(dip, arg);
222                         p = strchr(p, ';');
223                         if (p) p++;
224                 }
225         }
226 }
227
228 void dip_plug(__u32 dev, double cur_time)
229 {
230         struct d_info *dip = __dip_find(dev);
231
232         if (dip && !dip->is_plugged) {
233                 dip->is_plugged = 1;
234                 dip->last_plug = cur_time;
235         }
236 }
237
238 static inline void unplug(struct d_info *dip, double cur_time)
239 {
240         dip->is_plugged = 0;
241         dip->plugged_time += (cur_time - dip->last_plug);
242 }
243
244 void dip_unplug(__u32 dev, double cur_time, __u64 nios_up)
245 {
246         struct d_info *dip = __dip_find(dev);
247
248         if (dip && dip->is_plugged) {
249                 dip->nplugs++;
250                 dip->nios_up += nios_up;
251                 unplug(dip, cur_time);
252         }
253 }
254
255 void dip_unplug_tm(__u32 dev, double cur_time, __u64 nios_up)
256 {
257         struct d_info *dip = __dip_find(dev);
258
259         if (dip && dip->is_plugged) {
260                 dip->nios_upt += nios_up;
261                 dip->nplugs_t++;
262                 unplug(dip, cur_time);
263         }
264 }
265
266 void dip_cleanup(void)
267 {
268         struct list_head *p, *q;
269
270         list_for_each_safe(p, q, &all_devs) {
271                 struct d_info *dip = list_entry(p, struct d_info, all_head);
272
273                 if (dip->n_qs == 0 && dip->n_ds == 0)
274                         __dip_exit(dip);
275         }
276 }