Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
257d0ce3
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看板
提交
257d0ce3
编写于
11月 07, 2007
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Btrfs: Allow large data extents in a single file to span into metadata block groups
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
09be207d
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
36 addition
and
6 deletion
+36
-6
fs/btrfs/extent-tree.c
fs/btrfs/extent-tree.c
+30
-6
fs/btrfs/file.c
fs/btrfs/file.c
+6
-0
未找到文件。
fs/btrfs/extent-tree.c
浏览文件 @
257d0ce3
...
...
@@ -168,6 +168,7 @@ static u64 find_search_start(struct btrfs_root *root,
u64
last
;
u64
start
=
0
;
u64
end
=
0
;
u64
cache_miss
=
0
;
int
wrapped
=
0
;
again:
...
...
@@ -181,14 +182,20 @@ static u64 find_search_start(struct btrfs_root *root,
ret
=
find_first_extent_bit
(
&
root
->
fs_info
->
free_space_cache
,
last
,
&
start
,
&
end
,
EXTENT_DIRTY
);
if
(
ret
)
{
if
(
!
cache_miss
)
cache_miss
=
last
;
goto
new_group
;
}
start
=
max
(
last
,
start
);
last
=
end
+
1
;
if
(
end
+
1
-
start
<
num
)
if
(
last
-
start
<
num
)
{
if
(
last
==
cache
->
key
.
objectid
+
cache
->
key
.
offset
)
cache_miss
=
start
;
continue
;
if
(
start
+
num
>=
cache
->
key
.
objectid
+
cache
->
key
.
offset
)
}
if
(
data
!=
BTRFS_BLOCK_GROUP_MIXED
&&
start
+
num
>=
cache
->
key
.
objectid
+
cache
->
key
.
offset
)
goto
new_group
;
return
start
;
}
...
...
@@ -208,13 +215,22 @@ static u64 find_search_start(struct btrfs_root *root,
}
return
search_start
;
}
if
(
cache_miss
&&
!
cache
->
cached
)
{
cache_block_group
(
root
,
cache
);
last
=
cache_miss
;
cache
=
btrfs_lookup_block_group
(
root
->
fs_info
,
last
);
}
cache
=
btrfs_find_block_group
(
root
,
cache
,
last
,
data
,
0
);
*
cache_ret
=
cache
;
cache_miss
=
0
;
goto
again
;
}
static
u64
div_factor
(
u64
num
,
int
factor
)
{
if
(
factor
==
10
)
return
num
;
num
*=
factor
;
do_div
(
num
,
10
);
return
num
;
...
...
@@ -247,9 +263,10 @@ struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
if
(
!
owner
)
factor
=
8
;
if
(
data
==
BTRFS_BLOCK_GROUP_MIXED
)
if
(
data
==
BTRFS_BLOCK_GROUP_MIXED
)
{
bit
=
BLOCK_GROUP_DATA
|
BLOCK_GROUP_METADATA
;
else
if
(
data
)
factor
=
10
;
}
else
if
(
data
)
bit
=
BLOCK_GROUP_DATA
;
else
bit
=
BLOCK_GROUP_METADATA
;
...
...
@@ -918,6 +935,10 @@ static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
level
=
btrfs_header_level
(
root
->
node
);
if
(
num_bytes
>=
96
*
1024
*
1024
&&
hint_byte
)
{
data
=
BTRFS_BLOCK_GROUP_MIXED
;
}
if
(
search_end
==
(
u64
)
-
1
)
search_end
=
btrfs_super_total_bytes
(
&
info
->
super_copy
);
if
(
hint_byte
)
{
...
...
@@ -937,6 +958,7 @@ static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
search_start
=
find_search_start
(
root
,
&
block_group
,
search_start
,
total_needed
,
data
);
cached_start
=
search_start
;
btrfs_init_path
(
path
);
ins
->
objectid
=
search_start
;
ins
->
offset
=
0
;
...
...
@@ -1021,7 +1043,8 @@ static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
start_found
=
1
;
last_byte
=
key
.
objectid
+
key
.
offset
;
if
(
!
full_scan
&&
last_byte
>=
block_group
->
key
.
objectid
+
if
(
!
full_scan
&&
data
!=
BTRFS_BLOCK_GROUP_MIXED
&&
last_byte
>=
block_group
->
key
.
objectid
+
block_group
->
key
.
offset
)
{
btrfs_release_path
(
root
,
path
);
search_start
=
block_group
->
key
.
objectid
+
...
...
@@ -1042,7 +1065,8 @@ static int find_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
if
(
ins
->
objectid
+
num_bytes
>=
search_end
)
goto
enospc
;
if
(
!
full_scan
&&
ins
->
objectid
+
num_bytes
>=
block_group
->
if
(
!
full_scan
&&
data
!=
BTRFS_BLOCK_GROUP_MIXED
&&
ins
->
objectid
+
num_bytes
>=
block_group
->
key
.
objectid
+
block_group
->
key
.
offset
)
{
search_start
=
block_group
->
key
.
objectid
+
block_group
->
key
.
offset
;
...
...
fs/btrfs/file.c
浏览文件 @
257d0ce3
...
...
@@ -439,6 +439,12 @@ int btrfs_drop_extents(struct btrfs_trans_handle *trans,
struct
btrfs_file_extent_item
);
found_type
=
btrfs_file_extent_type
(
leaf
,
extent
);
if
(
found_type
==
BTRFS_FILE_EXTENT_REG
)
{
extent_end
=
btrfs_file_extent_disk_bytenr
(
leaf
,
extent
);
if
(
extent_end
)
*
hint_byte
=
extent_end
;
extent_end
=
key
.
offset
+
btrfs_file_extent_num_bytes
(
leaf
,
extent
);
found_extent
=
1
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录