GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / crypto / async_tx / raid6test.c
blobc1321935ebcc587f31e991c6a0c917986164102e
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/random.h>
26 #undef pr
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;
42 complete(cmp);
45 static void makedata(int disks)
47 int i, j;
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;
53 *p = random32();
56 dataptrs[i] = data[i];
60 static char disk_type(int d, int disks)
62 if (d == disks - 2)
63 return 'P';
64 else if (d == disks - 1)
65 return 'Q';
66 else
67 return 'D';
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;
78 if (faila > failb)
79 swap(faila, failb);
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);
86 } else {
87 struct page *blocks[disks];
88 struct page *dest;
89 int count = 0;
90 int i;
92 /* data+Q failure. Reconstruct data from P,
93 * then rebuild syndrome
95 for (i = disks; i-- ; ) {
96 if (i == faila || i == failb)
97 continue;
98 blocks[count++] = ptrs[i];
100 dest = ptrs[faila];
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);
108 } else {
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);
113 } else {
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);
128 if (result != 0)
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)
135 int erra, errb;
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];
155 return erra || errb;
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;
163 int err = 0;
164 int i, j;
166 recovi = data[disks];
167 recovj = data[disks+1];
168 spare = data[disks+2];
170 makedata(disks);
172 /* Nuke syndromes */
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);
184 return 1;
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++) {
190 (*tests)++;
191 err += test_disks(i, j, disks);
194 return err;
198 static int raid6_test(void)
200 int err = 0;
201 int tests = 0;
202 int i;
204 for (i = 0; i < NDISKS+3; i++) {
205 data[i] = alloc_page(GFP_KERNEL);
206 if (!data[i]) {
207 while (i--)
208 put_page(data[i]);
209 return -ENOMEM;
213 /* the 4-disk and 5-disk cases are special for the recovery code */
214 if (NDISKS > 4)
215 err += test(4, &tests);
216 if (NDISKS > 5)
217 err += test(5, &tests);
218 /* the 11 and 12 disk cases are special for ioatdma (p-disabled
219 * q-continuation without extended descriptor)
221 if (NDISKS > 12) {
222 err += test(11, &tests);
223 err += test(12, &tests);
225 err += test(NDISKS, &tests);
227 pr("\n");
228 pr("complete (%d tests, %d failure%s)\n",
229 tests, err, err == 1 ? "" : "s");
231 for (i = 0; i < NDISKS+3; i++)
232 put_page(data[i]);
234 return 0;
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");