Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
d9ff4187
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d9ff4187
编写于
3月 18, 2006
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PATCH] make cfq_exit_queue() prune the cfq_io_context for that queue
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
a6a0763a
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
60 addition
and
1 deletion
+60
-1
block/cfq-iosched.c
block/cfq-iosched.c
+58
-1
include/linux/blkdev.h
include/linux/blkdev.h
+2
-0
未找到文件。
block/cfq-iosched.c
浏览文件 @
d9ff4187
...
@@ -177,6 +177,8 @@ struct cfq_data {
...
@@ -177,6 +177,8 @@ struct cfq_data {
unsigned
int
cfq_slice_async_rq
;
unsigned
int
cfq_slice_async_rq
;
unsigned
int
cfq_slice_idle
;
unsigned
int
cfq_slice_idle
;
unsigned
int
cfq_max_depth
;
unsigned
int
cfq_max_depth
;
struct
list_head
cic_list
;
};
};
/*
/*
...
@@ -1215,7 +1217,12 @@ static void cfq_free_io_context(struct cfq_io_context *cic)
...
@@ -1215,7 +1217,12 @@ static void cfq_free_io_context(struct cfq_io_context *cic)
static
void
cfq_exit_single_io_context
(
struct
cfq_io_context
*
cic
)
static
void
cfq_exit_single_io_context
(
struct
cfq_io_context
*
cic
)
{
{
struct
cfq_data
*
cfqd
=
cic
->
key
;
struct
cfq_data
*
cfqd
=
cic
->
key
;
request_queue_t
*
q
=
cfqd
->
queue
;
request_queue_t
*
q
;
if
(
!
cfqd
)
return
;
q
=
cfqd
->
queue
;
WARN_ON
(
!
irqs_disabled
());
WARN_ON
(
!
irqs_disabled
());
...
@@ -1236,6 +1243,7 @@ static void cfq_exit_single_io_context(struct cfq_io_context *cic)
...
@@ -1236,6 +1243,7 @@ static void cfq_exit_single_io_context(struct cfq_io_context *cic)
}
}
cic
->
key
=
NULL
;
cic
->
key
=
NULL
;
list_del_init
(
&
cic
->
queue_list
);
spin_unlock
(
q
->
queue_lock
);
spin_unlock
(
q
->
queue_lock
);
}
}
...
@@ -1254,12 +1262,14 @@ static void cfq_exit_io_context(struct cfq_io_context *cic)
...
@@ -1254,12 +1262,14 @@ static void cfq_exit_io_context(struct cfq_io_context *cic)
/*
/*
* put the reference this task is holding to the various queues
* put the reference this task is holding to the various queues
*/
*/
read_lock
(
&
cfq_exit_lock
);
list_for_each
(
entry
,
&
cic
->
list
)
{
list_for_each
(
entry
,
&
cic
->
list
)
{
__cic
=
list_entry
(
entry
,
struct
cfq_io_context
,
list
);
__cic
=
list_entry
(
entry
,
struct
cfq_io_context
,
list
);
cfq_exit_single_io_context
(
__cic
);
cfq_exit_single_io_context
(
__cic
);
}
}
cfq_exit_single_io_context
(
cic
);
cfq_exit_single_io_context
(
cic
);
read_unlock
(
&
cfq_exit_lock
);
local_irq_restore
(
flags
);
local_irq_restore
(
flags
);
}
}
...
@@ -1279,6 +1289,7 @@ cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
...
@@ -1279,6 +1289,7 @@ cfq_alloc_io_context(struct cfq_data *cfqd, gfp_t gfp_mask)
cic
->
ttime_mean
=
0
;
cic
->
ttime_mean
=
0
;
cic
->
dtor
=
cfq_free_io_context
;
cic
->
dtor
=
cfq_free_io_context
;
cic
->
exit
=
cfq_exit_io_context
;
cic
->
exit
=
cfq_exit_io_context
;
INIT_LIST_HEAD
(
&
cic
->
queue_list
);
}
}
return
cic
;
return
cic
;
...
@@ -1446,6 +1457,7 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
...
@@ -1446,6 +1457,7 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
if
(
!
ioc
)
if
(
!
ioc
)
return
NULL
;
return
NULL
;
restart:
if
((
cic
=
ioc
->
cic
)
==
NULL
)
{
if
((
cic
=
ioc
->
cic
)
==
NULL
)
{
cic
=
cfq_alloc_io_context
(
cfqd
,
gfp_mask
);
cic
=
cfq_alloc_io_context
(
cfqd
,
gfp_mask
);
...
@@ -1461,6 +1473,7 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
...
@@ -1461,6 +1473,7 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
read_lock
(
&
cfq_exit_lock
);
read_lock
(
&
cfq_exit_lock
);
ioc
->
set_ioprio
=
cfq_ioc_set_ioprio
;
ioc
->
set_ioprio
=
cfq_ioc_set_ioprio
;
ioc
->
cic
=
cic
;
ioc
->
cic
=
cic
;
list_add
(
&
cic
->
queue_list
,
&
cfqd
->
cic_list
);
read_unlock
(
&
cfq_exit_lock
);
read_unlock
(
&
cfq_exit_lock
);
}
else
{
}
else
{
struct
cfq_io_context
*
__cic
;
struct
cfq_io_context
*
__cic
;
...
@@ -1471,6 +1484,19 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
...
@@ -1471,6 +1484,19 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
if
(
cic
->
key
==
cfqd
)
if
(
cic
->
key
==
cfqd
)
goto
out
;
goto
out
;
if
(
unlikely
(
!
cic
->
key
))
{
read_lock
(
&
cfq_exit_lock
);
if
(
list_empty
(
&
cic
->
list
))
ioc
->
cic
=
NULL
;
else
ioc
->
cic
=
list_entry
(
cic
->
list
.
next
,
struct
cfq_io_context
,
list
);
read_unlock
(
&
cfq_exit_lock
);
kmem_cache_free
(
cfq_ioc_pool
,
cic
);
goto
restart
;
}
/*
/*
* cic exists, check if we already are there. linear search
* cic exists, check if we already are there. linear search
* should be ok here, the list will usually not be more than
* should be ok here, the list will usually not be more than
...
@@ -1485,6 +1511,13 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
...
@@ -1485,6 +1511,13 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
cic
=
__cic
;
cic
=
__cic
;
goto
out
;
goto
out
;
}
}
if
(
unlikely
(
!
__cic
->
key
))
{
read_lock
(
&
cfq_exit_lock
);
list_del
(
&
__cic
->
list
);
read_unlock
(
&
cfq_exit_lock
);
kmem_cache_free
(
cfq_ioc_pool
,
__cic
);
goto
restart
;
}
}
}
/*
/*
...
@@ -1499,6 +1532,7 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
...
@@ -1499,6 +1532,7 @@ cfq_get_io_context(struct cfq_data *cfqd, pid_t pid, gfp_t gfp_mask)
__cic
->
key
=
cfqd
;
__cic
->
key
=
cfqd
;
read_lock
(
&
cfq_exit_lock
);
read_lock
(
&
cfq_exit_lock
);
list_add
(
&
__cic
->
list
,
&
cic
->
list
);
list_add
(
&
__cic
->
list
,
&
cic
->
list
);
list_add
(
&
__cic
->
queue_list
,
&
cfqd
->
cic_list
);
read_unlock
(
&
cfq_exit_lock
);
read_unlock
(
&
cfq_exit_lock
);
cic
=
__cic
;
cic
=
__cic
;
}
}
...
@@ -2104,8 +2138,30 @@ static void cfq_put_cfqd(struct cfq_data *cfqd)
...
@@ -2104,8 +2138,30 @@ static void cfq_put_cfqd(struct cfq_data *cfqd)
static
void
cfq_exit_queue
(
elevator_t
*
e
)
static
void
cfq_exit_queue
(
elevator_t
*
e
)
{
{
struct
cfq_data
*
cfqd
=
e
->
elevator_data
;
struct
cfq_data
*
cfqd
=
e
->
elevator_data
;
request_queue_t
*
q
=
cfqd
->
queue
;
cfq_shutdown_timer_wq
(
cfqd
);
cfq_shutdown_timer_wq
(
cfqd
);
write_lock
(
&
cfq_exit_lock
);
spin_lock_irq
(
q
->
queue_lock
);
if
(
cfqd
->
active_queue
)
__cfq_slice_expired
(
cfqd
,
cfqd
->
active_queue
,
0
);
while
(
!
list_empty
(
&
cfqd
->
cic_list
))
{
struct
cfq_io_context
*
cic
=
list_entry
(
cfqd
->
cic_list
.
next
,
struct
cfq_io_context
,
queue_list
);
if
(
cic
->
cfqq
[
ASYNC
])
{
cfq_put_queue
(
cic
->
cfqq
[
ASYNC
]);
cic
->
cfqq
[
ASYNC
]
=
NULL
;
}
if
(
cic
->
cfqq
[
SYNC
])
{
cfq_put_queue
(
cic
->
cfqq
[
SYNC
]);
cic
->
cfqq
[
SYNC
]
=
NULL
;
}
cic
->
key
=
NULL
;
list_del_init
(
&
cic
->
queue_list
);
}
spin_unlock_irq
(
q
->
queue_lock
);
write_unlock
(
&
cfq_exit_lock
);
cfq_put_cfqd
(
cfqd
);
cfq_put_cfqd
(
cfqd
);
}
}
...
@@ -2127,6 +2183,7 @@ static int cfq_init_queue(request_queue_t *q, elevator_t *e)
...
@@ -2127,6 +2183,7 @@ static int cfq_init_queue(request_queue_t *q, elevator_t *e)
INIT_LIST_HEAD
(
&
cfqd
->
cur_rr
);
INIT_LIST_HEAD
(
&
cfqd
->
cur_rr
);
INIT_LIST_HEAD
(
&
cfqd
->
idle_rr
);
INIT_LIST_HEAD
(
&
cfqd
->
idle_rr
);
INIT_LIST_HEAD
(
&
cfqd
->
empty_list
);
INIT_LIST_HEAD
(
&
cfqd
->
empty_list
);
INIT_LIST_HEAD
(
&
cfqd
->
cic_list
);
cfqd
->
crq_hash
=
kmalloc
(
sizeof
(
struct
hlist_head
)
*
CFQ_MHASH_ENTRIES
,
GFP_KERNEL
);
cfqd
->
crq_hash
=
kmalloc
(
sizeof
(
struct
hlist_head
)
*
CFQ_MHASH_ENTRIES
,
GFP_KERNEL
);
if
(
!
cfqd
->
crq_hash
)
if
(
!
cfqd
->
crq_hash
)
...
...
include/linux/blkdev.h
浏览文件 @
d9ff4187
...
@@ -69,6 +69,8 @@ struct cfq_io_context {
...
@@ -69,6 +69,8 @@ struct cfq_io_context {
unsigned
long
ttime_samples
;
unsigned
long
ttime_samples
;
unsigned
long
ttime_mean
;
unsigned
long
ttime_mean
;
struct
list_head
queue_list
;
void
(
*
dtor
)(
struct
cfq_io_context
*
);
void
(
*
dtor
)(
struct
cfq_io_context
*
);
void
(
*
exit
)(
struct
cfq_io_context
*
);
void
(
*
exit
)(
struct
cfq_io_context
*
);
};
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录