repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Linux 5.1.15
[linux/fpc-iii.git]
/
tools
/
perf
/
util
/
map_symbol.h
blob
5a1aed9f6bb446f8885115fe21a6e3a70ec43866
1
// SPDX-License-Identifier: GPL-2.0
2
#ifndef __PERF_MAP_SYMBOL
3
#define __PERF_MAP_SYMBOL 1
4
5
#include <linux/types.h>
6
7
struct
map
;
8
struct
symbol
;
9
10
struct
map_symbol
{
11
struct
map
*
map
;
12
struct
symbol
*
sym
;
13
};
14
15
struct
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