aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLina Iyer <lina.iyer@linaro.org>2014-07-08 02:31:17 -0600
committerAmit Kucheria <amit.kucheria@verdurent.com>2014-07-08 11:15:57 +0200
commit74636f46b95dad2e5a20c919d02cfc4532256ab2 (patch)
treeb715e832362cd327034ab08a93c5b7e80aff6b56
parent09414b8f326c7f18dbb5d8369e415887b1cfe76f (diff)
Support trace-cmd report postprocessinglina
Distinguish the idlestat and trace-cmd report and uses respective format for postporcessing. Signed-off-by: Sandeep Tripathy <sandeep.tripathy@linaro.org> Signed-off-by: Lina Iyer <lina.iyer@linaro.org> Signed-off-by: Amit Kucheria <amit.kucheria@verdurent.com>
-rw-r--r--idlestat.c62
-rw-r--r--idlestat.h21
2 files changed, 54 insertions, 29 deletions
diff --git a/idlestat.c b/idlestat.c
index 0434864..0e0e1df 100644
--- a/idlestat.c
+++ b/idlestat.c
@@ -392,6 +392,7 @@ static struct cpuidle_cstates *build_cstate_info(int nrcpus)
for (cpu = 0; cpu < nrcpus; cpu++) {
int i;
struct cpuidle_cstate *c;
+
cstates[cpu].cstate_max = -1;
cstates[cpu].last_cstate = -1;
for (i = 0; i < MAXCSTATE; i++) {
@@ -782,8 +783,8 @@ static int store_irq(int cpu, int irqid, char *irqname,
#define TRACE_IRQ_FORMAT "%*[^[][%d] %*[^=]=%d%*[^=]=%16s"
#define TRACE_IPIIRQ_FORMAT "%*[^[][%d] %*[^=]=%d%*[^=]=%16s"
-#define TRACE_CMD_FORMAT "%*[^]]] %lf:%*[^=]=%u%*[^=]=%d"
-#define TRACE_FORMAT "%*[^]]]%*[^0-9] %lf:%*[^=]=%u%*[^=]=%u"
+#define TRACECMD_REPORT_FORMAT "%*[^]]] %lf:%*[^=]=%u%*[^=]=%d"
+#define TRACE_FORMAT "%*[^]]] %*s %lf:%*[^=]=%u%*[^=]=%d"
static int get_wakeup_irq(struct cpuidle_datas *datas, char *buffer, int count)
{
@@ -809,7 +810,7 @@ static int get_wakeup_irq(struct cpuidle_datas *datas, char *buffer, int count)
return -1;
}
-static struct cpuidle_datas *idlestat_load(const char *path)
+static struct cpuidle_datas *idlestat_load(struct program_options *options)
{
FILE *f;
unsigned int state = 0, freq = 0, cpu = 0, nrcpus = 0;
@@ -818,17 +819,34 @@ static struct cpuidle_datas *idlestat_load(const char *path)
struct cpuidle_datas *datas;
int ret;
- f = fopen(path, "r");
+ f = fopen(options->filename, "r");
if (!f) {
- fprintf(stderr, "%s: failed to open '%s': %m\n", __func__, path);
+ fprintf(stderr, "%s: failed to open '%s': %m\n", __func__,
+ options->filename);
return NULL;
}
/* version line */
fgets(buffer, BUFSIZE, f);
-
- fgets(buffer, BUFSIZE, f);
- assert(sscanf(buffer, "cpus=%u", &nrcpus) == 1);
+ if (strstr(buffer, "idlestat")) {
+ options->format = IDLESTAT_HEADER;
+ fgets(buffer, BUFSIZE, f);
+ assert(sscanf(buffer, "cpus=%u", &nrcpus) == 1);
+ fgets(buffer, BUFSIZE, f);
+ } else if (strstr(buffer, "# tracer")) {
+ options->format = TRACE_CMD_HEADER;
+ while(!feof(f)) {
+ if (buffer[0] != '#')
+ break;
+ if (strstr(buffer, "#P:"))
+ assert(sscanf(buffer, "#%*[^#]#P:%u", &nrcpus) == 1);
+ fgets(buffer, BUFSIZE, f);
+ }
+ } else {
+ fprintf(stderr, "%s: unrecognized import format in '%s'\n",
+ __func__, options->filename);
+ return NULL;
+ }
if (!nrcpus) {
fclose(f);
@@ -858,8 +876,6 @@ static struct cpuidle_datas *idlestat_load(const char *path)
datas->nrcpus = nrcpus;
- fgets(buffer, BUFSIZE, f);
-
/* read topology information */
read_cpu_topo_info(f, buffer);
@@ -911,7 +927,7 @@ struct cpuidle_datas *cluster_data(struct cpuidle_datas *datas)
return NULL;
result->nrcpus = -1; /* the cluster */
-
+ result->pstates = NULL;
result->cstates = calloc(sizeof(*result->cstates), 1);
if (!result->cstates) {
free(result);
@@ -1043,20 +1059,6 @@ static void version(const char *cmd)
printf("%s version %s\n", basename(cmd), IDLESTAT_VERSION);
}
-enum modes {
- TRACE=1,
- IMPORT
-};
-
-struct program_options {
- bool debug;
- bool dump;
- int iterations;
- int mode;
- unsigned int duration;
- char *filename;
-};
-
int getoptions(int argc, char *argv[], struct program_options *options)
{
struct option long_options[] = {
@@ -1075,7 +1077,8 @@ int getoptions(int argc, char *argv[], struct program_options *options)
memset(options, 0, sizeof(*options));
options->filename = NULL;
-
+ options->mode = -1;
+ options->format = -1;
while (1) {
int optindex = 0;
@@ -1127,7 +1130,7 @@ int getoptions(int argc, char *argv[], struct program_options *options)
if (options->iterations < 0)
fprintf(stderr, "dump values must be a positive value\n");
- if (options->mode <= 0) {
+ if (options->mode < 0) {
fprintf(stderr, "select a mode: --trace or --import\n");
return -1;
}
@@ -1190,7 +1193,7 @@ static int idlestat_store(const char *path)
return -1;
}
- fprintf(f, "version = %s\n", IDLESTAT_VERSION);
+ fprintf(f, "idlestat version = %s\n", IDLESTAT_VERSION);
fprintf(f, "cpus=%d\n", ret);
/* output topology information */
@@ -1370,7 +1373,8 @@ int main(int argc, char *argv[], char *const envp[])
}
/* Load the idle states information */
- datas = idlestat_load(options.filename);
+ datas = idlestat_load(&options);
+
if (!datas)
return 1;
diff --git a/idlestat.h b/idlestat.h
index 64b6ad5..4397984 100644
--- a/idlestat.h
+++ b/idlestat.h
@@ -116,4 +116,25 @@ struct cpuidle_datas {
int nrcpus;
};
+enum modes {
+ TRACE = 0,
+ IMPORT
+};
+
+enum formats {
+ IDLESTAT_HEADER = 0,
+ TRACE_CMD_HEADER
+};
+
+struct program_options {
+ bool debug;
+ bool dump;
+ int iterations;
+ int mode;
+ int format;
+ unsigned int duration;
+ char *filename;
+};
+
+
#endif