diff options
author | H. Peter Anvin <hpa@zytor.com> | 2005-09-16 19:27:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-17 11:49:58 -0700 |
commit | d7e70ba45fd9850296ebb78ff5827f6a375f650c (patch) | |
tree | 26c5eba7ce9386b756e0d7cae93a9d4fc419471d /drivers/md/raid6algos.c | |
parent | 0d0fc3a2d6901bdedd8497acdb3358e2da9abefc (diff) |
[PATCH] RAID6 Altivec fix
This patch fixes a signedness bug with RAID6 for Altivec, and makes the
Altivec code testable in userspace.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/raid6algos.c')
-rw-r--r-- | drivers/md/raid6algos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/raid6algos.c b/drivers/md/raid6algos.c index acf386fc4b4..51c63c0cf1c 100644 --- a/drivers/md/raid6algos.c +++ b/drivers/md/raid6algos.c @@ -19,6 +19,7 @@ #include "raid6.h" #ifndef __KERNEL__ #include <sys/mman.h> +#include <stdio.h> #endif struct raid6_calls raid6_call; |