perf tools: Move build_id__sprintf into build-id object
authorJiri Olsa <jolsa@redhat.com>
Sat, 27 Oct 2012 21:18:28 +0000 (23:18 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 29 Oct 2012 13:34:46 +0000 (11:34 -0200)
Moving build_id__sprintf function into build-id object.

Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Reviewed-by: Namhyung Kim <namhyung@kernel.org>
Tested-by: Namhyung Kim <namhyung@kernel.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1351372712-21104-2-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-buildid-cache.c
tools/perf/util/build-id.c
tools/perf/util/build-id.h
tools/perf/util/header.c
tools/perf/util/map.c
tools/perf/util/symbol.c
tools/perf/util/symbol.h

index d37e077f4b147727aba0b3bee7bf080dccdd1678..edb26ea78dd3fa5f1d2327501ea283cda728f309 100644 (file)
@@ -13,7 +13,7 @@
 #include "util/header.h"
 #include "util/parse-options.h"
 #include "util/strlist.h"
-#include "util/symbol.h"
+#include "util/build-id.h"
 
 static int build_id_cache__add_file(const char *filename, const char *debugdir)
 {
index 94ca117b8d6e1e154545ecb01e69102abe6e7d1d..5295625c0c009af43e980a1182e6748959df0734 100644 (file)
@@ -70,6 +70,21 @@ struct perf_tool build_id__mark_dso_hit_ops = {
        .build_id        = perf_event__process_build_id,
 };
 
+int build_id__sprintf(const u8 *build_id, int len, char *bf)
+{
+       char *bid = bf;
+       const u8 *raw = build_id;
+       int i;
+
+       for (i = 0; i < len; ++i) {
+               sprintf(bid, "%02x", *raw);
+               ++raw;
+               bid += 2;
+       }
+
+       return raw - build_id;
+}
+
 char *dso__build_id_filename(struct dso *self, char *bf, size_t size)
 {
        char build_id_hex[BUILD_ID_SIZE * 2 + 1];
index 45c500bd5b9fa574bad30e39d7004e61ce165702..f6d9ff9cab209de115d6020702be0111c130b5e4 100644 (file)
@@ -5,6 +5,7 @@
 
 extern struct perf_tool build_id__mark_dso_hit_ops;
 
+int build_id__sprintf(const u8 *build_id, int len, char *bf);
 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
 
 int build_id__mark_dso_hit(struct perf_tool *tool, union perf_event *event,
index 7daad237dea530f504f764b8189b06957b1905e6..514ed1bd41a260b79b8aead5592943c0a4143bb3 100644 (file)
@@ -23,6 +23,7 @@
 #include "pmu.h"
 #include "vdso.h"
 #include "strbuf.h"
+#include "build-id.h"
 
 static bool no_buildid_cache = false;
 
index 6109fa4d14cd79a5fc87e39e93df6bda46daa66c..9b40c444039c3aebfb685cb7f22ceb23c623393d 100644 (file)
@@ -10,6 +10,7 @@
 #include "thread.h"
 #include "strlist.h"
 #include "vdso.h"
+#include "build-id.h"
 
 const char *map_type__name[MAP__NR_TYPES] = {
        [MAP__FUNCTION] = "Functions",
index e2e8c697cffecf039fa769fc8b1f5b21818980c1..e36e8c2755b66178fb7eb25b7dcd1cea7c2e1254 100644 (file)
@@ -504,21 +504,6 @@ void dso__sort_by_name(struct dso *dso, enum map_type type)
                                     &dso->symbols[type]);
 }
 
-int build_id__sprintf(const u8 *build_id, int len, char *bf)
-{
-       char *bid = bf;
-       const u8 *raw = build_id;
-       int i;
-
-       for (i = 0; i < len; ++i) {
-               sprintf(bid, "%02x", *raw);
-               ++raw;
-               bid += 2;
-       }
-
-       return raw - build_id;
-}
-
 size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
 {
        char sbuild_id[BUILD_ID_SIZE * 2 + 1];
index 8b6ef7fac745824b6844c2b9462742bd28460d61..d70f6764524ee9cd086c9df0b4cd1fdfcdcf6269 100644 (file)
@@ -338,7 +338,6 @@ struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
 int filename__read_build_id(const char *filename, void *bf, size_t size);
 int sysfs__read_build_id(const char *filename, void *bf, size_t size);
 bool __dsos__read_build_ids(struct list_head *head, bool with_hits);
-int build_id__sprintf(const u8 *build_id, int len, char *bf);
 int kallsyms__parse(const char *filename, void *arg,
                    int (*process_symbol)(void *arg, const char *name,
                                          char type, u64 start));