diff options
Diffstat (limited to 'tools/perf/util/symbol.h')
| -rw-r--r-- | tools/perf/util/symbol.h | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h index b62ca37c4b7..5f720dc076d 100644 --- a/tools/perf/util/symbol.h +++ b/tools/perf/util/symbol.h @@ -97,7 +97,8 @@ struct symbol_conf {  			kptr_restrict,  			annotate_asm_raw,  			annotate_src, -			event_group; +			event_group, +			demangle;  	const char	*vmlinux_name,  			*kallsyms_name,  			*source_prefix, @@ -155,6 +156,12 @@ struct branch_info {  	struct branch_flags flags;  }; +struct mem_info { +	struct addr_map_symbol iaddr; +	struct addr_map_symbol daddr; +	union perf_mem_data_src data_src; +}; +  struct addr_location {  	struct thread *thread;  	struct map    *map; |