[<prev] [next>] [day] [month] [year] [list]
Message-ID: <tip-95ed6fd06e52bf850cd17524f0b36ed14300c10d@git.kernel.org>
Date: Thu, 4 Jun 2009 13:09:43 GMT
From: tip-bot for Peter Zijlstra <a.p.zijlstra@...llo.nl>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, acme@...hat.com, paulus@...ba.org,
hpa@...or.com, mingo@...hat.com, a.p.zijlstra@...llo.nl,
efault@....de, mtosatti@...hat.com, tglx@...utronix.de,
cjashfor@...ux.vnet.ibm.com, mingo@...e.hu
Subject: [tip:perfcounters/core] perf report: Simplify symbol output
Commit-ID: 95ed6fd06e52bf850cd17524f0b36ed14300c10d
Gitweb: http://git.kernel.org/tip/95ed6fd06e52bf850cd17524f0b36ed14300c10d
Author: Peter Zijlstra <a.p.zijlstra@...llo.nl>
AuthorDate: Thu, 4 Jun 2009 15:00:45 +0200
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Thu, 4 Jun 2009 14:04:50 +0200
perf report: Simplify symbol output
The DSO can be printed already - no need to repeat it in the
symbol field.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Mike Galbraith <efault@....de>
Cc: Paul Mackerras <paulus@...ba.org>
Cc: Corey Ashford <cjashfor@...ux.vnet.ibm.com>
Cc: Marcelo Tosatti <mtosatti@...hat.com>
Cc: Arnaldo Carvalho de Melo <acme@...hat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
Documentation/perf_counter/builtin-report.c | 17 ++++++-----------
1 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/Documentation/perf_counter/builtin-report.c b/Documentation/perf_counter/builtin-report.c
index ff6f657..56c664d 100644
--- a/Documentation/perf_counter/builtin-report.c
+++ b/Documentation/perf_counter/builtin-report.c
@@ -382,7 +382,7 @@ sort__comm_print(FILE *fp, struct hist_entry *self)
}
static struct sort_entry sort_comm = {
- .header = " Command",
+ .header = " Command",
.cmp = sort__comm_cmp,
.collapse = sort__comm_collapse,
.print = sort__comm_print,
@@ -414,11 +414,11 @@ sort__dso_print(FILE *fp, struct hist_entry *self)
if (self->dso)
return fprintf(fp, " %-25s", self->dso->name);
- return fprintf(fp, " %016llx", (__u64)self->ip);
+ return fprintf(fp, " %016llx ", (__u64)self->ip);
}
static struct sort_entry sort_dso = {
- .header = " Shared Object ",
+ .header = " Shared Object ",
.cmp = sort__dso_cmp,
.print = sort__dso_print,
};
@@ -447,21 +447,16 @@ sort__sym_print(FILE *fp, struct hist_entry *self)
if (verbose)
ret += fprintf(fp, " %#018llx", (__u64)self->ip);
- if (self->dso)
- ret += fprintf(fp, " %s: ", self->dso->name);
- else
- ret += fprintf(fp, " %#016llx: ", (__u64)self->ip);
-
if (self->sym)
- ret += fprintf(fp, "%s", self->sym->name);
+ ret += fprintf(fp, " %s", self->sym->name);
else
- ret += fprintf(fp, "%#016llx", (__u64)self->ip);
+ ret += fprintf(fp, " %#016llx", (__u64)self->ip);
return ret;
}
static struct sort_entry sort_sym = {
- .header = " Shared Object: Symbol",
+ .header = " Symbol",
.cmp = sort__sym_cmp,
.print = sort__sym_print,
};
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists