patch-2.2.0-pre1 linux/arch/i386/lib/old-checksum.c
Next file: linux/arch/i386/lib/usercopy.c
Previous file: linux/arch/i386/lib/delay.c
Back to the patch index
Back to the overall index
- Lines: 20
- Date:
Sun Dec 27 10:32:09 1998
- Orig file:
v2.1.132/linux/arch/i386/lib/old-checksum.c
- Orig date:
Wed Dec 31 16:00:00 1969
diff -u --recursive --new-file v2.1.132/linux/arch/i386/lib/old-checksum.c linux/arch/i386/lib/old-checksum.c
@@ -0,0 +1,19 @@
+/*
+ * FIXME: old compatibility stuff, will be removed soon.
+ */
+
+#include <net/checksum.h>
+
+unsigned int csum_partial_copy( const char *src, char *dst, int len, int sum)
+{
+ int src_err=0, dst_err=0;
+
+ sum = csum_partial_copy_generic ( src, dst, len, sum, &src_err, &dst_err);
+
+ if (src_err || dst_err)
+ printk("old csum_partial_copy_fromuser(), tell mingo to convert me.\n");
+
+ return sum;
+}
+
+
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov