aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/lib
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2014-01-20 23:22:17 -0500
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-03-06 23:53:12 -0500
commit22d651dcef536c75f75537290bf3da5038e68b6b (patch)
treef235898edcb89a9fe9dbf2f9f76b79f78596b16e /arch/powerpc/lib
parent55672ecfa21f23616541c50e0e687f14f9ecf165 (diff)
selftests/powerpc: Import Anton's memcpy / copy_tofrom_user tests
Turn Anton's memcpy / copy_tofrom_user test into something that can live in tools/testing/selftests. It requires one turd in arch/powerpc/lib/memcpy_64.S, but it's pretty harmless IMHO. We are sailing very close to the wind with the feature macros. We define them to nothing, which currently means we get a few extra nops and include the unaligned calls. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r--arch/powerpc/lib/memcpy_64.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/lib/memcpy_64.S b/arch/powerpc/lib/memcpy_64.S
index d2bbbc8d7dc0..72ad055168a3 100644
--- a/arch/powerpc/lib/memcpy_64.S
+++ b/arch/powerpc/lib/memcpy_64.S
@@ -14,7 +14,9 @@ _GLOBAL(memcpy)
14BEGIN_FTR_SECTION 14BEGIN_FTR_SECTION
15 std r3,48(r1) /* save destination pointer for return value */ 15 std r3,48(r1) /* save destination pointer for return value */
16FTR_SECTION_ELSE 16FTR_SECTION_ELSE
17#ifndef SELFTEST
17 b memcpy_power7 18 b memcpy_power7
19#endif
18ALT_FTR_SECTION_END_IFCLR(CPU_FTR_VMX_COPY) 20ALT_FTR_SECTION_END_IFCLR(CPU_FTR_VMX_COPY)
19 PPC_MTOCRF(0x01,r5) 21 PPC_MTOCRF(0x01,r5)
20 cmpldi cr1,r5,16 22 cmpldi cr1,r5,16