diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-03-19 18:19:34 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2020-04-22 20:37:50 +0200 |
commit | 2a89b674fd6834dacf2a6edfbdf5607c163dd36e (patch) | |
tree | cf6458f30895d1581f237cbb175232e56a4fa72d /arch/x86/include/asm/checksum_64.h | |
parent | Linux 5.7-rc1 (diff) | |
download | linux-2a89b674fd6834dacf2a6edfbdf5607c163dd36e.tar.xz linux-2a89b674fd6834dacf2a6edfbdf5607c163dd36e.zip |
get rid of csum_partial_copy_to_user()
For historical reasons some architectures call their csum_and_copy_to_user()
csum_partial_copy_to_user() instead (and supply a macro defining the
former as the latter). That's the last remnants of old experiment that
went nowhere; time to bury them. Rename those to csum_and_copy_to_user()
and get rid of the macros.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/x86/include/asm/checksum_64.h')
-rw-r--r-- | arch/x86/include/asm/checksum_64.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/include/asm/checksum_64.h b/arch/x86/include/asm/checksum_64.h index 3ec6d3267cf9..ac9c06494827 100644 --- a/arch/x86/include/asm/checksum_64.h +++ b/arch/x86/include/asm/checksum_64.h @@ -141,13 +141,11 @@ extern __visible __wsum csum_partial_copy_generic(const void *src, const void *d extern __wsum csum_partial_copy_from_user(const void __user *src, void *dst, int len, __wsum isum, int *errp); -extern __wsum csum_partial_copy_to_user(const void *src, void __user *dst, +extern __wsum csum_and_copy_to_user(const void *src, void __user *dst, int len, __wsum isum, int *errp); extern __wsum csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum); -/* Old names. To be removed. */ -#define csum_and_copy_to_user csum_partial_copy_to_user #define csum_and_copy_from_user csum_partial_copy_from_user /** |