diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2015-09-22 10:34:23 -0400 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2016-03-04 22:47:47 -0500 |
commit | 03bc8b0fc87616c75c6dd060a2191e7fc8faacb6 (patch) | |
tree | 957b4dfc305d09183f582333388202e70f9f29ef /arch | |
parent | 11dfbf588ae697bc5362c24294c2605f09c2d3d4 (diff) |
powerpc32: checksum_wrappers_64 becomes checksum_wrappers
The powerpc64 checksum wrapper functions adds csum_and_copy_to_user()
which otherwise is implemented in include/net/checksum.h by using
csum_partial() then copy_to_user()
Those two wrapper fonctions are also applicable to powerpc32 as it is
based on the use of csum_partial_copy_generic() which also
exists on powerpc32
This patch renames arch/powerpc/lib/checksum_wrappers_64.c to
arch/powerpc/lib/checksum_wrappers.c and
makes it non-conditional to CONFIG_WORD_SIZE
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Scott Wood <oss@buserror.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/include/asm/checksum.h | 9 | ||||
-rw-r--r-- | arch/powerpc/lib/Makefile | 3 | ||||
-rw-r--r-- | arch/powerpc/lib/checksum_wrappers.c (renamed from arch/powerpc/lib/checksum_wrappers_64.c) | 0 |
3 files changed, 1 insertions, 11 deletions
diff --git a/arch/powerpc/include/asm/checksum.h b/arch/powerpc/include/asm/checksum.h index d2ca07bb8837..afa6722cb7d2 100644 --- a/arch/powerpc/include/asm/checksum.h +++ b/arch/powerpc/include/asm/checksum.h | |||
@@ -47,21 +47,12 @@ extern __wsum csum_partial_copy_generic(const void *src, void *dst, | |||
47 | int len, __wsum sum, | 47 | int len, __wsum sum, |
48 | int *src_err, int *dst_err); | 48 | int *src_err, int *dst_err); |
49 | 49 | ||
50 | #ifdef __powerpc64__ | ||
51 | #define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER | 50 | #define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER |
52 | extern __wsum csum_and_copy_from_user(const void __user *src, void *dst, | 51 | extern __wsum csum_and_copy_from_user(const void __user *src, void *dst, |
53 | int len, __wsum sum, int *err_ptr); | 52 | int len, __wsum sum, int *err_ptr); |
54 | #define HAVE_CSUM_COPY_USER | 53 | #define HAVE_CSUM_COPY_USER |
55 | extern __wsum csum_and_copy_to_user(const void *src, void __user *dst, | 54 | extern __wsum csum_and_copy_to_user(const void *src, void __user *dst, |
56 | int len, __wsum sum, int *err_ptr); | 55 | int len, __wsum sum, int *err_ptr); |
57 | #else | ||
58 | /* | ||
59 | * the same as csum_partial, but copies from src to dst while it | ||
60 | * checksums. | ||
61 | */ | ||
62 | #define csum_partial_copy_from_user(src, dst, len, sum, errp) \ | ||
63 | csum_partial_copy_generic((__force const void *)(src), (dst), (len), (sum), (errp), NULL) | ||
64 | #endif | ||
65 | 56 | ||
66 | #define csum_partial_copy_nocheck(src, dst, len, sum) \ | 57 | #define csum_partial_copy_nocheck(src, dst, len, sum) \ |
67 | csum_partial_copy_generic((src), (dst), (len), (sum), NULL, NULL) | 58 | csum_partial_copy_generic((src), (dst), (len), (sum), NULL, NULL) |
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index a47e14277fd8..e46b06822bea 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile | |||
@@ -22,8 +22,7 @@ obj64-$(CONFIG_SMP) += locks.o | |||
22 | obj64-$(CONFIG_ALTIVEC) += vmx-helper.o | 22 | obj64-$(CONFIG_ALTIVEC) += vmx-helper.o |
23 | 23 | ||
24 | ifeq ($(CONFIG_GENERIC_CSUM),) | 24 | ifeq ($(CONFIG_GENERIC_CSUM),) |
25 | obj-y += checksum_$(CONFIG_WORD_SIZE).o | 25 | obj-y += checksum_$(CONFIG_WORD_SIZE).o checksum_wrappers.o |
26 | obj-$(CONFIG_PPC64) += checksum_wrappers_64.o | ||
27 | endif | 26 | endif |
28 | 27 | ||
29 | obj-$(CONFIG_PPC_EMULATE_SSTEP) += sstep.o ldstfp.o | 28 | obj-$(CONFIG_PPC_EMULATE_SSTEP) += sstep.o ldstfp.o |
diff --git a/arch/powerpc/lib/checksum_wrappers_64.c b/arch/powerpc/lib/checksum_wrappers.c index 08e3a3356c40..08e3a3356c40 100644 --- a/arch/powerpc/lib/checksum_wrappers_64.c +++ b/arch/powerpc/lib/checksum_wrappers.c | |||