Commit 95ed6fd0 authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Ingo Molnar
Browse files

perf report: Simplify symbol output



The DSO can be printed already - no need to repeat it in the
symbol field.

Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent af794b94
Loading
Loading
Loading
Loading
+6 −11
Original line number Diff line number Diff line
@@ -447,11 +447,6 @@ 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);
	else
@@ -461,7 +456,7 @@ sort__sym_print(FILE *fp, struct hist_entry *self)
}

static struct sort_entry sort_sym = {
	.header = " Shared Object: Symbol",
	.header = " Symbol",
	.cmp	= sort__sym_cmp,
	.print	= sort__sym_print,
};