Add linux-next specific files for 20110831
[linux-2.6/next.git] / crypto / async_tx / raid6test.c
blobaa2b0270ed16d007861c27dfdb54fb54e8a0e19b
1 /*
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
15 * more details.
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/mm.h>
25 #include <linux/random.h>
26 #include <linux/module.h>
28 #undef pr
29 #define pr(fmt, args...) pr_info("raid6test: " fmt, ##args)
31 #define NDISKS 16 /* Including P and Q */
33 static struct page *dataptrs[NDISKS];
34 static addr_conv_t addr_conv[NDISKS];
35 static struct page *data[NDISKS+3];
36 static struct page *spare;
37 static struct page *recovi;
38 static struct page *recovj;
40 static void callback(void *param)
42 struct completion *cmp = param;
44 complete(cmp);
47 static void makedata(int disks)
49 int i, j;
51 for (i = 0; i < disks; i++) {
52 for (j = 0; j < PAGE_SIZE/sizeof(u32); j += sizeof(u32)) {
53 u32 *p = page_address(data[i]) + j;
55 *p = random32();
58 dataptrs[i] = data[i];
62 static char disk_type(int d, int disks)
64 if (d == disks - 2)
65 return 'P';
66 else if (d == disks - 1)
67 return 'Q';
68 else
69 return 'D';
72 /* Recover two failed blocks. */
73 static void raid6_dual_recov(int disks, size_t bytes, int faila, int failb, struct page **ptrs)
75 struct async_submit_ctl submit;
76 struct completion cmp;
77 struct dma_async_tx_descriptor *tx = NULL;
78 enum sum_check_flags result = ~0;
80 if (faila > failb)
81 swap(faila, failb);
83 if (failb == disks-1) {
84 if (faila == disks-2) {
85 /* P+Q failure. Just rebuild the syndrome. */
86 init_async_submit(&submit, 0, NULL, NULL, NULL, addr_conv);
87 tx = async_gen_syndrome(ptrs, 0, disks, bytes, &submit);
88 } else {
89 struct page *blocks[disks];
90 struct page *dest;
91 int count = 0;
92 int i;
94 /* data+Q failure. Reconstruct data from P,
95 * then rebuild syndrome
97 for (i = disks; i-- ; ) {
98 if (i == faila || i == failb)
99 continue;
100 blocks[count++] = ptrs[i];
102 dest = ptrs[faila];
103 init_async_submit(&submit, ASYNC_TX_XOR_ZERO_DST, NULL,
104 NULL, NULL, addr_conv);
105 tx = async_xor(dest, blocks, 0, count, bytes, &submit);
107 init_async_submit(&submit, 0, tx, NULL, NULL, addr_conv);
108 tx = async_gen_syndrome(ptrs, 0, disks, bytes, &submit);
110 } else {
111 if (failb == disks-2) {
112 /* data+P failure. */
113 init_async_submit(&submit, 0, NULL, NULL, NULL, addr_conv);
114 tx = async_raid6_datap_recov(disks, bytes, faila, ptrs, &submit);
115 } else {
116 /* data+data failure. */
117 init_async_submit(&submit, 0, NULL, NULL, NULL, addr_conv);
118 tx = async_raid6_2data_recov(disks, bytes, faila, failb, ptrs, &submit);
121 init_completion(&cmp);
122 init_async_submit(&submit, ASYNC_TX_ACK, tx, callback, &cmp, addr_conv);
123 tx = async_syndrome_val(ptrs, 0, disks, bytes, &result, spare, &submit);
124 async_tx_issue_pending(tx);
126 if (wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)) == 0)
127 pr("%s: timeout! (faila: %d failb: %d disks: %d)\n",
128 __func__, faila, failb, disks);
130 if (result != 0)
131 pr("%s: validation failure! faila: %d failb: %d sum_check_flags: %x\n",
132 __func__, faila, failb, result);
135 static int test_disks(int i, int j, int disks)
137 int erra, errb;
139 memset(page_address(recovi), 0xf0, PAGE_SIZE);
140 memset(page_address(recovj), 0xba, PAGE_SIZE);
142 dataptrs[i] = recovi;
143 dataptrs[j] = recovj;
145 raid6_dual_recov(disks, PAGE_SIZE, i, j, dataptrs);
147 erra = memcmp(page_address(data[i]), page_address(recovi), PAGE_SIZE);
148 errb = memcmp(page_address(data[j]), page_address(recovj), PAGE_SIZE);
150 pr("%s(%d, %d): faila=%3d(%c) failb=%3d(%c) %s\n",
151 __func__, i, j, i, disk_type(i, disks), j, disk_type(j, disks),
152 (!erra && !errb) ? "OK" : !erra ? "ERRB" : !errb ? "ERRA" : "ERRAB");
154 dataptrs[i] = data[i];
155 dataptrs[j] = data[j];
157 return erra || errb;
160 static int test(int disks, int *tests)
162 struct dma_async_tx_descriptor *tx;
163 struct async_submit_ctl submit;
164 struct completion cmp;
165 int err = 0;
166 int i, j;
168 recovi = data[disks];
169 recovj = data[disks+1];
170 spare = data[disks+2];
172 makedata(disks);
174 /* Nuke syndromes */
175 memset(page_address(data[disks-2]), 0xee, PAGE_SIZE);
176 memset(page_address(data[disks-1]), 0xee, PAGE_SIZE);
178 /* Generate assumed good syndrome */
179 init_completion(&cmp);
180 init_async_submit(&submit, ASYNC_TX_ACK, NULL, callback, &cmp, addr_conv);
181 tx = async_gen_syndrome(dataptrs, 0, disks, PAGE_SIZE, &submit);
182 async_tx_issue_pending(tx);
184 if (wait_for_completion_timeout(&cmp, msecs_to_jiffies(3000)) == 0) {
185 pr("error: initial gen_syndrome(%d) timed out\n", disks);
186 return 1;
189 pr("testing the %d-disk case...\n", disks);
190 for (i = 0; i < disks-1; i++)
191 for (j = i+1; j < disks; j++) {
192 (*tests)++;
193 err += test_disks(i, j, disks);
196 return err;
200 static int raid6_test(void)
202 int err = 0;
203 int tests = 0;
204 int i;
206 for (i = 0; i < NDISKS+3; i++) {
207 data[i] = alloc_page(GFP_KERNEL);
208 if (!data[i]) {
209 while (i--)
210 put_page(data[i]);
211 return -ENOMEM;
215 /* the 4-disk and 5-disk cases are special for the recovery code */
216 if (NDISKS > 4)
217 err += test(4, &tests);
218 if (NDISKS > 5)
219 err += test(5, &tests);
220 /* the 11 and 12 disk cases are special for ioatdma (p-disabled
221 * q-continuation without extended descriptor)
223 if (NDISKS > 12) {
224 err += test(11, &tests);
225 err += test(12, &tests);
227 err += test(NDISKS, &tests);
229 pr("\n");
230 pr("complete (%d tests, %d failure%s)\n",
231 tests, err, err == 1 ? "" : "s");
233 for (i = 0; i < NDISKS+3; i++)
234 put_page(data[i]);
236 return 0;
239 static void raid6_test_exit(void)
243 /* when compiled-in wait for drivers to load first (assumes dma drivers
244 * are also compliled-in)
246 late_initcall(raid6_test);
247 module_exit(raid6_test_exit);
248 MODULE_AUTHOR("Dan Williams <dan.j.williams@intel.com>");
249 MODULE_DESCRIPTION("asynchronous RAID-6 recovery self tests");
250 MODULE_LICENSE("GPL");