blob: 5a1aed9f6bb446f8885115fe21a6e3a70ec43866 [file] [log] [blame]
Arnaldo Carvalho de Melo9f4e8ff2019-01-27 12:02:41 +01001// SPDX-License-Identifier: GPL-2.0
2#ifndef __PERF_MAP_SYMBOL
3#define __PERF_MAP_SYMBOL 1
4
5#include <linux/types.h>
6
7struct map;
8struct symbol;
9
10struct map_symbol {
11 struct map *map;
12 struct symbol *sym;
13};
14
15struct addr_map_symbol {
16 struct map *map;
17 struct symbol *sym;
18 u64 addr;
19 u64 al_addr;
20 u64 phys_addr;
21};
22#endif // __PERF_MAP_SYMBOL