perf symbols: Constify dso->long_name

Same reason as for dso->short_name, it may point to a const string, and
in most places it is treated as const, i.e. it is just accessed for
using its contents as a key or to show it on reports.

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-nf7mxf33zt5qw207pbxxryot@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 7e155d4d
...@@ -900,7 +900,7 @@ int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize) ...@@ -900,7 +900,7 @@ int symbol__annotate(struct symbol *sym, struct map *map, size_t privsize)
* cache, or is just a kallsyms file, well, lets hope that this * cache, or is just a kallsyms file, well, lets hope that this
* DSO is the same as when 'perf record' ran. * DSO is the same as when 'perf record' ran.
*/ */
filename = dso->long_name; filename = (char *)dso->long_name;
snprintf(symfs_filename, sizeof(symfs_filename), "%s%s", snprintf(symfs_filename, sizeof(symfs_filename), "%s%s",
symbol_conf.symfs, filename); symbol_conf.symfs, filename);
free_filename = false; free_filename = false;
......
...@@ -67,7 +67,7 @@ int dso__binary_type_file(struct dso *dso, enum dso_binary_type type, ...@@ -67,7 +67,7 @@ int dso__binary_type_file(struct dso *dso, enum dso_binary_type type,
case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO: case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
{ {
char *last_slash; const char *last_slash;
size_t len; size_t len;
size_t dir_size; size_t dir_size;
...@@ -386,13 +386,13 @@ struct dso *dso__kernel_findnew(struct machine *machine, const char *name, ...@@ -386,13 +386,13 @@ struct dso *dso__kernel_findnew(struct machine *machine, const char *name,
return dso; return dso;
} }
void dso__set_long_name(struct dso *dso, char *name, bool name_allocated) void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated)
{ {
if (name == NULL) if (name == NULL)
return; return;
if (dso->long_name_allocated) if (dso->long_name_allocated)
free(dso->long_name); free((char *)dso->long_name);
dso->long_name = name; dso->long_name = name;
dso->long_name_len = strlen(name); dso->long_name_len = strlen(name);
...@@ -414,7 +414,7 @@ void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated) ...@@ -414,7 +414,7 @@ void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated)
static void dso__set_basename(struct dso *dso) static void dso__set_basename(struct dso *dso)
{ {
dso__set_short_name(dso, basename(dso->long_name), false); dso__set_short_name(dso, basename((char *)dso->long_name), false);
} }
int dso__name_len(const struct dso *dso) int dso__name_len(const struct dso *dso)
...@@ -478,7 +478,7 @@ void dso__delete(struct dso *dso) ...@@ -478,7 +478,7 @@ void dso__delete(struct dso *dso)
if (dso->short_name_allocated) if (dso->short_name_allocated)
free((char *)dso->short_name); free((char *)dso->short_name);
if (dso->long_name_allocated) if (dso->long_name_allocated)
free(dso->long_name); free((char *)dso->long_name);
dso_cache__free(&dso->cache); dso_cache__free(&dso->cache);
dso__free_a2l(dso); dso__free_a2l(dso);
free(dso->symsrc_filename); free(dso->symsrc_filename);
......
...@@ -96,7 +96,7 @@ struct dso { ...@@ -96,7 +96,7 @@ struct dso {
u8 rel; u8 rel;
u8 build_id[BUILD_ID_SIZE]; u8 build_id[BUILD_ID_SIZE];
const char *short_name; const char *short_name;
char *long_name; const char *long_name;
u16 long_name_len; u16 long_name_len;
u16 short_name_len; u16 short_name_len;
char name[0]; char name[0];
...@@ -111,7 +111,7 @@ struct dso *dso__new(const char *name); ...@@ -111,7 +111,7 @@ struct dso *dso__new(const char *name);
void dso__delete(struct dso *dso); void dso__delete(struct dso *dso);
void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated); void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated);
void dso__set_long_name(struct dso *dso, char *name, bool name_allocated); void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated);
int dso__name_len(const struct dso *dso); int dso__name_len(const struct dso *dso);
......
...@@ -177,7 +177,7 @@ perf_header__set_cmdline(int argc, const char **argv) ...@@ -177,7 +177,7 @@ perf_header__set_cmdline(int argc, const char **argv)
continue; \ continue; \
else else
static int write_buildid(char *name, size_t name_len, u8 *build_id, static int write_buildid(const char *name, size_t name_len, u8 *build_id,
pid_t pid, u16 misc, int fd) pid_t pid, u16 misc, int fd)
{ {
int err; int err;
...@@ -209,7 +209,7 @@ static int __dsos__write_buildid_table(struct list_head *head, ...@@ -209,7 +209,7 @@ static int __dsos__write_buildid_table(struct list_head *head,
dsos__for_each_with_build_id(pos, head) { dsos__for_each_with_build_id(pos, head) {
int err; int err;
char *name; const char *name;
size_t name_len; size_t name_len;
if (!pos->hit) if (!pos->hit)
...@@ -387,7 +387,7 @@ static int dso__cache_build_id(struct dso *dso, struct machine *machine, ...@@ -387,7 +387,7 @@ static int dso__cache_build_id(struct dso *dso, struct machine *machine,
{ {
bool is_kallsyms = dso->kernel && dso->long_name[0] != '/'; bool is_kallsyms = dso->kernel && dso->long_name[0] != '/';
bool is_vdso = is_vdso_map(dso->short_name); bool is_vdso = is_vdso_map(dso->short_name);
char *name = dso->long_name; const char *name = dso->long_name;
char nm[PATH_MAX]; char nm[PATH_MAX];
if (dso__is_kcore(dso)) { if (dso__is_kcore(dso)) {
......
...@@ -255,7 +255,7 @@ char *get_srcline(struct dso *dso, unsigned long addr) ...@@ -255,7 +255,7 @@ char *get_srcline(struct dso *dso, unsigned long addr)
char *file = NULL; char *file = NULL;
unsigned line = 0; unsigned line = 0;
char *srcline; char *srcline;
char *dso_name; const char *dso_name;
if (!dso->has_srcline) if (!dso->has_srcline)
return SRCLINE_UNKNOWN; return SRCLINE_UNKNOWN;
......
...@@ -1438,7 +1438,7 @@ int dso__load_vmlinux(struct dso *dso, struct map *map, ...@@ -1438,7 +1438,7 @@ int dso__load_vmlinux(struct dso *dso, struct map *map,
dso->data_type = DSO_BINARY_TYPE__GUEST_VMLINUX; dso->data_type = DSO_BINARY_TYPE__GUEST_VMLINUX;
else else
dso->data_type = DSO_BINARY_TYPE__VMLINUX; dso->data_type = DSO_BINARY_TYPE__VMLINUX;
dso__set_long_name(dso, (char *)vmlinux, vmlinux_allocated); dso__set_long_name(dso, vmlinux, vmlinux_allocated);
dso__set_loaded(dso, map->type); dso__set_loaded(dso, map->type);
pr_debug("Using %s for symbols\n", symfs_vmlinux); pr_debug("Using %s for symbols\n", symfs_vmlinux);
} }
...@@ -1630,7 +1630,7 @@ static int dso__load_kernel_sym(struct dso *dso, struct map *map, ...@@ -1630,7 +1630,7 @@ static int dso__load_kernel_sym(struct dso *dso, struct map *map,
free(kallsyms_allocated_filename); free(kallsyms_allocated_filename);
if (err > 0 && !dso__is_kcore(dso)) { if (err > 0 && !dso__is_kcore(dso)) {
dso__set_long_name(dso, strdup("[kernel.kallsyms]"), true); dso__set_long_name(dso, "[kernel.kallsyms]", false);
map__fixup_start(map); map__fixup_start(map);
map__fixup_end(map); map__fixup_end(map);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment