csum_partial_copy.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * MIPS64 specific IP/TCP/UDP checksumming routines
  7.  *
  8.  * Copyright (C) 1998, 1999 Ralf Baechle
  9.  */
  10. #include <net/checksum.h>
  11. #include <linux/types.h>
  12. #include <asm/byteorder.h>
  13. #include <asm/string.h>
  14. #include <asm/uaccess.h>
  15. /*
  16.  * copy while checksumming, otherwise like csum_partial
  17.  */
  18. unsigned int csum_partial_copy(const char *src, char *dst, 
  19.                                int len, unsigned int sum)
  20. {
  21. /*
  22.  * It's 2:30 am and I don't feel like doing it real ...
  23.  * This is lots slower than the real thing (tm)
  24.  */
  25. sum = csum_partial(src, len, sum);
  26. memcpy(dst, src, len);
  27. return sum;
  28. }
  29. /*
  30.  * Copy from userspace and compute checksum.  If we catch an exception
  31.  * then zero the rest of the buffer.
  32.  */
  33. unsigned int csum_partial_copy_from_user (const char *src, char *dst,
  34.                                           int len, unsigned int sum,
  35.                                           int *err_ptr)
  36. {
  37. int missing;
  38. missing = copy_from_user(dst, src, len);
  39. if (missing) {
  40. memset(dst + len - missing, 0, missing);
  41. *err_ptr = -EFAULT;
  42. }
  43. return csum_partial(dst, len, sum);
  44. }