perf machine: Adopt findnew_kernel method

It never was a 'struct dso' method, so fix that by rename
dso__kernel_findnew() to machine__findnew_kernel().

At some point I'll move it all to the machine.[ch] files, for now
lets ease patch review by not moving too much stuff.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: David Ahern <dsahern@gmail.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-zrxmblgsg5vx0iv4rhvq2f6l@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent cec83938
...@@ -827,8 +827,8 @@ struct map *dso__new_map(const char *name) ...@@ -827,8 +827,8 @@ struct map *dso__new_map(const char *name)
return map; return map;
} }
struct dso *dso__kernel_findnew(struct machine *machine, const char *name, struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
const char *short_name, int dso_type) const char *short_name, int dso_type)
{ {
/* /*
* The kernel dso could be created by build_id processing. * The kernel dso could be created by build_id processing.
......
...@@ -294,8 +294,8 @@ ssize_t dso__data_read_addr(struct dso *dso, struct map *map, ...@@ -294,8 +294,8 @@ ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by); bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by);
struct map *dso__new_map(const char *name); struct map *dso__new_map(const char *name);
struct dso *dso__kernel_findnew(struct machine *machine, const char *name, struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
const char *short_name, int dso_type); const char *short_name, int dso_type);
void dsos__add(struct dsos *dsos, struct dso *dso); void dsos__add(struct dsos *dsos, struct dso *dso);
struct dso *dsos__addnew(struct dsos *dsos, const char *name); struct dso *dsos__addnew(struct dsos *dsos, const char *name);
......
...@@ -640,9 +640,8 @@ static struct dso *machine__get_kernel(struct machine *machine) ...@@ -640,9 +640,8 @@ static struct dso *machine__get_kernel(struct machine *machine)
if (!vmlinux_name) if (!vmlinux_name)
vmlinux_name = "[kernel.kallsyms]"; vmlinux_name = "[kernel.kallsyms]";
kernel = dso__kernel_findnew(machine, vmlinux_name, kernel = machine__findnew_kernel(machine, vmlinux_name,
"[kernel]", "[kernel]", DSO_TYPE_KERNEL);
DSO_TYPE_KERNEL);
} else { } else {
char bf[PATH_MAX]; char bf[PATH_MAX];
...@@ -652,9 +651,9 @@ static struct dso *machine__get_kernel(struct machine *machine) ...@@ -652,9 +651,9 @@ static struct dso *machine__get_kernel(struct machine *machine)
vmlinux_name = machine__mmap_name(machine, bf, vmlinux_name = machine__mmap_name(machine, bf,
sizeof(bf)); sizeof(bf));
kernel = dso__kernel_findnew(machine, vmlinux_name, kernel = machine__findnew_kernel(machine, vmlinux_name,
"[guest.kernel]", "[guest.kernel]",
DSO_TYPE_GUEST_KERNEL); DSO_TYPE_GUEST_KERNEL);
} }
if (kernel != NULL && (!kernel->has_build_id)) if (kernel != NULL && (!kernel->has_build_id))
......
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