Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
e4424fee
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e4424fee
编写于
10月 16, 2009
作者:
N
NeilBrown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
md: fix problems with RAID6 calculations for DDF.
Signed-off-by:
N
NeilBrown
<
neilb@suse.de
>
上级
417b8d4a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
8 deletion
+14
-8
drivers/md/raid5.c
drivers/md/raid5.c
+13
-7
drivers/md/raid5.h
drivers/md/raid5.h
+1
-1
未找到文件。
drivers/md/raid5.c
浏览文件 @
e4424fee
...
...
@@ -158,11 +158,14 @@ static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
{
int
slot
;
if
(
sh
->
ddf_layout
)
slot
=
(
*
count
)
++
;
if
(
idx
==
sh
->
pd_idx
)
return
syndrome_disks
;
if
(
idx
==
sh
->
qd_idx
)
return
syndrome_disks
+
1
;
slot
=
(
*
count
)
++
;
if
(
!
sh
->
ddf_layout
)
slot
=
(
*
count
)
++
;
return
slot
;
}
...
...
@@ -727,9 +730,8 @@ static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
srcs
[
slot
]
=
sh
->
dev
[
i
].
page
;
i
=
raid6_next_disk
(
i
,
disks
);
}
while
(
i
!=
d0_idx
);
BUG_ON
(
count
!=
syndrome_disks
);
return
count
;
return
syndrome_disks
;
}
static
struct
dma_async_tx_descriptor
*
...
...
@@ -828,7 +830,6 @@ ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
failb
=
slot
;
i
=
raid6_next_disk
(
i
,
disks
);
}
while
(
i
!=
d0_idx
);
BUG_ON
(
count
!=
syndrome_disks
);
BUG_ON
(
faila
==
failb
);
if
(
failb
<
faila
)
...
...
@@ -845,7 +846,7 @@ ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
init_async_submit
(
&
submit
,
ASYNC_TX_FENCE
,
NULL
,
ops_complete_compute
,
sh
,
to_addr_conv
(
sh
,
percpu
));
return
async_gen_syndrome
(
blocks
,
0
,
count
+
2
,
return
async_gen_syndrome
(
blocks
,
0
,
syndrome_disks
+
2
,
STRIPE_SIZE
,
&
submit
);
}
else
{
struct
page
*
dest
;
...
...
@@ -1935,10 +1936,15 @@ static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
case
ALGORITHM_PARITY_N
:
break
;
case
ALGORITHM_ROTATING_N_CONTINUE
:
/* Like left_symmetric, but P is before Q */
if
(
sh
->
pd_idx
==
0
)
i
--
;
/* P D D D Q */
else
if
(
i
>
sh
->
pd_idx
)
i
-=
2
;
/* D D Q P D */
else
{
/* D D Q P D */
if
(
i
<
sh
->
pd_idx
)
i
+=
raid_disks
;
i
-=
(
sh
->
pd_idx
+
1
);
}
break
;
case
ALGORITHM_LEFT_ASYMMETRIC_6
:
case
ALGORITHM_RIGHT_ASYMMETRIC_6
:
...
...
drivers/md/raid5.h
浏览文件 @
e4424fee
...
...
@@ -488,7 +488,7 @@ static inline int algorithm_valid_raid6(int layout)
{
return
(
layout
>=
0
&&
layout
<=
5
)
||
(
layout
==
8
||
layout
=
=
10
)
(
layout
>=
8
&&
layout
<
=
10
)
||
(
layout
>=
16
&&
layout
<=
20
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录