2 * asynchronous raid6 recovery self test
3 * Copyright (c) 2009, Intel Corporation.
5 * based on drivers/md/raid6test/test.c:
6 * Copyright 2002-2007 H. Peter Anvin
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <linux/async_tx.h>
23 #include <linux/gfp.h>
24 #include <linux/random.h>
27 #define pr(fmt, args...) pr_info("raid6test: " fmt, ##args)
29 #define NDISKS 16 /* Including P and Q */
31 static struct page *dataptrs[NDISKS];
32 static addr_conv_t addr_conv[NDISKS];
33 static struct page *data[NDISKS+3];
34 static struct page *spare;
35 static struct page *recovi;
36 static struct page *recovj;
38 static void callback(void *param)
40 struct completion *cmp = param;
45 static void makedata(int disks)
49 for (i = 0; i < disks; i++) {
50 for (j = 0; j < PAGE_SIZE/sizeof(u32); j += sizeof(u32)) {
51 u32 *p = page_address(data[i]) + j;
56 dataptrs[i] = data[i];
60 static char disk_type(int d, int disks)
64 else if (d == disks - 1)
70 /* Recover two failed blocks. */
71 static void raid6_dual_recov(int disks, size_t bytes, int faila, int failb, struct page **ptrs)
73 struct async_submit_ctl submit;
74 struct completion cmp;
75 struct dma_async_tx_descriptor *tx = NULL;
76 enum sum_check_flags result = ~0;
81 if (failb == disks-1) {
82 if (faila == disks-2) {
83 /* P+Q failure. Just rebuild the syndrome. */
84 init_async_submit(&submit, 0, NULL, NULL, NULL, addr_conv);
85 tx = async_gen_syndrome(ptrs, 0, disks, bytes, &submit);
87 struct page *blocks[disks];
92 /* data+Q failure. Reconstruct data from P,
93 * then rebuild syndrome
95 for (i = disks; i-- ; ) {
96 if (i == faila || i == failb)
98 blocks[count++] = ptrs[i];
101 init_async_submit(&submit, ASYNC_TX_XOR_ZERO_DST, NULL,
102 NULL, NULL, addr_conv);
103 tx = async_xor(dest, blocks, 0, count, bytes, &submit);
105 init_async_submit(&submit, 0, tx, NULL, NULL, addr_conv);
106 tx = async_gen_syndrome(ptrs, 0, disks, bytes, &submit);
109 if (failb == disks-2) {
110 /* data+P failure. */
111 init_async_submit(&submit, 0, NULL, NULL, NULL, addr_conv);
112 tx = async_raid6_datap_recov(disks, bytes, faila, ptrs, &submit);
114 /* data+data failure. */
115 init_async_submit(&submit, 0, NULL, NULL, NULL, addr_conv);
116 tx = async_raid6_2data_recov(disks, bytes, faila, failb, ptrs, &submit);
119 init_completion(&cmp);
120 init_async_submit(&submit, ASYNC_TX_ACK, tx, callback, &cmp, addr_conv);
121 tx = async_syndrome_val(ptrs, 0, disks, bytes, &result, spare, &submit);
122 async_tx_issue_pending(tx);
124 if (wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)) == 0)
125 pr("%s: timeout! (faila: %d failb: %d disks: %d)\n",
126 __func__, faila, failb, disks);
129 pr("%s: validation failure! faila: %d failb: %d sum_check_flags: %x\n",
130 __func__, faila, failb, result);
133 static int test_disks(int i, int j, int disks)
137 memset(page_address(recovi), 0xf0, PAGE_SIZE);
138 memset(page_address(recovj), 0xba, PAGE_SIZE);
140 dataptrs[i] = recovi;
141 dataptrs[j] = recovj;
143 raid6_dual_recov(disks, PAGE_SIZE, i, j, dataptrs);
145 erra = memcmp(page_address(data[i]), page_address(recovi), PAGE_SIZE);
146 errb = memcmp(page_address(data[j]), page_address(recovj), PAGE_SIZE);
148 pr("%s(%d, %d): faila=%3d(%c) failb=%3d(%c) %s\n",
149 __func__, i, j, i, disk_type(i, disks), j, disk_type(j, disks),
150 (!erra && !errb) ? "OK" : !erra ? "ERRB" : !errb ? "ERRA" : "ERRAB");
152 dataptrs[i] = data[i];
153 dataptrs[j] = data[j];
158 static int test(int disks, int *tests)
160 struct dma_async_tx_descriptor *tx;
161 struct async_submit_ctl submit;
162 struct completion cmp;
166 recovi = data[disks];
167 recovj = data[disks+1];
168 spare = data[disks+2];
173 memset(page_address(data[disks-2]), 0xee, PAGE_SIZE);
174 memset(page_address(data[disks-1]), 0xee, PAGE_SIZE);
176 /* Generate assumed good syndrome */
177 init_completion(&cmp);
178 init_async_submit(&submit, ASYNC_TX_ACK, NULL, callback, &cmp, addr_conv);
179 tx = async_gen_syndrome(dataptrs, 0, disks, PAGE_SIZE, &submit);
180 async_tx_issue_pending(tx);
182 if (wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)) == 0) {
183 pr("error: initial gen_syndrome(%d) timed out\n", disks);
187 pr("testing the %d-disk case...\n", disks);
188 for (i = 0; i < disks-1; i++)
189 for (j = i+1; j < disks; j++) {
191 err += test_disks(i, j, disks);
198 static int raid6_test(void)
204 for (i = 0; i < NDISKS+3; i++) {
205 data[i] = alloc_page(GFP_KERNEL);
213 /* the 4-disk and 5-disk cases are special for the recovery code */
215 err += test(4, &tests);
217 err += test(5, &tests);
218 /* the 11 and 12 disk cases are special for ioatdma (p-disabled
219 * q-continuation without extended descriptor)
222 err += test(11, &tests);
223 err += test(12, &tests);
225 err += test(NDISKS, &tests);
228 pr("complete (%d tests, %d failure%s)\n",
229 tests, err, err == 1 ? "" : "s");
231 for (i = 0; i < NDISKS+3; i++)
237 static void raid6_test_exit(void)
241 /* when compiled-in wait for drivers to load first (assumes dma drivers
242 * are also compliled-in)
244 late_initcall(raid6_test);
245 module_exit(raid6_test_exit);
246 MODULE_AUTHOR("Dan Williams <dan.j.williams@intel.com>");
247 MODULE_DESCRIPTION("asynchronous RAID-6 recovery self tests");
248 MODULE_LICENSE("GPL");