You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.1 KiB
72 lines
2.1 KiB
/*
|
|
* 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 inline void latency_out(FILE *ofp, __u64 tstamp, __u64 latency)
|
|
{
|
|
if (ofp)
|
|
fprintf(ofp, "%lf %lf\n", TO_SEC(tstamp), TO_SEC(latency));
|
|
}
|
|
|
|
FILE *latency_open(struct d_info *dip, char *name, char *post)
|
|
{
|
|
FILE *fp = NULL;
|
|
|
|
if (name) {
|
|
size_t tlen = strlen(name) + strlen(dip->dip_name)
|
|
+ strlen(post) + 32;
|
|
char oname[tlen];
|
|
|
|
sprintf(oname, "%s_%s_%s.dat", name, dip->dip_name, post);
|
|
if ((fp = my_fopen(oname, "w")) == NULL)
|
|
perror(oname);
|
|
else
|
|
add_file(fp, strdup(oname));
|
|
}
|
|
|
|
return fp;
|
|
}
|
|
|
|
void latency_alloc(struct d_info *dip)
|
|
{
|
|
dip->q2d_ofp = latency_open(dip, q2d_name, "q2d");
|
|
dip->d2c_ofp = latency_open(dip, d2c_name, "d2c");
|
|
dip->q2c_ofp = latency_open(dip, q2c_name, "q2c");
|
|
}
|
|
|
|
void latency_q2d(struct d_info *dip, __u64 tstamp, __u64 latency)
|
|
{
|
|
plat_x2c(dip->q2d_plat_handle, tstamp, latency);
|
|
latency_out(dip->q2d_ofp, tstamp, latency);
|
|
}
|
|
|
|
void latency_d2c(struct d_info *dip, __u64 tstamp, __u64 latency)
|
|
{
|
|
plat_x2c(dip->d2c_plat_handle, tstamp, latency);
|
|
latency_out(dip->d2c_ofp, tstamp, latency);
|
|
}
|
|
|
|
void latency_q2c(struct d_info *dip, __u64 tstamp, __u64 latency)
|
|
{
|
|
plat_x2c(dip->q2c_plat_handle, tstamp, latency);
|
|
latency_out(dip->q2c_ofp, tstamp, latency);
|
|
}
|