ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / md / raid6algos.c
1 /* -*- linux-c -*- ------------------------------------------------------- *
2  *
3  *   Copyright 2002 H. Peter Anvin - All Rights Reserved
4  *
5  *   This program is free software; you can redistribute it and/or modify
6  *   it under the terms of the GNU General Public License as published by
7  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8  *   Bostom MA 02111-1307, USA; either version 2 of the License, or
9  *   (at your option) any later version; incorporated herein by reference.
10  *
11  * ----------------------------------------------------------------------- */
12
13 /*
14  * raid6algos.c
15  *
16  * Algorithm list and algorithm selection for RAID-6
17  */
18
19 #include "raid6.h"
20 #ifndef __KERNEL__
21 #include <sys/mman.h>
22 #endif
23
24 struct raid6_calls raid6_call;
25
26 /* Various routine sets */
27 extern const struct raid6_calls raid6_intx1;
28 extern const struct raid6_calls raid6_intx2;
29 extern const struct raid6_calls raid6_intx4;
30 extern const struct raid6_calls raid6_intx8;
31 extern const struct raid6_calls raid6_intx16;
32 extern const struct raid6_calls raid6_intx32;
33 extern const struct raid6_calls raid6_mmxx1;
34 extern const struct raid6_calls raid6_mmxx2;
35 extern const struct raid6_calls raid6_sse1x1;
36 extern const struct raid6_calls raid6_sse1x2;
37 extern const struct raid6_calls raid6_sse2x1;
38 extern const struct raid6_calls raid6_sse2x2;
39 extern const struct raid6_calls raid6_sse2x4;
40
41 const struct raid6_calls * const raid6_algos[] = {
42         &raid6_intx1,
43         &raid6_intx2,
44         &raid6_intx4,
45         &raid6_intx8,
46 #if defined(__ia64__)
47         &raid6_intx16,
48         &raid6_intx32,
49 #endif
50 #if defined(__i386__)
51         &raid6_mmxx1,
52         &raid6_mmxx2,
53         &raid6_sse1x1,
54         &raid6_sse1x2,
55         &raid6_sse2x1,
56         &raid6_sse2x2,
57 #endif
58 #if defined(__x86_64__)
59         &raid6_sse2x1,
60         &raid6_sse2x2,
61         &raid6_sse2x4,
62 #endif
63         NULL
64 };
65
66 #ifdef __KERNEL__
67 #define RAID6_TIME_JIFFIES_LG2  4
68 #else
69 /* Need more time to be stable in userspace */
70 #define RAID6_TIME_JIFFIES_LG2  9
71 #endif
72
73 /* Try to pick the best algorithm */
74 /* This code uses the gfmul table as convenient data set to abuse */
75
76 int __init raid6_select_algo(void)
77 {
78         const struct raid6_calls * const * algo;
79         const struct raid6_calls * best;
80         char *syndromes;
81         void *dptrs[(65536/PAGE_SIZE)+2];
82         int i, disks;
83         unsigned long perf, bestperf;
84         int bestprefer;
85         unsigned long j0, j1;
86
87         disks = (65536/PAGE_SIZE)+2;
88         for ( i = 0 ; i < disks-2 ; i++ ) {
89                 dptrs[i] = ((char *)raid6_gfmul) + PAGE_SIZE*i;
90         }
91
92         /* Normal code - use a 2-page allocation to avoid D$ conflict */
93         syndromes = (void *) __get_free_pages(GFP_KERNEL, 1);
94
95         if ( !syndromes ) {
96                 printk("raid6: Yikes!  No memory available.\n");
97                 return -ENOMEM;
98         }
99
100         dptrs[disks-2] = syndromes;
101         dptrs[disks-1] = syndromes + PAGE_SIZE;
102
103         bestperf = 0;  bestprefer = 0;  best = NULL;
104
105         for ( algo = raid6_algos ; *algo ; algo++ ) {
106                 if ( !(*algo)->valid || (*algo)->valid() ) {
107                         perf = 0;
108
109                         preempt_disable();
110                         j0 = jiffies;
111                         while ( (j1 = jiffies) == j0 )
112                                 cpu_relax();
113                         while ( (jiffies-j1) < (1 << RAID6_TIME_JIFFIES_LG2) ) {
114                                 (*algo)->gen_syndrome(disks, PAGE_SIZE, dptrs);
115                                 perf++;
116                         }
117                         preempt_enable();
118
119                         if ( (*algo)->prefer > bestprefer ||
120                              ((*algo)->prefer == bestprefer &&
121                               perf > bestperf) ) {
122                                 best = *algo;
123                                 bestprefer = best->prefer;
124                                 bestperf = perf;
125                         }
126                         printk("raid6: %-8s %5ld MB/s\n", (*algo)->name,
127                                (perf*HZ) >> (20-16+RAID6_TIME_JIFFIES_LG2));
128                 }
129         }
130
131         if ( best )
132                 printk("raid6: using algorithm %s (%ld MB/s)\n",
133                        best->name,
134                        (bestperf*HZ) >> (20-16+RAID6_TIME_JIFFIES_LG2));
135         else
136                 printk("raid6: Yikes!  No algorithm found!\n");
137
138         raid6_call = *best;
139
140         free_pages((unsigned long)syndromes, 1);
141
142         return best ? 0 : -EINVAL;
143 }