Separated out g/i/m trace handling.
[blktrace.git] / btt / devmap.c
CommitLineData
63eba147
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 <stdio.h>
63eba147 22#include "globals.h"
6eb42155 23
63eba147 24struct devmap *all_devmaps = NULL;
6eb42155 25
69040794
AB
26void dev_map_exit(void)
27{
28 struct devmap *dmp;
29
30 while ((dmp = all_devmaps) != NULL) {
31 all_devmaps = dmp->next;
32 free(dmp);
33 }
34}
35
63eba147
JA
36void dev_map_add(struct devmap *dmp)
37{
6eb42155 38 struct devmap *this = malloc(sizeof(struct devmap));
63eba147
JA
39
40 *this = *dmp;
41 this->next = all_devmaps;
42 all_devmaps = this;
43}
44
45struct devmap *dev_map_find(__u32 device)
46{
47 char this[128];
48 struct devmap *dmp;
49
50 sprintf(this, "%u,%u", MAJOR(device), MINOR(device));
51 for (dmp = all_devmaps; dmp != NULL; dmp = dmp->next)
52 if (!strcmp(this, dmp->devno))
53 break;
54
55 return dmp;
56}
57
58int dev_map_read(char *fname)
59{
60 char line[256];
61 struct devmap dm;
62 FILE *fp = fopen(fname, "r");
63
64 if (!fp) {
65 perror(fname);
66 return 1;
67 }
68
6119854c 69 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
63eba147
JA
70 if (strstr(line, "Device") != NULL) continue;
71 if (sscanf(line, "%s %s %u %u %u %u %s %s %u %u %s",
72 &dm.device[0], &dm.model[0], &dm.host, &dm.bus,
73 &dm.target, &dm.lun, &dm.node[0], &dm.pci[0],
74 &dm.irq, &dm.cpu, &dm.devno[0]) != 11)
75 break;
76 dev_map_add(&dm);
77 }
78
79 return 0;
80}