Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
6364cb22
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6364cb22
编写于
10月 09, 2018
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'perf/urgent' into perf/core, to pick up fixes
Signed-off-by:
N
Ingo Molnar
<
mingo@kernel.org
>
上级
7c5314b8
c1883f10
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
19 addition
and
4 deletion
+19
-4
tools/perf/scripts/python/export-to-postgresql.py
tools/perf/scripts/python/export-to-postgresql.py
+9
-0
tools/perf/scripts/python/export-to-sqlite.py
tools/perf/scripts/python/export-to-sqlite.py
+5
-1
tools/perf/util/machine.c
tools/perf/util/machine.c
+5
-3
未找到文件。
tools/perf/scripts/python/export-to-postgresql.py
浏览文件 @
6364cb22
...
...
@@ -204,14 +204,23 @@ from ctypes import *
libpq
=
CDLL
(
"libpq.so.5"
)
PQconnectdb
=
libpq
.
PQconnectdb
PQconnectdb
.
restype
=
c_void_p
PQconnectdb
.
argtypes
=
[
c_char_p
]
PQfinish
=
libpq
.
PQfinish
PQfinish
.
argtypes
=
[
c_void_p
]
PQstatus
=
libpq
.
PQstatus
PQstatus
.
restype
=
c_int
PQstatus
.
argtypes
=
[
c_void_p
]
PQexec
=
libpq
.
PQexec
PQexec
.
restype
=
c_void_p
PQexec
.
argtypes
=
[
c_void_p
,
c_char_p
]
PQresultStatus
=
libpq
.
PQresultStatus
PQresultStatus
.
restype
=
c_int
PQresultStatus
.
argtypes
=
[
c_void_p
]
PQputCopyData
=
libpq
.
PQputCopyData
PQputCopyData
.
restype
=
c_int
PQputCopyData
.
argtypes
=
[
c_void_p
,
c_void_p
,
c_int
]
PQputCopyEnd
=
libpq
.
PQputCopyEnd
PQputCopyEnd
.
restype
=
c_int
PQputCopyEnd
.
argtypes
=
[
c_void_p
,
c_void_p
]
sys
.
path
.
append
(
os
.
environ
[
'PERF_EXEC_PATH'
]
+
\
...
...
tools/perf/scripts/python/export-to-sqlite.py
浏览文件 @
6364cb22
...
...
@@ -440,7 +440,11 @@ def branch_type_table(*x):
def
sample_table
(
*
x
):
if
branches
:
bind_exec
(
sample_query
,
18
,
x
)
for
xx
in
x
[
0
:
15
]:
sample_query
.
addBindValue
(
str
(
xx
))
for
xx
in
x
[
19
:
22
]:
sample_query
.
addBindValue
(
str
(
xx
))
do_query_
(
sample_query
)
else
:
bind_exec
(
sample_query
,
22
,
x
)
...
...
tools/perf/util/machine.c
浏览文件 @
6364cb22
...
...
@@ -2286,7 +2286,8 @@ static int append_inlines(struct callchain_cursor *cursor,
if
(
!
symbol_conf
.
inline_name
||
!
map
||
!
sym
)
return
ret
;
addr
=
map__rip_2objdump
(
map
,
ip
);
addr
=
map__map_ip
(
map
,
ip
);
addr
=
map__rip_2objdump
(
map
,
addr
);
inline_node
=
inlines__tree_find
(
&
map
->
dso
->
inlined_nodes
,
addr
);
if
(
!
inline_node
)
{
...
...
@@ -2312,7 +2313,7 @@ static int unwind_entry(struct unwind_entry *entry, void *arg)
{
struct
callchain_cursor
*
cursor
=
arg
;
const
char
*
srcline
=
NULL
;
u64
addr
;
u64
addr
=
entry
->
ip
;
if
(
symbol_conf
.
hide_unresolved
&&
entry
->
sym
==
NULL
)
return
0
;
...
...
@@ -2324,7 +2325,8 @@ static int unwind_entry(struct unwind_entry *entry, void *arg)
* Convert entry->ip from a virtual address to an offset in
* its corresponding binary.
*/
addr
=
map__map_ip
(
entry
->
map
,
entry
->
ip
);
if
(
entry
->
map
)
addr
=
map__map_ip
(
entry
->
map
,
entry
->
ip
);
srcline
=
callchain_srcline
(
entry
->
map
,
entry
->
sym
,
addr
);
return
callchain_cursor_append
(
cursor
,
entry
->
ip
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录