diff options
author | Anton Blanchard <anton@samba.org> | 2010-08-02 16:11:36 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-09-02 00:07:30 -0400 |
commit | 8c77391475bc3284a380fc46aaf0bcf26bde3ae6 (patch) | |
tree | 0948ebdf02ce03948faf8dc41af8414f84652239 /arch/powerpc/include/asm/checksum.h | |
parent | fdd374b62ca4df144c0138359dcffa83df7a0ea8 (diff) |
powerpc: Add 64bit csum_and_copy_to_user
This adds the equivalent of csum_and_copy_from_user for the receive side so we
can copy and checksum in one pass. It is modelled on the generic checksum
routine.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/checksum.h')
-rw-r--r-- | arch/powerpc/include/asm/checksum.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/checksum.h b/arch/powerpc/include/asm/checksum.h index 9ea58c0e7cfb..ce0c28495f9a 100644 --- a/arch/powerpc/include/asm/checksum.h +++ b/arch/powerpc/include/asm/checksum.h | |||
@@ -57,6 +57,9 @@ extern __wsum csum_partial_copy_generic(const void *src, void *dst, | |||
57 | #define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER | 57 | #define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER |
58 | extern __wsum csum_and_copy_from_user(const void __user *src, void *dst, | 58 | extern __wsum csum_and_copy_from_user(const void __user *src, void *dst, |
59 | int len, __wsum sum, int *err_ptr); | 59 | int len, __wsum sum, int *err_ptr); |
60 | #define HAVE_CSUM_COPY_USER | ||
61 | extern __wsum csum_and_copy_to_user(const void *src, void __user *dst, | ||
62 | int len, __wsum sum, int *err_ptr); | ||
60 | #else | 63 | #else |
61 | /* | 64 | /* |
62 | * the same as csum_partial, but copies from src to dst while it | 65 | * the same as csum_partial, but copies from src to dst while it |