1
2
3
4
5
6
7
8
9
10
11
12
13#ifndef LINUX_RAID_RAID6_H
14#define LINUX_RAID_RAID6_H
15
16#ifdef __KERNEL__
17
18
19#define RAID6_USE_EMPTY_ZERO_PAGE 0
20
21#include <linux/module.h>
22#include <linux/stddef.h>
23#include <linux/compiler.h>
24#include <linux/types.h>
25#include <linux/kernel.h>
26#include <linux/errno.h>
27#include <linux/mempool.h>
28#include <linux/list.h>
29#include <linux/vmalloc.h>
30#include <linux/raid/md.h>
31#include <linux/raid/raid5.h>
32
33typedef raid5_conf_t raid6_conf_t;
34
35
36#define UPDATE_PARITY 4
37
38
39
40#if RAID6_USE_EMPTY_ZERO_PAGE
41# define raid6_empty_zero_page empty_zero_page
42#else
43extern const char raid6_empty_zero_page[PAGE_SIZE];
44#endif
45
46#else
47
48
49#include <errno.h>
50#include <inttypes.h>
51#include <limits.h>
52#include <stddef.h>
53#include <sys/mman.h>
54#include <sys/types.h>
55
56
57#define BITS_PER_LONG __WORDSIZE
58
59typedef uint8_t u8;
60typedef uint16_t u16;
61typedef uint32_t u32;
62typedef uint64_t u64;
63
64#ifndef PAGE_SIZE
65# define PAGE_SIZE 4096
66#endif
67extern const char raid6_empty_zero_page[PAGE_SIZE];
68
69#define __init
70#define __exit
71#define __attribute_const__ __attribute__((const))
72
73#define preempt_enable()
74#define preempt_disable()
75
76#endif
77
78
79struct raid6_calls {
80 void (*gen_syndrome)(int, size_t, void **);
81 int (*valid)(void);
82 const char *name;
83 int prefer;
84};
85
86
87extern struct raid6_calls raid6_call;
88
89
90extern const struct raid6_calls * const raid6_algos[];
91int raid6_select_algo(void);
92
93
94#define RAID6_OK 0
95#define RAID6_P_BAD 1
96#define RAID6_Q_BAD 2
97#define RAID6_PQ_BAD 3
98
99
100extern const u8 raid6_gfmul[256][256] __attribute__((aligned(256)));
101extern const u8 raid6_gfexp[256] __attribute__((aligned(256)));
102extern const u8 raid6_gfinv[256] __attribute__((aligned(256)));
103extern const u8 raid6_gfexi[256] __attribute__((aligned(256)));
104
105
106void raid6_2data_recov(int disks, size_t bytes, int faila, int failb, void **ptrs);
107void raid6_datap_recov(int disks, size_t bytes, int faila, void **ptrs);
108void raid6_dual_recov(int disks, size_t bytes, int faila, int failb, void **ptrs);
109
110
111#ifndef __KERNEL__
112
113# define jiffies raid6_jiffies()
114# define printk printf
115# define GFP_KERNEL 0
116# define __get_free_pages(x,y) ((unsigned long)mmap(NULL, PAGE_SIZE << (y), PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0))
117# define free_pages(x,y) munmap((void *)(x), (y)*PAGE_SIZE)
118
119static inline void cpu_relax(void)
120{
121
122}
123
124#undef HZ
125#define HZ 1000
126static inline uint32_t raid6_jiffies(void)
127{
128 struct timeval tv;
129 gettimeofday(&tv, NULL);
130 return tv.tv_sec*1000 + tv.tv_usec/1000;
131}
132
133#endif
134
135#endif
136