aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2010-08-12 06:38:24 +1000
committerNeilBrown <neilb@suse.de>2010-08-12 06:38:24 +1000
commitd5302fe41ffb28d0a48be6a71becba36d3453ae0 (patch)
tree02414f0dc4ad18b6a6a096efb69046281248dd2b
parentcc4589ebfae6f8dbb5cf880a0a67eedab3416492 (diff)
downloadkernel_samsung_smdk4412-d5302fe41ffb28d0a48be6a71becba36d3453ae0.zip
kernel_samsung_smdk4412-d5302fe41ffb28d0a48be6a71becba36d3453ae0.tar.gz
kernel_samsung_smdk4412-d5302fe41ffb28d0a48be6a71becba36d3453ae0.tar.bz2
Make lib/raid6/test build correctly.
Some bit-rot needs to be cleaned out. Signed-off-by: NeilBrown <neilb@suse.de>
-rw-r--r--include/linux/raid/pq.h2
-rw-r--r--lib/raid6/algos.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/raid/pq.h b/include/linux/raid/pq.h
index 1cbbd2c..2b59cc8 100644
--- a/include/linux/raid/pq.h
+++ b/include/linux/raid/pq.h
@@ -62,7 +62,9 @@ extern const char raid6_empty_zero_page[PAGE_SIZE];
#define disable_kernel_altivec()
#define EXPORT_SYMBOL(sym)
+#define EXPORT_SYMBOL_GPL(sym)
#define MODULE_LICENSE(licence)
+#define MODULE_DESCRIPTION(desc)
#define subsys_initcall(x)
#define module_exit(x)
#endif /* __KERNEL__ */
diff --git a/lib/raid6/algos.c b/lib/raid6/algos.c
index 1f8784b..df7ff72 100644
--- a/lib/raid6/algos.c
+++ b/lib/raid6/algos.c
@@ -17,11 +17,11 @@
*/
#include <linux/raid/pq.h>
-#include <linux/gfp.h>
#ifndef __KERNEL__
#include <sys/mman.h>
#include <stdio.h>
#else
+#include <linux/gfp.h>
#if !RAID6_USE_EMPTY_ZERO_PAGE
/* In .bss so it's zeroed */
const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256)));