Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf machine: Introduce machine__find_kernel_symbol_by_name()

To be used in the 'vmlinux matches kallsyms' 'perf test' entry.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-m56g1853lz2c6nhnqxibq4jd@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+10
+10
tools/perf/util/machine.h
··· 180 180 } 181 181 182 182 static inline 183 + struct symbol *machine__find_kernel_symbol_by_name(struct machine *machine, 184 + enum map_type type, const char *name, 185 + struct map **mapp, 186 + symbol_filter_t filter) 187 + { 188 + return map_groups__find_symbol_by_name(&machine->kmaps, type, name, 189 + mapp, filter); 190 + } 191 + 192 + static inline 183 193 struct symbol *machine__find_kernel_function(struct machine *machine, u64 addr, 184 194 struct map **mapp, 185 195 symbol_filter_t filter)