[PATCH V5 3/3] perf tool: check buildid for symoff

From: Kan Liang
Date: Mon Nov 24 2014 - 11:19:00 EST


From: Kan Liang <kan.liang@xxxxxxxxx>

symoff can support both same binaries and different binaries. However,
the offset may be changed for different binaries. This patch checks the
buildid of perf.data. If they are from different binaries, print a
warning to notify the user.

Signed-off-by: Kan Liang <kan.liang@xxxxxxxxx>
---
tools/perf/builtin-diff.c | 25 +++++++++++++++++++++++++
tools/perf/util/sort.c | 3 +++
tools/perf/util/sort.h | 1 +
3 files changed, 29 insertions(+)

diff --git a/tools/perf/builtin-diff.c b/tools/perf/builtin-diff.c
index 03a4001..2a8c17a 100644
--- a/tools/perf/builtin-diff.c
+++ b/tools/perf/builtin-diff.c
@@ -678,6 +678,28 @@ static void data__free(struct data__file *d)
}
}

+static void buildid_check(void)
+{
+ struct dsos *base_k_dsos = &data__files[0].session->machines.host.kernel_dsos;
+ struct dsos *base_u_dsos = &data__files[0].session->machines.host.user_dsos;
+ struct dsos *k_dsos_tmp, *u_dsos_tmp;
+ struct data__file *d;
+ int i;
+
+ data__for_each_file_new(i, d) {
+ k_dsos_tmp = &d->session->machines.host.kernel_dsos;
+ u_dsos_tmp = &d->session->machines.host.user_dsos;
+
+ if (!dsos__build_ids_equal(base_k_dsos, k_dsos_tmp))
+ pr_warning("The perf.data come from different kernel. "
+ "The kernel symbol offset may vary for different kernel.\n");
+
+ if (!dsos__build_ids_equal(base_u_dsos, u_dsos_tmp))
+ pr_warning("The perf.data come from different user binary. "
+ "The user space symbol offset may vary for different binaries.\n");
+ }
+}
+
static int __cmd_diff(void)
{
struct data__file *d;
@@ -700,6 +722,9 @@ static int __cmd_diff(void)
perf_evlist__collapse_resort(d->session->evlist);
}

+ if (sort__has_symoff)
+ buildid_check();
+
data_process();

out_delete:
diff --git a/tools/perf/util/sort.c b/tools/perf/util/sort.c
index e6583c9..c964cbc 100644
--- a/tools/perf/util/sort.c
+++ b/tools/perf/util/sort.c
@@ -21,6 +21,7 @@ int sort__need_collapse = 0;
int sort__has_parent = 0;
int sort__has_sym = 0;
int sort__has_dso = 0;
+int sort__has_symoff = 0;
enum sort_mode sort__mode = SORT_MODE__NORMAL;


@@ -1493,6 +1494,7 @@ int sort_dimension__add(const char *tok)
} else if (sd->entry == &sort_dso) {
sort__has_dso = 1;
} else if (sd->entry == &sort_symoff) {
+ sort__has_symoff = 1;
/*
* For symoff sort key, not only the offset but also the
* symbol name should be compared.
@@ -1877,6 +1879,7 @@ void reset_output_field(void)
sort__has_parent = 0;
sort__has_sym = 0;
sort__has_dso = 0;
+ sort__has_symoff = 0;

field_order = NULL;
sort_order = NULL;
diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h
index ea0122f..d2f9782 100644
--- a/tools/perf/util/sort.h
+++ b/tools/perf/util/sort.h
@@ -34,6 +34,7 @@ extern int have_ignore_callees;
extern int sort__need_collapse;
extern int sort__has_parent;
extern int sort__has_sym;
+extern int sort__has_symoff;
extern enum sort_mode sort__mode;
extern struct sort_entry sort_comm;
extern struct sort_entry sort_dso;
--
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/