perf symbols: Clarify method to get DSO binary_type filename
authorArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 16 Dec 2013 20:03:18 +0000 (17:03 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 16 Dec 2013 20:03:18 +0000 (17:03 -0300)
Using dso__binary_type_file() make it look like this function will
return a file, not just its filename, so rename it to:

dso__read_binary_type_filename()

to make its purpose clear, just like we have:

dso__read_running_kernel_build_id()

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-vkf3upzrfrxtr01wueej4xw4@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/dso.c
tools/perf/util/dso.h
tools/perf/util/symbol.c

index e7f4449088e45dfc36b69ead1600e3c08896d64b..eef166212324fb2881c21bc661a4ac36ce4652ed 100644 (file)
@@ -28,8 +28,9 @@ char dso__symtab_origin(const struct dso *dso)
        return origin[dso->symtab_type];
 }
 
-int dso__binary_type_file(const struct dso *dso, enum dso_binary_type type,
-                         char *root_dir, char *filename, size_t size)
+int dso__read_binary_type_filename(const struct dso *dso,
+                                  enum dso_binary_type type,
+                                  char *root_dir, char *filename, size_t size)
 {
        char build_id_hex[BUILD_ID_SIZE * 2 + 1];
        int ret = 0;
@@ -137,19 +138,18 @@ int dso__binary_type_file(const struct dso *dso, enum dso_binary_type type,
 
 static int open_dso(struct dso *dso, struct machine *machine)
 {
-       char *root_dir = (char *) "";
-       char *name;
        int fd;
+       char *root_dir = (char *)"";
+       char *name = malloc(PATH_MAX);
 
-       name = malloc(PATH_MAX);
        if (!name)
                return -ENOMEM;
 
        if (machine)
                root_dir = machine->root_dir;
 
-       if (dso__binary_type_file(dso, dso->data_type,
-                                 root_dir, name, PATH_MAX)) {
+       if (dso__read_binary_type_filename(dso, dso->data_type,
+                                           root_dir, name, PATH_MAX)) {
                free(name);
                return -EINVAL;
        }
index e1cc50698137191a394abefe106a0699aa0d6bee..aa3384745d751869846d08d855db3510f3b32bc9 100644 (file)
@@ -128,8 +128,8 @@ void dso__read_running_kernel_build_id(struct dso *dso,
 int dso__kernel_module_get_build_id(struct dso *dso, const char *root_dir);
 
 char dso__symtab_origin(const struct dso *dso);
-int dso__binary_type_file(const struct dso *dso, enum dso_binary_type type,
-                         char *root_dir, char *filename, size_t size);
+int dso__read_binary_type_filename(const struct dso *dso, enum dso_binary_type type,
+                                  char *root_dir, char *filename, size_t size);
 
 int dso__data_fd(struct dso *dso, struct machine *machine);
 ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
index 61eb1cddf01abce54a8828e632fa91ebe9ba1d73..9ee4b80dac57255943d3a22cec0a323363ce4e73 100644 (file)
@@ -1258,8 +1258,8 @@ int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter)
 
                enum dso_binary_type symtab_type = binary_type_symtab[i];
 
-               if (dso__binary_type_file(dso, symtab_type,
-                                         root_dir, name, PATH_MAX))
+               if (dso__read_binary_type_filename(dso, symtab_type,
+                                                  root_dir, name, PATH_MAX))
                        continue;
 
                /* Name is now the name of the next image to try */
This page took 0.030579 seconds and 5 git commands to generate.