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
WIP FPC-III support
[linux/fpc-iii.git]
/
tools
/
perf
/
util
/
map_symbol.h
blob
7d22ade082c8f891c5a718d1b549655621c841bb
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
maps
;
8
struct
map
;
9
struct
symbol
;
10
11
struct
map_symbol
{
12
struct
maps
*
maps
;
13
struct
map
*
map
;
14
struct
symbol
*
sym
;
15
};
16
17
struct
addr_map_symbol
{
18
struct
map_symbol ms
;
19
u64 addr
;
20
u64 al_addr
;
21
u64 phys_addr
;
22
u64 data_page_size
;
23
};
24
#endif
// __PERF_MAP_SYMBOL