Linux Kernel
3.7.1
|
#include <linux/in6.h>
#include <asm/uaccess.h>
Go to the source code of this file.
Macros | |
#define | HAVE_CSUM_COPY_USER |
#define | _HAVE_ARCH_IPV6_CSUM |
Functions | |
__wsum | csum_partial (const void *buff, int len, __wsum sum) |
__wsum | csum_partial_copy_nocheck (const void *src, void *dst, int len, __wsum sum) |
long | __csum_partial_copy_from_user (const void __user *src, void *dst, int len, __wsum sum) |
long | __csum_partial_copy_to_user (const void *src, void __user *dst, int len, __wsum sum) |
__sum16 | ip_fast_csum (const void *iph, unsigned int ihl) |
#define _HAVE_ARCH_IPV6_CSUM |
Definition at line 126 of file checksum_64.h.
#define HAVE_CSUM_COPY_USER |
Definition at line 61 of file checksum_64.h.
Definition at line 164 of file checksum.c.
csum_partial_copy_nocheck - Copy and checksum. : source address : destination address : number of bytes to be copied. : initial sum that is added into the result (32bit unfolded)
Returns an 32bit unfolded checksum of the buffer.
Definition at line 374 of file csum_partial_copy.c.