Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
7f93bf8d
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7f93bf8d
编写于
3月 24, 2008
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Match the extent tree code to btrfs-progs for multi-device merging
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
eb20978f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
7 addition
and
52 deletion
+7
-52
fs/btrfs/extent-tree.c
fs/btrfs/extent-tree.c
+7
-52
未找到文件。
fs/btrfs/extent-tree.c
浏览文件 @
7f93bf8d
...
...
@@ -209,27 +209,22 @@ static u64 noinline find_search_start(struct btrfs_root *root,
last
=
max
(
search_start
,
cache
->
key
.
objectid
);
spin_lock_irq
(
&
free_space_cache
->
lock
);
state
=
find_first_extent_bit_state
(
free_space_cache
,
last
,
EXTENT_DIRTY
);
while
(
1
)
{
if
(
!
state
)
{
ret
=
find_first_extent_bit
(
&
root
->
fs_info
->
free_space_cache
,
last
,
&
start
,
&
end
,
EXTENT_DIRTY
);
if
(
ret
)
{
if
(
!
cache_miss
)
cache_miss
=
last
;
spin_unlock_irq
(
&
free_space_cache
->
lock
);
goto
new_group
;
}
start
=
max
(
last
,
sta
te
->
sta
rt
);
last
=
state
->
end
+
1
;
start
=
max
(
last
,
start
);
last
=
end
+
1
;
if
(
last
-
start
<
num
)
{
if
(
last
==
cache
->
key
.
objectid
+
cache
->
key
.
offset
)
cache_miss
=
start
;
do
{
state
=
extent_state_next
(
state
);
}
while
(
state
&&
!
(
state
->
state
&
EXTENT_DIRTY
));
continue
;
}
spin_unlock_irq
(
&
free_space_cache
->
lock
);
if
(
data
!=
BTRFS_BLOCK_GROUP_MIXED
&&
start
+
num
>
cache
->
key
.
objectid
+
cache
->
key
.
offset
)
goto
new_group
;
...
...
@@ -1485,29 +1480,8 @@ static int noinline find_free_extent(struct btrfs_trans_handle *trans,
data
=
BTRFS_BLOCK_GROUP_MIXED
;
}
if
(
!
data
)
{
last_ptr
=
&
root
->
fs_info
->
last_alloc
;
empty_cluster
=
128
*
1024
;
}
if
(
data
&&
btrfs_test_opt
(
root
,
SSD
))
{
last_ptr
=
&
root
->
fs_info
->
last_data_alloc
;
empty_cluster
=
2
*
1024
*
1024
;
}
if
(
last_ptr
)
{
if
(
*
last_ptr
)
hint_byte
=
*
last_ptr
;
else
{
hint_byte
=
hint_byte
&
~
((
u64
)
BTRFS_BLOCK_GROUP_SIZE
-
1
);
empty_size
+=
empty_cluster
;
}
search_start
=
max
(
search_start
,
hint_byte
);
}
search_end
=
min
(
search_end
,
btrfs_super_total_bytes
(
&
info
->
super_copy
));
if
(
search_end
==
(
u64
)
-
1
)
search_end
=
btrfs_super_total_bytes
(
&
info
->
super_copy
);
if
(
hint_byte
)
{
block_group
=
btrfs_lookup_block_group
(
info
,
hint_byte
);
if
(
!
block_group
)
...
...
@@ -1531,18 +1505,6 @@ static int noinline find_free_extent(struct btrfs_trans_handle *trans,
}
search_start
=
find_search_start
(
root
,
&
block_group
,
search_start
,
total_needed
,
data
);
if
(
last_ptr
&&
*
last_ptr
&&
search_start
!=
*
last_ptr
)
{
*
last_ptr
=
0
;
if
(
!
empty_size
)
{
empty_size
+=
empty_cluster
;
total_needed
+=
empty_size
;
}
search_start
=
find_search_start
(
root
,
&
block_group
,
search_start
,
total_needed
,
data
);
}
search_start
=
stripe_align
(
root
,
search_start
);
cached_start
=
search_start
;
btrfs_init_path
(
path
);
...
...
@@ -1670,13 +1632,6 @@ static int noinline find_free_extent(struct btrfs_trans_handle *trans,
}
ins
->
offset
=
num_bytes
;
btrfs_free_path
(
path
);
if
(
last_ptr
)
{
*
last_ptr
=
ins
->
objectid
+
ins
->
offset
;
if
(
*
last_ptr
==
btrfs_super_total_bytes
(
&
root
->
fs_info
->
super_copy
))
{
*
last_ptr
=
0
;
}
}
return
0
;
new_group:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录