提交 e02a0e47 编写于 作者: D Dan Williams

async_tx: expand async raid6 test to cover ioatdma corner case

Add explicit 11 and 12 disks cases to exercise the 0 < src_cnt % 8 < 3
corner case in the ioatdma driver.
Signed-off-by: NDan Williams <dan.j.williams@intel.com>
上级 cd78809f
...@@ -214,6 +214,13 @@ static int raid6_test(void) ...@@ -214,6 +214,13 @@ static int raid6_test(void)
err += test(4, &tests); err += test(4, &tests);
if (NDISKS > 5) if (NDISKS > 5)
err += test(5, &tests); err += test(5, &tests);
/* the 11 and 12 disk cases are special for ioatdma (p-disabled
* q-continuation without extended descriptor)
*/
if (NDISKS > 12) {
err += test(11, &tests);
err += test(12, &tests);
}
err += test(NDISKS, &tests); err += test(NDISKS, &tests);
pr("\n"); pr("\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册