patch-2.4.4 linux/arch/ia64/lib/csum_partial_copy.c
Next file: linux/arch/ia64/lib/do_csum.S
Previous file: linux/arch/ia64/lib/copy_user.S
Back to the patch index
Back to the overall index
- Lines: 35
- Date:
Thu Apr 5 12:51:47 2001
- Orig file:
v2.4.3/linux/arch/ia64/lib/csum_partial_copy.c
- Orig date:
Sun Feb 6 18:42:40 2000
diff -u --recursive --new-file v2.4.3/linux/arch/ia64/lib/csum_partial_copy.c linux/arch/ia64/lib/csum_partial_copy.c
@@ -1,6 +1,6 @@
/*
* Network Checksum & Copy routine
- *
+ *
* Copyright (C) 1999 Hewlett-Packard Co
* Copyright (C) 1999 Stephane Eranian <eranian@hpl.hp.com>
*
@@ -107,22 +107,18 @@
do_csum_partial_copy_from_user (const char *src, char *dst, int len,
unsigned int psum, int *errp)
{
- const unsigned char *psrc = src;
unsigned long result;
- int cplen = len;
- int r = 0;
/* XXX Fixme
- * for now we separate the copy from checksum for obvious
+ * for now we separate the copy from checksum for obvious
* alignment difficulties. Look at the Alpha code and you'll be
* scared.
*/
- while ( cplen-- ) r |=__get_user(*dst++,psrc++);
-
- if ( r && errp ) *errp = r;
+ if (__copy_from_user(dst, src, len) != 0 && errp)
+ *errp = -EFAULT;
- result = do_csum(src, len);
+ result = do_csum(dst, len);
/* add in old sum, and carry.. */
result += psum;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)