Home | History | Annotate | Download | only in linux-tools-perf

Lines Matching defs:vmlinux

31 	struct machine kallsyms, vmlinux;
39 * both vmlinux + .ko files and from /proc/kallsyms split by modules.
42 machine__init(&vmlinux, "", HOST_KERNEL_ID);
72 * same value in the vmlinux file we load.
87 * Now repeat step 2, this time for the vmlinux file we'll auto-locate.
89 if (machine__create_kernel_maps(&vmlinux) < 0) {
94 vmlinux_map = machine__kernel_map(&vmlinux, type);
100 * Locate a vmlinux file in the vmlinux path that has a buildid that
108 if (machine__load_vmlinux_path(&vmlinux, type,
118 * Now look at the symbols in the vmlinux DSO and check if we find all of them
184 pr_info("Maps only in vmlinux:\n");
186 for (nd = rb_first(&vmlinux.kmaps.maps[type]); nd; nd = rb_next(nd)) {
190 * the kernel will have the path for the vmlinux file being used,
204 pr_info("Maps in vmlinux with a different name in kallsyms:\n");
206 for (nd = rb_first(&vmlinux.kmaps.maps[type]); nd; nd = rb_next(nd)) {
614 .desc = "vmlinux symtab matches kallsyms",