Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
22d9aac2
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
22d9aac2
编写于
8月 15, 2008
作者:
A
Andi Kleen
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'cpuidle' into release-2.6.27
上级
a6006834
06d9e908
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
50 addition
and
18 deletion
+50
-18
drivers/cpuidle/governors/ladder.c
drivers/cpuidle/governors/ladder.c
+22
-4
drivers/cpuidle/governors/menu.c
drivers/cpuidle/governors/menu.c
+28
-14
未找到文件。
drivers/cpuidle/governors/ladder.c
浏览文件 @
22d9aac2
...
...
@@ -67,10 +67,17 @@ static int ladder_select_state(struct cpuidle_device *dev)
struct
ladder_device
*
ldev
=
&
__get_cpu_var
(
ladder_devices
);
struct
ladder_device_state
*
last_state
;
int
last_residency
,
last_idx
=
ldev
->
last_state_idx
;
int
latency_req
=
pm_qos_requirement
(
PM_QOS_CPU_DMA_LATENCY
);
if
(
unlikely
(
!
ldev
))
return
0
;
/* Special case when user has set very strict latency requirement */
if
(
unlikely
(
latency_req
==
0
))
{
ladder_do_selection
(
ldev
,
last_idx
,
0
);
return
0
;
}
last_state
=
&
ldev
->
states
[
last_idx
];
if
(
dev
->
states
[
last_idx
].
flags
&
CPUIDLE_FLAG_TIME_VALID
)
...
...
@@ -81,8 +88,7 @@ static int ladder_select_state(struct cpuidle_device *dev)
/* consider promotion */
if
(
last_idx
<
dev
->
state_count
-
1
&&
last_residency
>
last_state
->
threshold
.
promotion_time
&&
dev
->
states
[
last_idx
+
1
].
exit_latency
<=
pm_qos_requirement
(
PM_QOS_CPU_DMA_LATENCY
))
{
dev
->
states
[
last_idx
+
1
].
exit_latency
<=
latency_req
)
{
last_state
->
stats
.
promotion_count
++
;
last_state
->
stats
.
demotion_count
=
0
;
if
(
last_state
->
stats
.
promotion_count
>=
last_state
->
threshold
.
promotion_count
)
{
...
...
@@ -92,7 +98,19 @@ static int ladder_select_state(struct cpuidle_device *dev)
}
/* consider demotion */
if
(
last_idx
>
0
&&
if
(
last_idx
>
CPUIDLE_DRIVER_STATE_START
&&
dev
->
states
[
last_idx
].
exit_latency
>
latency_req
)
{
int
i
;
for
(
i
=
last_idx
-
1
;
i
>
CPUIDLE_DRIVER_STATE_START
;
i
--
)
{
if
(
dev
->
states
[
i
].
exit_latency
<=
latency_req
)
break
;
}
ladder_do_selection
(
ldev
,
last_idx
,
i
);
return
i
;
}
if
(
last_idx
>
CPUIDLE_DRIVER_STATE_START
&&
last_residency
<
last_state
->
threshold
.
demotion_time
)
{
last_state
->
stats
.
demotion_count
++
;
last_state
->
stats
.
promotion_count
=
0
;
...
...
@@ -117,7 +135,7 @@ static int ladder_enable_device(struct cpuidle_device *dev)
struct
ladder_device_state
*
lstate
;
struct
cpuidle_state
*
state
;
ldev
->
last_state_idx
=
0
;
ldev
->
last_state_idx
=
CPUIDLE_DRIVER_STATE_START
;
for
(
i
=
0
;
i
<
dev
->
state_count
;
i
++
)
{
state
=
&
dev
->
states
[
i
];
...
...
drivers/cpuidle/governors/menu.c
浏览文件 @
22d9aac2
...
...
@@ -34,21 +34,28 @@ static DEFINE_PER_CPU(struct menu_device, menu_devices);
static
int
menu_select
(
struct
cpuidle_device
*
dev
)
{
struct
menu_device
*
data
=
&
__get_cpu_var
(
menu_devices
);
int
latency_req
=
pm_qos_requirement
(
PM_QOS_CPU_DMA_LATENCY
);
int
i
;
/* Special case when user has set very strict latency requirement */
if
(
unlikely
(
latency_req
==
0
))
{
data
->
last_state_idx
=
0
;
return
0
;
}
/* determine the expected residency time */
data
->
expected_us
=
(
u32
)
ktime_to_ns
(
tick_nohz_get_sleep_length
())
/
1000
;
/* find the deepest idle state that satisfies our constraints */
for
(
i
=
1
;
i
<
dev
->
state_count
;
i
++
)
{
for
(
i
=
CPUIDLE_DRIVER_STATE_START
+
1
;
i
<
dev
->
state_count
;
i
++
)
{
struct
cpuidle_state
*
s
=
&
dev
->
states
[
i
];
if
(
s
->
target_residency
>
data
->
expected_us
)
break
;
if
(
s
->
target_residency
>
data
->
predicted_us
)
break
;
if
(
s
->
exit_latency
>
pm_qos_requirement
(
PM_QOS_CPU_DMA_LATENCY
)
)
if
(
s
->
exit_latency
>
latency_req
)
break
;
}
...
...
@@ -67,9 +74,9 @@ static void menu_reflect(struct cpuidle_device *dev)
{
struct
menu_device
*
data
=
&
__get_cpu_var
(
menu_devices
);
int
last_idx
=
data
->
last_state_idx
;
unsigned
int
measured_us
=
cpuidle_get_last_residency
(
dev
)
+
data
->
elapsed_us
;
unsigned
int
last_idle_us
=
cpuidle_get_last_residency
(
dev
);
struct
cpuidle_state
*
target
=
&
dev
->
states
[
last_idx
];
unsigned
int
measured_us
;
/*
* Ugh, this idle state doesn't support residency measurements, so we
...
...
@@ -77,20 +84,27 @@ static void menu_reflect(struct cpuidle_device *dev)
* for one full standard timer tick. However, be aware that this
* could potentially result in a suboptimal state transition.
*/
if
(
!
(
target
->
flags
&
CPUIDLE_FLAG_TIME_VALID
))
measured_us
=
USEC_PER_SEC
/
HZ
;
if
(
unlikely
(
!
(
target
->
flags
&
CPUIDLE_FLAG_TIME_VALID
)))
last_idle_us
=
USEC_PER_SEC
/
HZ
;
/*
* measured_us and elapsed_us are the cumulative idle time, since the
* last time we were woken out of idle by an interrupt.
*/
if
(
data
->
elapsed_us
<=
data
->
elapsed_us
+
last_idle_us
)
measured_us
=
data
->
elapsed_us
+
last_idle_us
;
else
measured_us
=
-
1
;
/* Predict time until next break event */
data
->
predicted_us
=
max
(
measured_us
,
data
->
last_measured_us
);
/* Predict time remaining until next break event */
if
(
measured_us
+
BREAK_FUZZ
<
data
->
expected_us
-
target
->
exit_latency
)
{
data
->
predicted_us
=
max
(
measured_us
,
data
->
last_measured_us
);
if
(
last_idle_us
+
BREAK_FUZZ
<
data
->
expected_us
-
target
->
exit_latency
)
{
data
->
last_measured_us
=
measured_us
;
data
->
elapsed_us
=
0
;
}
else
{
if
(
data
->
elapsed_us
<
data
->
elapsed_us
+
measured_us
)
data
->
elapsed_us
=
measured_us
;
else
data
->
elapsed_us
=
-
1
;
data
->
predicted_us
=
max
(
measured_us
,
data
->
last_measured_us
);
data
->
elapsed_us
=
measured_us
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录