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.
89 lines
2.0 KiB
89 lines
2.0 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"
|
|
|
|
#define BKT_WIDTH 5
|
|
#define MAX_BKT 19
|
|
#define EXCESS_BKT 20
|
|
#define NBKTS (EXCESS_BKT + 1)
|
|
|
|
struct hist_bkt {
|
|
struct d_info *dip;
|
|
int hist[NBKTS * sizeof(int)];
|
|
};
|
|
|
|
void *unplug_hist_alloc(struct d_info *dip)
|
|
{
|
|
struct hist_bkt *hbp;
|
|
|
|
if (unplug_hist_name == NULL)
|
|
return NULL;
|
|
|
|
hbp = calloc(1, sizeof(*hbp));
|
|
hbp->dip = dip;
|
|
|
|
return hbp;
|
|
}
|
|
|
|
void unplug_hist_add(struct io *u_iop)
|
|
{
|
|
struct d_info *dip;
|
|
|
|
dip = __dip_find(u_iop->t.device);
|
|
if (dip && dip->up_hist_handle) {
|
|
__u64 *val = u_iop->pdu;
|
|
int idx, n_unplugs = be64_to_cpu(*val);
|
|
struct hist_bkt *hbp = dip->up_hist_handle;
|
|
|
|
idx = (n_unplugs / BKT_WIDTH);
|
|
if (idx > EXCESS_BKT)
|
|
idx = EXCESS_BKT;
|
|
|
|
hbp->hist[idx]++;
|
|
}
|
|
}
|
|
|
|
void unplug_hist_free(void *arg)
|
|
{
|
|
if (arg) {
|
|
FILE *fp;
|
|
struct hist_bkt *hbp = arg;
|
|
size_t tlen = strlen(unplug_hist_name)
|
|
+ strlen(hbp->dip->dip_name) + 32;
|
|
char *oname = malloc(tlen);
|
|
|
|
sprintf(oname, "%s_%s.dat", unplug_hist_name,
|
|
hbp->dip->dip_name);
|
|
if ((fp = my_fopen(oname, "w")) != NULL) {
|
|
int i;
|
|
|
|
for (i = 0; i < NBKTS; i++)
|
|
fprintf(fp, "%d %d\n", i, hbp->hist[i]);
|
|
fclose(fp);
|
|
|
|
} else
|
|
perror(oname);
|
|
|
|
free(oname);
|
|
free(hbp);
|
|
}
|
|
}
|