diff options
Diffstat (limited to 'lib/raid6/test/test.c')
-rw-r--r-- | lib/raid6/test/test.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/raid6/test/test.c b/lib/raid6/test/test.c index 3bebbabdb510..b07f4d8e6b03 100644 --- a/lib/raid6/test/test.c +++ b/lib/raid6/test/test.c | |||
@@ -21,12 +21,13 @@ | |||
21 | 21 | ||
22 | #define NDISKS 16 /* Including P and Q */ | 22 | #define NDISKS 16 /* Including P and Q */ |
23 | 23 | ||
24 | const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256))); | 24 | const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE))); |
25 | struct raid6_calls raid6_call; | 25 | struct raid6_calls raid6_call; |
26 | 26 | ||
27 | char *dataptrs[NDISKS]; | 27 | char *dataptrs[NDISKS]; |
28 | char data[NDISKS][PAGE_SIZE]; | 28 | char data[NDISKS][PAGE_SIZE] __attribute__((aligned(PAGE_SIZE))); |
29 | char recovi[PAGE_SIZE], recovj[PAGE_SIZE]; | 29 | char recovi[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE))); |
30 | char recovj[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE))); | ||
30 | 31 | ||
31 | static void makedata(int start, int stop) | 32 | static void makedata(int start, int stop) |
32 | { | 33 | { |