perf symbols: Remove unused dso__load_all_kallsyms() 'map' parameter

Only the 'dso' is needed, so ditch the struct used to pass (map, dso),
passing just the used 'dso' pointer.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-17a4gkk1cs4up4smkviymi2g@git.kernel.orgSigned-off-by: NArnaldo Carvalho de Melo <acme@redhat.com>
上级 4e0d1e8b
...@@ -608,11 +608,6 @@ int modules__parse(const char *filename, void *arg, ...@@ -608,11 +608,6 @@ int modules__parse(const char *filename, void *arg,
return err; return err;
} }
struct process_kallsyms_args {
struct map *map;
struct dso *dso;
};
/* /*
* These are symbols in the kernel image, so make sure that * These are symbols in the kernel image, so make sure that
* sym is from a kernel DSO. * sym is from a kernel DSO.
...@@ -648,8 +643,8 @@ static int map__process_kallsym_symbol(void *arg, const char *name, ...@@ -648,8 +643,8 @@ static int map__process_kallsym_symbol(void *arg, const char *name,
char type, u64 start) char type, u64 start)
{ {
struct symbol *sym; struct symbol *sym;
struct process_kallsyms_args *a = arg; struct dso *dso = arg;
struct rb_root *root = &a->dso->symbols; struct rb_root *root = &dso->symbols;
if (!symbol_type__filter(type)) if (!symbol_type__filter(type))
return 0; return 0;
...@@ -676,11 +671,9 @@ static int map__process_kallsym_symbol(void *arg, const char *name, ...@@ -676,11 +671,9 @@ static int map__process_kallsym_symbol(void *arg, const char *name,
* so that we can in the next step set the symbol ->end address and then * so that we can in the next step set the symbol ->end address and then
* call kernel_maps__split_kallsyms. * call kernel_maps__split_kallsyms.
*/ */
static int dso__load_all_kallsyms(struct dso *dso, const char *filename, static int dso__load_all_kallsyms(struct dso *dso, const char *filename)
struct map *map)
{ {
struct process_kallsyms_args args = { .map = map, .dso = dso, }; return kallsyms__parse(filename, dso, map__process_kallsym_symbol);
return kallsyms__parse(filename, &args, map__process_kallsym_symbol);
} }
static int dso__split_kallsyms_for_kcore(struct dso *dso, struct map *map) static int dso__split_kallsyms_for_kcore(struct dso *dso, struct map *map)
...@@ -1300,7 +1293,7 @@ int __dso__load_kallsyms(struct dso *dso, const char *filename, ...@@ -1300,7 +1293,7 @@ int __dso__load_kallsyms(struct dso *dso, const char *filename,
if (symbol__restricted_filename(filename, "/proc/kallsyms")) if (symbol__restricted_filename(filename, "/proc/kallsyms"))
return -1; return -1;
if (dso__load_all_kallsyms(dso, filename, map) < 0) if (dso__load_all_kallsyms(dso, filename) < 0)
return -1; return -1;
if (kallsyms__delta(map, filename, &delta)) if (kallsyms__delta(map, filename, &delta))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册