1 #ifndef _ALPHA_CHECKSUM_H
2 #define _ALPHA_CHECKSUM_H
7 * This is a version of ip_compute_csum() optimized for IP headers,
8 * which always checksum on 4 octet boundaries.
10 extern __sum16
ip_fast_csum(const void *iph
, unsigned int ihl
);
13 * computes the checksum of the TCP/UDP pseudo-header
14 * returns a 16-bit checksum, already complemented
16 extern __sum16
csum_tcpudp_magic(__be32 saddr
, __be32 daddr
,
21 __wsum
csum_tcpudp_nofold(__be32 saddr
, __be32 daddr
,
22 unsigned short len
, unsigned short proto
,
26 * computes the checksum of a memory block at buff, length len,
27 * and adds in "sum" (32-bit)
29 * returns a 32-bit number suitable for feeding into itself
30 * or csum_tcpudp_magic
32 * this function must be called with even lengths, except
33 * for the last fragment, which may be odd
35 * it's best to have buff aligned on a 32-bit boundary
37 extern __wsum
csum_partial(const void *buff
, int len
, __wsum sum
);
40 * the same as csum_partial, but copies from src while it
43 * here even more important to align src and dst on a 32-bit (or even
44 * better 64-bit) boundary
46 __wsum
csum_partial_copy_from_user(const void __user
*src
, void *dst
, int len
, __wsum sum
, int *errp
);
48 __wsum
csum_partial_copy_nocheck(const void *src
, void *dst
, int len
, __wsum sum
);
52 * this routine is used for miscellaneous IP-like checksums, mainly
56 extern __sum16
ip_compute_csum(const void *buff
, int len
);
59 * Fold a partial checksum without adding pseudo headers
62 static inline __sum16
csum_fold(__wsum csum
)
64 u32 sum
= (__force u32
)csum
;
65 sum
= (sum
& 0xffff) + (sum
>> 16);
66 sum
= (sum
& 0xffff) + (sum
>> 16);
67 return (__force __sum16
)~sum
;
70 #define _HAVE_ARCH_IPV6_CSUM
71 extern __sum16
csum_ipv6_magic(const struct in6_addr
*saddr
,
72 const struct in6_addr
*daddr
,
73 __u32 len
, unsigned short proto
,