Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
a236aed1
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
a236aed1
编写于
4月 29, 2008
作者:
C
Chris Mason
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Btrfs: Deal with failed writes in mirrored configurations
Signed-off-by:
N
Chris Mason
<
chris.mason@oracle.com
>
上级
4235298e
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
33 addition
and
8 deletion
+33
-8
fs/btrfs/disk-io.c
fs/btrfs/disk-io.c
+15
-2
fs/btrfs/extent-tree.c
fs/btrfs/extent-tree.c
+2
-2
fs/btrfs/volumes.c
fs/btrfs/volumes.c
+14
-3
fs/btrfs/volumes.h
fs/btrfs/volumes.h
+2
-1
未找到文件。
fs/btrfs/disk-io.c
浏览文件 @
a236aed1
...
...
@@ -1385,7 +1385,10 @@ int write_all_supers(struct btrfs_root *root)
struct
buffer_head
*
bh
;
int
ret
;
int
do_barriers
;
int
max_errors
;
int
total_errors
=
0
;
max_errors
=
btrfs_super_num_devices
(
&
root
->
fs_info
->
super_copy
)
-
1
;
do_barriers
=
!
btrfs_test_opt
(
root
,
NOBARRIER
);
sb
=
root
->
fs_info
->
sb_buffer
;
...
...
@@ -1433,8 +1436,14 @@ int write_all_supers(struct btrfs_root *root)
}
else
{
ret
=
submit_bh
(
WRITE
,
bh
);
}
BUG_ON
(
ret
);
if
(
ret
)
total_errors
++
;
}
if
(
total_errors
>
max_errors
)
{
printk
(
"btrfs: %d errors while writing supers
\n
"
,
total_errors
);
BUG
();
}
total_errors
=
0
;
list_for_each
(
cur
,
head
)
{
dev
=
list_entry
(
cur
,
struct
btrfs_device
,
dev_list
);
...
...
@@ -1454,13 +1463,17 @@ int write_all_supers(struct btrfs_root *root)
wait_on_buffer
(
bh
);
BUG_ON
(
!
buffer_uptodate
(
bh
));
}
else
{
BUG
()
;
total_errors
++
;
}
}
dev
->
pending_io
=
NULL
;
brelse
(
bh
);
}
if
(
total_errors
>
max_errors
)
{
printk
(
"btrfs: %d errors while writing supers
\n
"
,
total_errors
);
BUG
();
}
return
0
;
}
...
...
fs/btrfs/extent-tree.c
浏览文件 @
a236aed1
...
...
@@ -315,8 +315,8 @@ struct btrfs_block_group_cache *btrfs_find_block_group(struct btrfs_root *root,
block_group_cache
=
&
info
->
block_group_cache
;
total_fs_bytes
=
btrfs_super_total_bytes
(
&
root
->
fs_info
->
super_copy
);
if
(
!
owner
)
factor
=
10
;
if
(
data
&
BTRFS_BLOCK_GROUP_METADATA
)
factor
=
9
;
bit
=
block_group_state_bits
(
data
);
...
...
fs/btrfs/volumes.c
浏览文件 @
a236aed1
...
...
@@ -1425,6 +1425,7 @@ static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
int
stripe_index
;
int
i
;
int
num_stripes
;
int
max_errors
=
0
;
struct
btrfs_multi_bio
*
multi
=
NULL
;
if
(
multi_ret
&&
!
(
rw
&
(
1
<<
BIO_RW
)))
{
...
...
@@ -1436,6 +1437,8 @@ static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
GFP_NOFS
);
if
(
!
multi
)
return
-
ENOMEM
;
atomic_set
(
&
multi
->
error
,
0
);
}
spin_lock
(
&
em_tree
->
lock
);
...
...
@@ -1462,8 +1465,10 @@ static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
if
(
map
->
type
&
(
BTRFS_BLOCK_GROUP_RAID1
|
BTRFS_BLOCK_GROUP_DUP
))
{
stripes_required
=
map
->
num_stripes
;
max_errors
=
1
;
}
else
if
(
map
->
type
&
BTRFS_BLOCK_GROUP_RAID10
)
{
stripes_required
=
map
->
sub_stripes
;
max_errors
=
1
;
}
}
if
(
multi_ret
&&
rw
==
WRITE
&&
...
...
@@ -1561,6 +1566,7 @@ static int __btrfs_map_block(struct btrfs_mapping_tree *map_tree, int rw,
if
(
multi_ret
)
{
*
multi_ret
=
multi
;
multi
->
num_stripes
=
num_stripes
;
multi
->
max_errors
=
max_errors
;
}
out:
free_extent_map
(
em
);
...
...
@@ -1598,14 +1604,19 @@ static int end_bio_multi_stripe(struct bio *bio,
return
1
;
#endif
if
(
err
)
multi
->
error
=
err
;
atomic_inc
(
&
multi
->
error
)
;
if
(
atomic_dec_and_test
(
&
multi
->
stripes_pending
))
{
bio
->
bi_private
=
multi
->
private
;
bio
->
bi_end_io
=
multi
->
end_io
;
if
(
!
err
&&
multi
->
error
)
err
=
multi
->
error
;
/* only send an error to the higher layers if it is
* beyond the tolerance of the multi-bio
*/
if
(
atomic_read
(
&
multi
->
error
)
>
multi
->
max_errors
)
err
=
-
EIO
;
else
err
=
0
;
kfree
(
multi
);
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,23)
...
...
fs/btrfs/volumes.h
浏览文件 @
a236aed1
...
...
@@ -90,7 +90,8 @@ struct btrfs_multi_bio {
atomic_t
stripes_pending
;
bio_end_io_t
*
end_io
;
void
*
private
;
int
error
;
atomic_t
error
;
int
max_errors
;
int
num_stripes
;
struct
btrfs_bio_stripe
stripes
[];
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录