Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
b5893c56
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看板
提交
b5893c56
编写于
19年前
作者:
R
Russell King
提交者:
Russell King
19年前
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ARM] 1/4 Move oprofile driver model code
Signed-off-by:
N
Russell King
<
rmk+kernel@arm.linux.org.uk
>
上级
90072059
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
47 addition
and
52 deletion
+47
-52
arch/arm/oprofile/common.c
arch/arm/oprofile/common.c
+47
-52
未找到文件。
arch/arm/oprofile/common.c
浏览文件 @
b5893c56
...
...
@@ -10,8 +10,8 @@
#include <linux/init.h>
#include <linux/oprofile.h>
#include <linux/errno.h>
#include <asm/semaphore.h>
#include <linux/sysdev.h>
#include <asm/semaphore.h>
#include "op_counter.h"
#include "op_arm_model.h"
...
...
@@ -20,57 +20,6 @@ static struct op_arm_model_spec *pmu_model;
static
int
pmu_enabled
;
static
struct
semaphore
pmu_sem
;
static
int
pmu_start
(
void
);
static
int
pmu_setup
(
void
);
static
void
pmu_stop
(
void
);
static
int
pmu_create_files
(
struct
super_block
*
,
struct
dentry
*
);
#ifdef CONFIG_PM
static
int
pmu_suspend
(
struct
sys_device
*
dev
,
pm_message_t
state
)
{
if
(
pmu_enabled
)
pmu_stop
();
return
0
;
}
static
int
pmu_resume
(
struct
sys_device
*
dev
)
{
if
(
pmu_enabled
)
pmu_start
();
return
0
;
}
static
struct
sysdev_class
oprofile_sysclass
=
{
set_kset_name
(
"oprofile"
),
.
resume
=
pmu_resume
,
.
suspend
=
pmu_suspend
,
};
static
struct
sys_device
device_oprofile
=
{
.
id
=
0
,
.
cls
=
&
oprofile_sysclass
,
};
static
int
__init
init_driverfs
(
void
)
{
int
ret
;
if
(
!
(
ret
=
sysdev_class_register
(
&
oprofile_sysclass
)))
ret
=
sysdev_register
(
&
device_oprofile
);
return
ret
;
}
static
void
exit_driverfs
(
void
)
{
sysdev_unregister
(
&
device_oprofile
);
sysdev_class_unregister
(
&
oprofile_sysclass
);
}
#else
#define init_driverfs() do { } while (0)
#define exit_driverfs() do { } while (0)
#endif
/* CONFIG_PM */
struct
op_counter_config
counter_config
[
OP_MAX_COUNTER
];
static
int
pmu_create_files
(
struct
super_block
*
sb
,
struct
dentry
*
root
)
...
...
@@ -126,6 +75,52 @@ static void pmu_stop(void)
up
(
&
pmu_sem
);
}
#ifdef CONFIG_PM
static
int
pmu_suspend
(
struct
sys_device
*
dev
,
pm_message_t
state
)
{
if
(
pmu_enabled
)
pmu_stop
();
return
0
;
}
static
int
pmu_resume
(
struct
sys_device
*
dev
)
{
if
(
pmu_enabled
)
pmu_start
();
return
0
;
}
static
struct
sysdev_class
oprofile_sysclass
=
{
set_kset_name
(
"oprofile"
),
.
resume
=
pmu_resume
,
.
suspend
=
pmu_suspend
,
};
static
struct
sys_device
device_oprofile
=
{
.
id
=
0
,
.
cls
=
&
oprofile_sysclass
,
};
static
int
__init
init_driverfs
(
void
)
{
int
ret
;
if
(
!
(
ret
=
sysdev_class_register
(
&
oprofile_sysclass
)))
ret
=
sysdev_register
(
&
device_oprofile
);
return
ret
;
}
static
void
exit_driverfs
(
void
)
{
sysdev_unregister
(
&
device_oprofile
);
sysdev_class_unregister
(
&
oprofile_sysclass
);
}
#else
#define init_driverfs() do { } while (0)
#define exit_driverfs() do { } while (0)
#endif
/* CONFIG_PM */
int
__init
pmu_init
(
struct
oprofile_operations
*
ops
,
struct
op_arm_model_spec
*
spec
)
{
init_MUTEX
(
&
pmu_sem
);
...
...
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部