diff options
| author | H. Peter Anvin <hpa@zytor.com> | 2005-09-16 22:27:29 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-17 14:49:58 -0400 |
| commit | d7e70ba45fd9850296ebb78ff5827f6a375f650c (patch) | |
| tree | 26c5eba7ce9386b756e0d7cae93a9d4fc419471d /drivers/md/raid6test | |
| 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/raid6test')
| -rw-r--r-- | drivers/md/raid6test/Makefile | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/drivers/md/raid6test/Makefile b/drivers/md/raid6test/Makefile index 557806728609..78e0396adf2a 100644 --- a/drivers/md/raid6test/Makefile +++ b/drivers/md/raid6test/Makefile | |||
| @@ -8,6 +8,8 @@ OPTFLAGS = -O2 # Adjust as desired | |||
| 8 | CFLAGS = -I.. -g $(OPTFLAGS) | 8 | CFLAGS = -I.. -g $(OPTFLAGS) |
| 9 | LD = ld | 9 | LD = ld |
| 10 | PERL = perl | 10 | PERL = perl |
| 11 | AR = ar | ||
| 12 | RANLIB = ranlib | ||
| 11 | 13 | ||
| 12 | .c.o: | 14 | .c.o: |
| 13 | $(CC) $(CFLAGS) -c -o $@ $< | 15 | $(CC) $(CFLAGS) -c -o $@ $< |
| @@ -18,18 +20,33 @@ PERL = perl | |||
| 18 | %.uc: ../%.uc | 20 | %.uc: ../%.uc |
| 19 | cp -f $< $@ | 21 | cp -f $< $@ |
| 20 | 22 | ||
| 21 | all: raid6.o raid6test | 23 | all: raid6.a raid6test |
| 22 | 24 | ||
| 23 | raid6.o: raid6int1.o raid6int2.o raid6int4.o raid6int8.o raid6int16.o \ | 25 | raid6.a: raid6int1.o raid6int2.o raid6int4.o raid6int8.o raid6int16.o \ |
| 24 | raid6int32.o \ | 26 | raid6int32.o \ |
| 25 | raid6mmx.o raid6sse1.o raid6sse2.o \ | 27 | raid6mmx.o raid6sse1.o raid6sse2.o \ |
| 28 | raid6altivec1.o raid6altivec2.o raid6altivec4.o raid6altivec8.o \ | ||
| 26 | raid6recov.o raid6algos.o \ | 29 | raid6recov.o raid6algos.o \ |
| 27 | raid6tables.o | 30 | raid6tables.o |
| 28 | $(LD) -r -o $@ $^ | 31 | rm -f $@ |
| 32 | $(AR) cq $@ $^ | ||
| 33 | $(RANLIB) $@ | ||
| 29 | 34 | ||
| 30 | raid6test: raid6.o test.c | 35 | raid6test: test.c raid6.a |
| 31 | $(CC) $(CFLAGS) -o raid6test $^ | 36 | $(CC) $(CFLAGS) -o raid6test $^ |
| 32 | 37 | ||
| 38 | raid6altivec1.c: raid6altivec.uc ../unroll.pl | ||
| 39 | $(PERL) ../unroll.pl 1 < raid6altivec.uc > $@ | ||
| 40 | |||
| 41 | raid6altivec2.c: raid6altivec.uc ../unroll.pl | ||
| 42 | $(PERL) ../unroll.pl 2 < raid6altivec.uc > $@ | ||
| 43 | |||
| 44 | raid6altivec4.c: raid6altivec.uc ../unroll.pl | ||
| 45 | $(PERL) ../unroll.pl 4 < raid6altivec.uc > $@ | ||
| 46 | |||
| 47 | raid6altivec8.c: raid6altivec.uc ../unroll.pl | ||
| 48 | $(PERL) ../unroll.pl 8 < raid6altivec.uc > $@ | ||
| 49 | |||
| 33 | raid6int1.c: raid6int.uc ../unroll.pl | 50 | raid6int1.c: raid6int.uc ../unroll.pl |
| 34 | $(PERL) ../unroll.pl 1 < raid6int.uc > $@ | 51 | $(PERL) ../unroll.pl 1 < raid6int.uc > $@ |
| 35 | 52 | ||
| @@ -52,7 +69,7 @@ raid6tables.c: mktables | |||
| 52 | ./mktables > raid6tables.c | 69 | ./mktables > raid6tables.c |
| 53 | 70 | ||
| 54 | clean: | 71 | clean: |
| 55 | rm -f *.o mktables mktables.c raid6int.uc raid6*.c raid6test | 72 | rm -f *.o *.a mktables mktables.c raid6int.uc raid6*.c raid6test |
| 56 | 73 | ||
| 57 | spotless: clean | 74 | spotless: clean |
| 58 | rm -f *~ | 75 | rm -f *~ |
