Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
8d5bf1cb
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,发现更多精彩内容 >>
提交
8d5bf1cb
编写于
9月 11, 2008
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Btrfs: Update the highest objectid in a root after log replay is done
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
4bef0848
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
9 addition
and
1 deletion
+9
-1
fs/btrfs/inode.c
fs/btrfs/inode.c
+2
-1
fs/btrfs/tree-log.c
fs/btrfs/tree-log.c
+7
-0
未找到文件。
fs/btrfs/inode.c
浏览文件 @
8d5bf1cb
...
...
@@ -2239,9 +2239,10 @@ static int btrfs_set_inode_index(struct inode *dir, struct inode *inode,
if
(
BTRFS_I
(
dir
)
->
index_cnt
==
(
u64
)
-
1
)
{
ret
=
btrfs_set_inode_index_count
(
dir
);
if
(
ret
)
if
(
ret
)
{
return
ret
;
}
}
*
index
=
BTRFS_I
(
dir
)
->
index_cnt
;
BTRFS_I
(
dir
)
->
index_cnt
++
;
...
...
fs/btrfs/tree-log.c
浏览文件 @
8d5bf1cb
...
...
@@ -1027,6 +1027,7 @@ static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
inode
->
i_nlink
=
nlink
;
btrfs_update_inode
(
trans
,
root
,
inode
);
}
BTRFS_I
(
inode
)
->
index_cnt
=
(
u64
)
-
1
;
return
0
;
}
...
...
@@ -2714,6 +2715,7 @@ int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
struct
btrfs_key
tmp_key
;
struct
btrfs_root
*
log
;
struct
btrfs_fs_info
*
fs_info
=
log_root_tree
->
fs_info
;
u64
highest_inode
;
struct
walk_control
wc
=
{
.
process_func
=
process_one_buffer
,
.
stage
=
0
,
...
...
@@ -2772,6 +2774,11 @@ int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
path
);
BUG_ON
(
ret
);
}
ret
=
btrfs_find_highest_inode
(
wc
.
replay_dest
,
&
highest_inode
);
if
(
ret
==
0
)
{
wc
.
replay_dest
->
highest_inode
=
highest_inode
;
wc
.
replay_dest
->
last_inode_alloc
=
highest_inode
;
}
key
.
offset
=
found_key
.
offset
-
1
;
free_extent_buffer
(
log
->
node
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录