[PATCH] Add Alan's btt tool
[blktrace.git] / btt / devmap.c
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>
22
23 #include "globals.h"
24 struct devmap *all_devmaps = NULL;
25 void dev_map_add(struct devmap *dmp)
26 {
27         struct devmap *this = zmalloc(sizeof(*this));
28
29         *this = *dmp;
30         this->next = all_devmaps;
31         all_devmaps = this;
32 }
33
34 struct devmap *dev_map_find(__u32 device)
35 {
36         char this[128];
37         struct devmap *dmp;
38
39         sprintf(this, "%u,%u", MAJOR(device), MINOR(device));
40         for (dmp = all_devmaps; dmp != NULL; dmp = dmp->next)
41                 if (!strcmp(this, dmp->devno))
42                         break;
43
44         return dmp;
45 }
46
47 int dev_map_read(char *fname)
48 {
49         char line[256];
50         struct devmap dm;
51         FILE *fp = fopen(fname, "r");
52
53         if (!fp) {
54                 perror(fname);
55                 return 1;
56         }
57
58         while (fscanf(fp, "%255[a-zA-Z0-9 :.,/]\n", line) == 1) {
59                 if (strstr(line, "Device") != NULL) continue;
60                 if (sscanf(line, "%s %s %u %u %u %u %s %s %u %u %s",
61                                 &dm.device[0], &dm.model[0], &dm.host, &dm.bus,
62                                 &dm.target, &dm.lun, &dm.node[0], &dm.pci[0],
63                                 &dm.irq, &dm.cpu, &dm.devno[0]) != 11)
64                         break;
65                 dev_map_add(&dm);
66         }
67
68         return 0;
69 }