Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
081e9573
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
081e9573
编写于
11月 06, 2007
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Btrfs: Make defrag check nodes against the progress key to prevent repeating work
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
c549228f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
34 addition
and
25 deletion
+34
-25
fs/btrfs/ctree.c
fs/btrfs/ctree.c
+32
-24
fs/btrfs/tree-defrag.c
fs/btrfs/tree-defrag.c
+2
-1
未找到文件。
fs/btrfs/ctree.c
浏览文件 @
081e9573
...
...
@@ -161,6 +161,31 @@ static int close_blocks(u64 blocknr, u64 other, u32 blocksize)
return
0
;
}
/*
* compare two keys in a memcmp fashion
*/
static
int
comp_keys
(
struct
btrfs_disk_key
*
disk
,
struct
btrfs_key
*
k2
)
{
struct
btrfs_key
k1
;
btrfs_disk_key_to_cpu
(
&
k1
,
disk
);
if
(
k1
.
objectid
>
k2
->
objectid
)
return
1
;
if
(
k1
.
objectid
<
k2
->
objectid
)
return
-
1
;
if
(
k1
.
type
>
k2
->
type
)
return
1
;
if
(
k1
.
type
<
k2
->
type
)
return
-
1
;
if
(
k1
.
offset
>
k2
->
offset
)
return
1
;
if
(
k1
.
offset
<
k2
->
offset
)
return
-
1
;
return
0
;
}
int
btrfs_realloc_node
(
struct
btrfs_trans_handle
*
trans
,
struct
btrfs_root
*
root
,
struct
extent_buffer
*
parent
,
int
start_slot
,
int
cache_only
,
u64
*
last_ret
,
...
...
@@ -179,6 +204,8 @@ int btrfs_realloc_node(struct btrfs_trans_handle *trans,
int
parent_level
;
int
uptodate
;
u32
blocksize
;
int
progress_passed
=
0
;
struct
btrfs_disk_key
disk_key
;
parent_level
=
btrfs_header_level
(
parent
);
if
(
cache_only
&&
parent_level
!=
1
)
...
...
@@ -213,6 +240,11 @@ int btrfs_realloc_node(struct btrfs_trans_handle *trans,
&
parent
->
map_start
,
&
parent
->
map_len
,
KM_USER1
);
}
btrfs_node_key
(
parent
,
&
disk_key
,
i
);
if
(
!
progress_passed
&&
comp_keys
(
&
disk_key
,
progress
)
<
0
)
continue
;
progress_passed
=
1
;
blocknr
=
btrfs_node_blockptr
(
parent
,
i
);
if
(
last_block
==
0
)
last_block
=
blocknr
;
...
...
@@ -292,30 +324,6 @@ static inline unsigned int leaf_data_end(struct btrfs_root *root,
return
btrfs_item_offset_nr
(
leaf
,
nr
-
1
);
}
/*
* compare two keys in a memcmp fashion
*/
static
int
comp_keys
(
struct
btrfs_disk_key
*
disk
,
struct
btrfs_key
*
k2
)
{
struct
btrfs_key
k1
;
btrfs_disk_key_to_cpu
(
&
k1
,
disk
);
if
(
k1
.
objectid
>
k2
->
objectid
)
return
1
;
if
(
k1
.
objectid
<
k2
->
objectid
)
return
-
1
;
if
(
k1
.
type
>
k2
->
type
)
return
1
;
if
(
k1
.
type
<
k2
->
type
)
return
-
1
;
if
(
k1
.
offset
>
k2
->
offset
)
return
1
;
if
(
k1
.
offset
<
k2
->
offset
)
return
-
1
;
return
0
;
}
static
int
check_node
(
struct
btrfs_root
*
root
,
struct
btrfs_path
*
path
,
int
level
)
{
...
...
fs/btrfs/tree-defrag.c
浏览文件 @
081e9573
...
...
@@ -227,7 +227,8 @@ int btrfs_defrag_leaves(struct btrfs_trans_handle *trans,
break
;
if
(
wret
<
0
)
ret
=
wret
;
ret
=
-
EAGAIN
;
else
ret
=
-
EAGAIN
;
break
;
}
for
(
i
=
0
;
i
<=
orig_level
;
i
++
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录