|
@@ -21,12 +21,13 @@
|
|
|
|
|
|
|
|
#define NDISKS 16 /* Including P and Q */
|
|
#define NDISKS 16 /* Including P and Q */
|
|
|
|
|
|
|
|
-const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256)));
|
|
|
|
|
|
|
+const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE)));
|
|
|
struct raid6_calls raid6_call;
|
|
struct raid6_calls raid6_call;
|
|
|
|
|
|
|
|
char *dataptrs[NDISKS];
|
|
char *dataptrs[NDISKS];
|
|
|
-char data[NDISKS][PAGE_SIZE];
|
|
|
|
|
-char recovi[PAGE_SIZE], recovj[PAGE_SIZE];
|
|
|
|
|
|
|
+char data[NDISKS][PAGE_SIZE] __attribute__((aligned(PAGE_SIZE)));
|
|
|
|
|
+char recovi[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE)));
|
|
|
|
|
+char recovj[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE)));
|
|
|
|
|
|
|
|
static void makedata(int start, int stop)
|
|
static void makedata(int start, int stop)
|
|
|
{
|
|
{
|