Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
12a81c8d
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
12a81c8d
编写于
14年前
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'core' of
git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile
into perf/core
上级
43d7383b
729419f0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
3 deletion
+16
-3
arch/x86/oprofile/nmi_int.c
arch/x86/oprofile/nmi_int.c
+14
-2
drivers/oprofile/event_buffer.c
drivers/oprofile/event_buffer.c
+2
-1
未找到文件。
arch/x86/oprofile/nmi_int.c
浏览文件 @
12a81c8d
...
...
@@ -634,6 +634,18 @@ static int __init ppro_init(char **cpu_type)
if
(
force_arch_perfmon
&&
cpu_has_arch_perfmon
)
return
0
;
/*
* Documentation on identifying Intel processors by CPU family
* and model can be found in the Intel Software Developer's
* Manuals (SDM):
*
* http://www.intel.com/products/processor/manuals/
*
* As of May 2010 the documentation for this was in the:
* "Intel 64 and IA-32 Architectures Software Developer's
* Manual Volume 3B: System Programming Guide", "Table B-1
* CPUID Signature Values of DisplayFamily_DisplayModel".
*/
switch
(
cpu_model
)
{
case
0
...
2
:
*
cpu_type
=
"i386/ppro"
;
...
...
@@ -655,12 +667,12 @@ static int __init ppro_init(char **cpu_type)
case
15
:
case
23
:
*
cpu_type
=
"i386/core_2"
;
break
;
case
0x1a
:
case
0x2e
:
case
26
:
spec
=
&
op_arch_perfmon_spec
;
*
cpu_type
=
"i386/core_i7"
;
break
;
case
28
:
case
0x1c
:
*
cpu_type
=
"i386/atom"
;
break
;
default:
...
...
This diff is collapsed.
Click to expand it.
drivers/oprofile/event_buffer.c
浏览文件 @
12a81c8d
...
...
@@ -135,7 +135,7 @@ static int event_buffer_open(struct inode *inode, struct file *file)
* echo 1 >/dev/oprofile/enable
*/
return
0
;
return
nonseekable_open
(
inode
,
file
)
;
fail:
dcookie_unregister
(
file
->
private_data
);
...
...
@@ -205,4 +205,5 @@ const struct file_operations event_buffer_fops = {
.
open
=
event_buffer_open
,
.
release
=
event_buffer_release
,
.
read
=
event_buffer_read
,
.
llseek
=
no_llseek
,
};
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部