Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
ca664626
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看板
提交
ca664626
编写于
11月 27, 2007
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Btrfs: Add efficient dirty accounting to the extent_map tree
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
448d640b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
36 addition
and
4 deletion
+36
-4
fs/btrfs/disk-io.c
fs/btrfs/disk-io.c
+6
-1
fs/btrfs/extent_map.c
fs/btrfs/extent_map.c
+29
-3
fs/btrfs/extent_map.h
fs/btrfs/extent_map.h
+1
-0
未找到文件。
fs/btrfs/disk-io.c
浏览文件 @
ca664626
...
...
@@ -210,7 +210,7 @@ static int btree_writepages(struct address_space *mapping,
{
struct
extent_map_tree
*
tree
;
tree
=
&
BTRFS_I
(
mapping
->
host
)
->
extent_tree
;
if
(
wbc
->
sync_mode
==
WB_SYNC_NONE
&&
current_is_pdflush
()
)
{
if
(
wbc
->
sync_mode
==
WB_SYNC_NONE
)
{
u64
num_dirty
;
u64
start
=
0
;
unsigned
long
thresh
=
96
*
1024
*
1024
;
...
...
@@ -218,6 +218,11 @@ static int btree_writepages(struct address_space *mapping,
if
(
wbc
->
for_kupdate
)
return
0
;
if
(
current_is_pdflush
())
{
thresh
=
96
*
1024
*
1024
;
}
else
{
thresh
=
8
*
1024
*
1024
;
}
num_dirty
=
count_range_bits
(
tree
,
&
start
,
thresh
,
EXTENT_DIRTY
);
if
(
num_dirty
<
thresh
)
{
return
0
;
...
...
fs/btrfs/extent_map.c
浏览文件 @
ca664626
...
...
@@ -42,6 +42,7 @@ struct extent_page_data {
struct
extent_map_tree
*
tree
;
get_extent_t
*
get_extent
;
};
int
__init
extent_map_init
(
void
)
{
extent_map_cache
=
btrfs_cache_create
(
"extent_map"
,
...
...
@@ -94,6 +95,7 @@ void extent_map_tree_init(struct extent_map_tree *tree,
tree
->
map
.
rb_node
=
NULL
;
tree
->
state
.
rb_node
=
NULL
;
tree
->
ops
=
NULL
;
tree
->
dirty_bytes
=
0
;
rwlock_init
(
&
tree
->
lock
);
spin_lock_init
(
&
tree
->
lru_lock
);
tree
->
mapping
=
mapping
;
...
...
@@ -414,6 +416,8 @@ static int insert_state(struct extent_map_tree *tree,
printk
(
"end < start %Lu %Lu
\n
"
,
end
,
start
);
WARN_ON
(
1
);
}
if
(
bits
&
EXTENT_DIRTY
)
tree
->
dirty_bytes
+=
end
-
start
+
1
;
state
->
state
|=
bits
;
state
->
start
=
start
;
state
->
end
=
end
;
...
...
@@ -476,6 +480,12 @@ static int clear_state_bit(struct extent_map_tree *tree,
int
delete
)
{
int
ret
=
state
->
state
&
bits
;
if
((
bits
&
EXTENT_DIRTY
)
&&
(
state
->
state
&
EXTENT_DIRTY
))
{
u64
range
=
state
->
end
-
state
->
start
+
1
;
WARN_ON
(
range
>
tree
->
dirty_bytes
);
tree
->
dirty_bytes
-=
range
;
}
state
->
state
&=
~
bits
;
if
(
wake
)
wake_up
(
&
state
->
wq
);
...
...
@@ -668,6 +678,17 @@ int wait_extent_bit(struct extent_map_tree *tree, u64 start, u64 end, int bits)
}
EXPORT_SYMBOL
(
wait_extent_bit
);
static
void
set_state_bits
(
struct
extent_map_tree
*
tree
,
struct
extent_state
*
state
,
int
bits
)
{
if
((
bits
&
EXTENT_DIRTY
)
&&
!
(
state
->
state
&
EXTENT_DIRTY
))
{
u64
range
=
state
->
end
-
state
->
start
+
1
;
tree
->
dirty_bytes
+=
range
;
}
state
->
state
|=
bits
;
}
/*
* set some bits on a range in the tree. This may require allocations
* or sleeping, so the gfp mask is used to indicate what is allowed.
...
...
@@ -727,7 +748,7 @@ int set_extent_bit(struct extent_map_tree *tree, u64 start, u64 end, int bits,
err
=
-
EEXIST
;
goto
out
;
}
s
tate
->
state
|=
bits
;
s
et_state_bits
(
tree
,
state
,
bits
)
;
start
=
state
->
end
+
1
;
merge_state
(
tree
,
state
);
goto
search_again
;
...
...
@@ -762,7 +783,7 @@ int set_extent_bit(struct extent_map_tree *tree, u64 start, u64 end, int bits,
if
(
err
)
goto
out
;
if
(
state
->
end
<=
end
)
{
s
tate
->
state
|=
bits
;
s
et_state_bits
(
tree
,
state
,
bits
)
;
start
=
state
->
end
+
1
;
merge_state
(
tree
,
state
);
}
else
{
...
...
@@ -808,7 +829,7 @@ int set_extent_bit(struct extent_map_tree *tree, u64 start, u64 end, int bits,
err
=
split_state
(
tree
,
state
,
prealloc
,
end
+
1
);
BUG_ON
(
err
==
-
EEXIST
);
prealloc
->
state
|=
bits
;
set_state_bits
(
tree
,
prealloc
,
bits
)
;
merge_state
(
tree
,
prealloc
);
prealloc
=
NULL
;
goto
out
;
...
...
@@ -1116,6 +1137,11 @@ u64 count_range_bits(struct extent_map_tree *tree,
int
found
=
0
;
write_lock_irq
(
&
tree
->
lock
);
if
(
bits
==
EXTENT_DIRTY
)
{
*
start
=
0
;
total_bytes
=
tree
->
dirty_bytes
;
goto
out
;
}
/*
* this search will find all the extents that end after
* our range starts.
...
...
fs/btrfs/extent_map.h
浏览文件 @
ca664626
...
...
@@ -40,6 +40,7 @@ struct extent_map_tree {
struct
rb_root
map
;
struct
rb_root
state
;
struct
address_space
*
mapping
;
u64
dirty_bytes
;
rwlock_t
lock
;
struct
extent_map_ops
*
ops
;
spinlock_t
lru_lock
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录