From: Kenn H. <ke...@us...> - 2003-04-17 02:15:24
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv8402/include/asm-vax Modified Files: checksum.h Log Message: csum_partial_copy() disappears in 2.5.44 Index: checksum.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/checksum.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- checksum.h 20 May 2002 00:33:39 -0000 1.3 +++ checksum.h 17 Apr 2003 02:15:20 -0000 1.4 @@ -93,22 +93,7 @@ } /* - * the same as csum_partial, but copies from src while it - * checksums - * - * here even more important to align src and dst on a 32-bit - * (or even better 64-bit) boundary - */ - -extern inline unsigned int -csum_partial_copy(const char *src, char *dst, int len,unsigned int sum) -{ - memcpy(dst,src,len); - return csum_partial(dst, len, sum); -} - -/* - * the same as csum_partial_copy, but copies from user space. + * the same as csum_partial, but copies from user space. * * here even more important to align src and dst on a 32-bit (or even * better 64-bit) boundary |