1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
* blktrace output analysis: generate a timeline & gather statistics
*
* Copyright (C) 2006 Alan D. Brunelle <Alan.Brunelle@hp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "globals.h"
static void handle_g(struct io *g_iop)
{
struct io *q_iop = dip_find_sec(g_iop->dip, IOP_Q, g_iop->t.sector);
iostat_getrq(g_iop);
if (q_iop) {
q_iop->g_time = g_iop->t.time;
update_q2g(q_iop, tdelta(q_iop->t.time, g_iop->t.time));
}
}
static void handle_i(struct io *i_iop)
{
struct io *q_iop = dip_find_sec(i_iop->dip, IOP_Q, i_iop->t.sector);
if (q_iop) {
q_iop->i_time = i_iop->t.time;
if (q_iop->g_time != (__u64)-1)
update_g2i(q_iop, tdelta(q_iop->g_time, i_iop->t.time));
}
}
static void handle_m(struct io *m_iop)
{
struct io *q_iop = dip_find_sec(m_iop->dip, IOP_Q, m_iop->t.sector);
iostat_merge(m_iop);
if (q_iop) {
q_iop->m_time = m_iop->t.time;
update_q2m(q_iop, tdelta(q_iop->t.time, m_iop->t.time));
}
}
void trace_getrq(struct io *g_iop)
{
if (io_setup(g_iop, IOP_G))
handle_g(g_iop);
io_release(g_iop);
}
void trace_insert(struct io *i_iop)
{
if (io_setup(i_iop, IOP_I))
handle_i(i_iop);
io_release(i_iop);
}
void trace_merge(struct io *m_iop)
{
if (io_setup(m_iop, IOP_M))
handle_m(m_iop);
io_release(m_iop);
}
|