diff options
| -rw-r--r-- | include/linux/raid/pq.h | 2 | ||||
| -rw-r--r-- | lib/raid6/Makefile | 81 | ||||
| -rw-r--r-- | lib/raid6/algos.c (renamed from lib/raid6/raid6algos.c) | 4 | ||||
| -rw-r--r-- | lib/raid6/altivec.uc (renamed from lib/raid6/raid6altivec.uc) | 0 | ||||
| -rw-r--r-- | lib/raid6/int.uc (renamed from lib/raid6/raid6int.uc) | 0 | ||||
| -rw-r--r-- | lib/raid6/mmx.c (renamed from lib/raid6/raid6mmx.c) | 6 | ||||
| -rw-r--r-- | lib/raid6/raid6test/Makefile | 75 | ||||
| -rw-r--r-- | lib/raid6/recov.c (renamed from lib/raid6/raid6recov.c) | 2 | ||||
| -rw-r--r-- | lib/raid6/sse1.c (renamed from lib/raid6/raid6sse1.c) | 6 | ||||
| -rw-r--r-- | lib/raid6/sse2.c (renamed from lib/raid6/raid6sse2.c) | 4 | ||||
| -rw-r--r-- | lib/raid6/test/Makefile | 72 | ||||
| -rw-r--r-- | lib/raid6/test/test.c (renamed from lib/raid6/raid6test/test.c) | 0 | ||||
| -rw-r--r-- | lib/raid6/x86.h (renamed from lib/raid6/raid6x86.h) | 2 |
13 files changed, 125 insertions, 129 deletions
diff --git a/include/linux/raid/pq.h b/include/linux/raid/pq.h index 1cbbd2c11aa9..2b59cc824395 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]; | |||
| 62 | #define disable_kernel_altivec() | 62 | #define disable_kernel_altivec() |
| 63 | 63 | ||
| 64 | #define EXPORT_SYMBOL(sym) | 64 | #define EXPORT_SYMBOL(sym) |
| 65 | #define EXPORT_SYMBOL_GPL(sym) | ||
| 65 | #define MODULE_LICENSE(licence) | 66 | #define MODULE_LICENSE(licence) |
| 67 | #define MODULE_DESCRIPTION(desc) | ||
| 66 | #define subsys_initcall(x) | 68 | #define subsys_initcall(x) |
| 67 | #define module_exit(x) | 69 | #define module_exit(x) |
| 68 | #endif /* __KERNEL__ */ | 70 | #endif /* __KERNEL__ */ |
diff --git a/lib/raid6/Makefile b/lib/raid6/Makefile index 19bf32da644f..8a38102770f3 100644 --- a/lib/raid6/Makefile +++ b/lib/raid6/Makefile | |||
| @@ -1,11 +1,8 @@ | |||
| 1 | obj-$(CONFIG_RAID6_PQ) += raid6_pq.o | 1 | obj-$(CONFIG_RAID6_PQ) += raid6_pq.o |
| 2 | 2 | ||
| 3 | raid6_pq-y += raid6algos.o raid6recov.o raid6tables.o \ | 3 | raid6_pq-y += algos.o recov.o tables.o int1.o int2.o int4.o \ |
| 4 | raid6int1.o raid6int2.o raid6int4.o \ | 4 | int8.o int16.o int32.o altivec1.o altivec2.o altivec4.o \ |
| 5 | raid6int8.o raid6int16.o raid6int32.o \ | 5 | altivec8.o mmx.o sse1.o sse2.o |
| 6 | raid6altivec1.o raid6altivec2.o raid6altivec4.o \ | ||
| 7 | raid6altivec8.o \ | ||
| 8 | raid6mmx.o raid6sse1.o raid6sse2.o | ||
| 9 | hostprogs-y += mktables | 6 | hostprogs-y += mktables |
| 10 | 7 | ||
| 11 | quiet_cmd_unroll = UNROLL $@ | 8 | quiet_cmd_unroll = UNROLL $@ |
| @@ -16,63 +13,63 @@ ifeq ($(CONFIG_ALTIVEC),y) | |||
| 16 | altivec_flags := -maltivec -mabi=altivec | 13 | altivec_flags := -maltivec -mabi=altivec |
| 17 | endif | 14 | endif |
| 18 | 15 | ||
| 19 | targets += raid6int1.c | 16 | targets += int1.c |
| 20 | $(obj)/raid6int1.c: UNROLL := 1 | 17 | $(obj)/int1.c: UNROLL := 1 |
| 21 | $(obj)/raid6int1.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE | 18 | $(obj)/int1.c: $(src)/int.uc $(src)/unroll.awk FORCE |
| 22 | $(call if_changed,unroll) | 19 | $(call if_changed,unroll) |
| 23 | 20 | ||
| 24 | targets += raid6int2.c | 21 | targets += int2.c |
| 25 | $(obj)/raid6int2.c: UNROLL := 2 | 22 | $(obj)/int2.c: UNROLL := 2 |
| 26 | $(obj)/raid6int2.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE | 23 | $(obj)/int2.c: $(src)/int.uc $(src)/unroll.awk FORCE |
| 27 | $(call if_changed,unroll) | 24 | $(call if_changed,unroll) |
| 28 | 25 | ||
| 29 | targets += raid6int4.c | 26 | targets += int4.c |
| 30 | $(obj)/raid6int4.c: UNROLL := 4 | 27 | $(obj)/int4.c: UNROLL := 4 |
| 31 | $(obj)/raid6int4.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE | 28 | $(obj)/int4.c: $(src)/int.uc $(src)/unroll.awk FORCE |
| 32 | $(call if_changed,unroll) | 29 | $(call if_changed,unroll) |
| 33 | 30 | ||
| 34 | targets += raid6int8.c | 31 | targets += int8.c |
| 35 | $(obj)/raid6int8.c: UNROLL := 8 | 32 | $(obj)/int8.c: UNROLL := 8 |
| 36 | $(obj)/raid6int8.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE | 33 | $(obj)/int8.c: $(src)/int.uc $(src)/unroll.awk FORCE |
| 37 | $(call if_changed,unroll) | 34 | $(call if_changed,unroll) |
| 38 | 35 | ||
| 39 | targets += raid6int16.c | 36 | targets += int16.c |
| 40 | $(obj)/raid6int16.c: UNROLL := 16 | 37 | $(obj)/int16.c: UNROLL := 16 |
| 41 | $(obj)/raid6int16.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE | 38 | $(obj)/int16.c: $(src)/int.uc $(src)/unroll.awk FORCE |
| 42 | $(call if_changed,unroll) | 39 | $(call if_changed,unroll) |
| 43 | 40 | ||
| 44 | targets += raid6int32.c | 41 | targets += int32.c |
| 45 | $(obj)/raid6int32.c: UNROLL := 32 | 42 | $(obj)/int32.c: UNROLL := 32 |
| 46 | $(obj)/raid6int32.c: $(src)/raid6int.uc $(src)/unroll.awk FORCE | 43 | $(obj)/int32.c: $(src)/int.uc $(src)/unroll.awk FORCE |
| 47 | $(call if_changed,unroll) | 44 | $(call if_changed,unroll) |
| 48 | 45 | ||
| 49 | CFLAGS_raid6altivec1.o += $(altivec_flags) | 46 | CFLAGS_altivec1.o += $(altivec_flags) |
| 50 | targets += raid6altivec1.c | 47 | targets += altivec1.c |
| 51 | $(obj)/raid6altivec1.c: UNROLL := 1 | 48 | $(obj)/altivec1.c: UNROLL := 1 |
| 52 | $(obj)/raid6altivec1.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE | 49 | $(obj)/altivec1.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
| 53 | $(call if_changed,unroll) | 50 | $(call if_changed,unroll) |
| 54 | 51 | ||
| 55 | CFLAGS_raid6altivec2.o += $(altivec_flags) | 52 | CFLAGS_altivec2.o += $(altivec_flags) |
| 56 | targets += raid6altivec2.c | 53 | targets += altivec2.c |
| 57 | $(obj)/raid6altivec2.c: UNROLL := 2 | 54 | $(obj)/altivec2.c: UNROLL := 2 |
| 58 | $(obj)/raid6altivec2.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE | 55 | $(obj)/altivec2.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
| 59 | $(call if_changed,unroll) | 56 | $(call if_changed,unroll) |
| 60 | 57 | ||
| 61 | CFLAGS_raid6altivec4.o += $(altivec_flags) | 58 | CFLAGS_altivec4.o += $(altivec_flags) |
| 62 | targets += raid6altivec4.c | 59 | targets += altivec4.c |
| 63 | $(obj)/raid6altivec4.c: UNROLL := 4 | 60 | $(obj)/altivec4.c: UNROLL := 4 |
| 64 | $(obj)/raid6altivec4.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE | 61 | $(obj)/altivec4.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
| 65 | $(call if_changed,unroll) | 62 | $(call if_changed,unroll) |
| 66 | 63 | ||
| 67 | CFLAGS_raid6altivec8.o += $(altivec_flags) | 64 | CFLAGS_altivec8.o += $(altivec_flags) |
| 68 | targets += raid6altivec8.c | 65 | targets += altivec8.c |
| 69 | $(obj)/raid6altivec8.c: UNROLL := 8 | 66 | $(obj)/altivec8.c: UNROLL := 8 |
| 70 | $(obj)/raid6altivec8.c: $(src)/raid6altivec.uc $(src)/unroll.awk FORCE | 67 | $(obj)/altivec8.c: $(src)/altivec.uc $(src)/unroll.awk FORCE |
| 71 | $(call if_changed,unroll) | 68 | $(call if_changed,unroll) |
| 72 | 69 | ||
| 73 | quiet_cmd_mktable = TABLE $@ | 70 | quiet_cmd_mktable = TABLE $@ |
| 74 | cmd_mktable = $(obj)/mktables > $@ || ( rm -f $@ && exit 1 ) | 71 | cmd_mktable = $(obj)/mktables > $@ || ( rm -f $@ && exit 1 ) |
| 75 | 72 | ||
| 76 | targets += raid6tables.c | 73 | targets += tables.c |
| 77 | $(obj)/raid6tables.c: $(obj)/mktables FORCE | 74 | $(obj)/tables.c: $(obj)/mktables FORCE |
| 78 | $(call if_changed,mktable) | 75 | $(call if_changed,mktable) |
diff --git a/lib/raid6/raid6algos.c b/lib/raid6/algos.c index 1f8784bfd44d..b595f560bee7 100644 --- a/lib/raid6/raid6algos.c +++ b/lib/raid6/algos.c | |||
| @@ -11,17 +11,17 @@ | |||
| 11 | * ----------------------------------------------------------------------- */ | 11 | * ----------------------------------------------------------------------- */ |
| 12 | 12 | ||
| 13 | /* | 13 | /* |
| 14 | * raid6algos.c | 14 | * raid6/algos.c |
| 15 | * | 15 | * |
| 16 | * Algorithm list and algorithm selection for RAID-6 | 16 | * Algorithm list and algorithm selection for RAID-6 |
| 17 | */ | 17 | */ |
| 18 | 18 | ||
| 19 | #include <linux/raid/pq.h> | 19 | #include <linux/raid/pq.h> |
| 20 | #include <linux/gfp.h> | ||
| 21 | #ifndef __KERNEL__ | 20 | #ifndef __KERNEL__ |
| 22 | #include <sys/mman.h> | 21 | #include <sys/mman.h> |
| 23 | #include <stdio.h> | 22 | #include <stdio.h> |
| 24 | #else | 23 | #else |
| 24 | #include <linux/gfp.h> | ||
| 25 | #if !RAID6_USE_EMPTY_ZERO_PAGE | 25 | #if !RAID6_USE_EMPTY_ZERO_PAGE |
| 26 | /* In .bss so it's zeroed */ | 26 | /* In .bss so it's zeroed */ |
| 27 | const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256))); | 27 | const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256))); |
diff --git a/lib/raid6/raid6altivec.uc b/lib/raid6/altivec.uc index 2654d5c854be..2654d5c854be 100644 --- a/lib/raid6/raid6altivec.uc +++ b/lib/raid6/altivec.uc | |||
diff --git a/lib/raid6/raid6int.uc b/lib/raid6/int.uc index d1e276a14fab..d1e276a14fab 100644 --- a/lib/raid6/raid6int.uc +++ b/lib/raid6/int.uc | |||
diff --git a/lib/raid6/raid6mmx.c b/lib/raid6/mmx.c index e7f6c13132bf..279347f23094 100644 --- a/lib/raid6/raid6mmx.c +++ b/lib/raid6/mmx.c | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | * ----------------------------------------------------------------------- */ | 11 | * ----------------------------------------------------------------------- */ |
| 12 | 12 | ||
| 13 | /* | 13 | /* |
| 14 | * raid6mmx.c | 14 | * raid6/mmx.c |
| 15 | * | 15 | * |
| 16 | * MMX implementation of RAID-6 syndrome functions | 16 | * MMX implementation of RAID-6 syndrome functions |
| 17 | */ | 17 | */ |
| @@ -19,9 +19,9 @@ | |||
| 19 | #if defined(__i386__) && !defined(__arch_um__) | 19 | #if defined(__i386__) && !defined(__arch_um__) |
| 20 | 20 | ||
| 21 | #include <linux/raid/pq.h> | 21 | #include <linux/raid/pq.h> |
| 22 | #include "raid6x86.h" | ||
