saner calling conventions for csum_and_copy_..._user()
All callers of these primitives will
* discard anything we might've copied in case of error
* ignore the csum value in case of error
* always pass 0xffffffff as the initial sum, so the
resulting csum value (in case of success, that is) will never be 0.
That suggest the following calling conventions:
* don't pass err_ptr - just return 0 on error.
* don't bother with zeroing destination, etc. in case of error
* don't pass the initial sum - just use 0xffffffff.
This commit does the minimal conversion in the instances of csum_and_copy_...();
the changes of actual asm code behind them are done later in the series.
Note that this asm code is often shared with csum_partial_copy_nocheck();
the difference is that csum_partial_copy_nocheck() passes 0 for initial
sum while csum_and_copy_..._user() pass 0xffffffff. Fortunately, we are
free to pass 0xffffffff in all cases and subsequent patches will use that
freedom without any special comments.
A part that could be split off: parisc and uml/i386 claimed to have
csum_and_copy_to_user() instances of their own, but those were identical
to the generic one, so we simply drop them. Not sure if it's worth
a separate commit...
Signed-off-by:
Al Viro <viro@zeniv.linux.org.uk>
parent
99a2c96d
No related branches found
No related tags found
Showing
- arch/alpha/include/asm/checksum.h 1 addition, 1 deletionarch/alpha/include/asm/checksum.h
- arch/alpha/lib/csum_partial_copy.c 11 additions, 14 deletionsarch/alpha/lib/csum_partial_copy.c
- arch/arm/include/asm/checksum.h 6 additions, 7 deletionsarch/arm/include/asm/checksum.h
- arch/m68k/include/asm/checksum.h 1 addition, 2 deletionsarch/m68k/include/asm/checksum.h
- arch/m68k/lib/checksum.c 3 additions, 5 deletionsarch/m68k/lib/checksum.c
- arch/mips/include/asm/checksum.h 22 additions, 24 deletionsarch/mips/include/asm/checksum.h
- arch/parisc/include/asm/checksum.h 0 additions, 20 deletionsarch/parisc/include/asm/checksum.h
- arch/powerpc/include/asm/checksum.h 2 additions, 2 deletionsarch/powerpc/include/asm/checksum.h
- arch/powerpc/lib/checksum_wrappers.c 21 additions, 47 deletionsarch/powerpc/lib/checksum_wrappers.c
- arch/sh/include/asm/checksum_32.h 18 additions, 18 deletionsarch/sh/include/asm/checksum_32.h
- arch/sparc/include/asm/checksum_32.h 30 additions, 35 deletionsarch/sparc/include/asm/checksum_32.h
- arch/sparc/include/asm/checksum_64.h 6 additions, 8 deletionsarch/sparc/include/asm/checksum_64.h
- arch/x86/include/asm/checksum_32.h 14 additions, 21 deletionsarch/x86/include/asm/checksum_32.h
- arch/x86/include/asm/checksum_64.h 2 additions, 4 deletionsarch/x86/include/asm/checksum_64.h
- arch/x86/lib/csum-wrappers_64.c 16 additions, 22 deletionsarch/x86/lib/csum-wrappers_64.c
- arch/x86/um/asm/checksum_32.h 0 additions, 23 deletionsarch/x86/um/asm/checksum_32.h
- arch/xtensa/include/asm/checksum.h 16 additions, 14 deletionsarch/xtensa/include/asm/checksum.h
- include/net/checksum.h 6 additions, 9 deletionsinclude/net/checksum.h
- lib/iov_iter.c 8 additions, 11 deletionslib/iov_iter.c
Loading
Please register or sign in to comment