Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4538fad5
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看板
提交
4538fad5
编写于
10月 22, 2008
作者:
L
Len Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'cpuidle' into test
上级
ebd7e45f
89cedfef
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
12 addition
and
1 deletion
+12
-1
arch/x86/Kconfig
arch/x86/Kconfig
+3
-0
drivers/acpi/processor_idle.c
drivers/acpi/processor_idle.c
+1
-0
drivers/cpuidle/cpuidle.c
drivers/cpuidle/cpuidle.c
+8
-1
未找到文件。
arch/x86/Kconfig
浏览文件 @
4538fad5
...
...
@@ -123,6 +123,9 @@ config GENERIC_TIME_VSYSCALL
config ARCH_HAS_CPU_RELAX
def_bool y
config ARCH_HAS_DEFAULT_IDLE
def_bool y
config ARCH_HAS_CACHE_LINE_SIZE
def_bool y
...
...
drivers/acpi/processor_idle.c
浏览文件 @
4538fad5
...
...
@@ -1587,6 +1587,7 @@ static int acpi_idle_enter_bm(struct cpuidle_device *dev,
if
(
acpi_idle_bm_check
())
{
if
(
dev
->
safe_state
)
{
dev
->
last_state
=
dev
->
safe_state
;
return
dev
->
safe_state
->
enter
(
dev
,
dev
->
safe_state
);
}
else
{
local_irq_disable
();
...
...
drivers/cpuidle/cpuidle.c
浏览文件 @
4538fad5
...
...
@@ -56,7 +56,11 @@ static void cpuidle_idle_call(void)
if
(
pm_idle_old
)
pm_idle_old
();
else
#if defined(CONFIG_ARCH_HAS_DEFAULT_IDLE)
default_idle
();
#else
local_irq_enable
();
#endif
return
;
}
...
...
@@ -67,8 +71,11 @@ static void cpuidle_idle_call(void)
target_state
=
&
dev
->
states
[
next_state
];
/* enter the state and update stats */
dev
->
last_residency
=
target_state
->
enter
(
dev
,
target_state
);
dev
->
last_state
=
target_state
;
dev
->
last_residency
=
target_state
->
enter
(
dev
,
target_state
);
if
(
dev
->
last_state
)
target_state
=
dev
->
last_state
;
target_state
->
time
+=
(
unsigned
long
long
)
dev
->
last_residency
;
target_state
->
usage
++
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录