Major revamping (ver 2.0)
[blktrace.git] / btt / trace_queue.c
CommitLineData
095181f2
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 */
21#include "globals.h"
22
4c48f14e 23static void handle_queue(struct io *q_iop)
095181f2 24{
4c48f14e
AB
25 seeki_add(q_iop->dip->q2q_handle, q_iop);
26 update_lq(&last_q, &all_avgs.q2q, q_iop->t.time);
27 update_qregion(&all_regions, q_iop->t.time);
28 dip_update_q(q_iop->dip, q_iop);
29 pip_update_q(q_iop);
30 if (!remapper_dev(q_iop->t.device))
31 update_q_histo(q_iop->t.bytes);
32
33 q_iop->i_time = q_iop->gm_time = q_iop->d_time = (__u64)-1;
34 q_iop->is_getrq = -1;
095181f2
JA
35}
36
d76c5b81 37void trace_queue(struct io *q_iop)
095181f2 38{
4c48f14e
AB
39 if (io_setup(q_iop, IOP_Q))
40 handle_queue(q_iop);
d76c5b81
AB
41 else
42 io_release(q_iop);
095181f2 43}