Separated out g/i/m trace handling.
[blktrace.git] / btt / trace_im.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 "globals.h"
22
23 static void handle_g(struct io *g_iop)
24 {
25         struct io *q_iop = dip_find_sec(g_iop->dip, IOP_Q, g_iop->t.sector);
26
27         iostat_getrq(g_iop);
28         if (q_iop) {
29                 q_iop->g_time = g_iop->t.time;
30                 update_q2g(q_iop, tdelta(q_iop->t.time, g_iop->t.time));
31         }
32 }
33
34 static void handle_i(struct io *i_iop)
35 {
36         struct io *q_iop = dip_find_sec(i_iop->dip, IOP_Q, i_iop->t.sector);
37
38         if (q_iop) {
39                 q_iop->i_time = i_iop->t.time;
40                 if (q_iop->g_time != (__u64)-1)
41                         update_g2i(q_iop, tdelta(q_iop->g_time, i_iop->t.time));
42         }
43 }
44
45 static void handle_m(struct io *m_iop)
46 {
47         struct io *q_iop = dip_find_sec(m_iop->dip, IOP_Q, m_iop->t.sector);
48
49         iostat_merge(m_iop);
50         if (q_iop) {
51                 q_iop->m_time = m_iop->t.time;
52                 update_q2m(q_iop, tdelta(q_iop->t.time, m_iop->t.time));
53         }
54 }
55
56 void trace_getrq(struct io *g_iop)
57 {
58         if (io_setup(g_iop, IOP_G))
59                 handle_g(g_iop);
60
61         io_release(g_iop);
62 }
63
64 void trace_insert(struct io *i_iop)
65 {
66         if (io_setup(i_iop, IOP_I))
67                 handle_i(i_iop);
68
69         io_release(i_iop);
70 }
71
72 void trace_merge(struct io *m_iop)
73 {
74         if (io_setup(m_iop, IOP_M))
75                 handle_m(m_iop);
76
77         io_release(m_iop);
78 }