diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-ia64/checksum.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-ia64/checksum.h')
-rw-r--r-- | include/asm-ia64/checksum.h | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/include/asm-ia64/checksum.h b/include/asm-ia64/checksum.h new file mode 100644 index 000000000000..1f230ff8ea81 --- /dev/null +++ b/include/asm-ia64/checksum.h | |||
@@ -0,0 +1,76 @@ | |||
1 | #ifndef _ASM_IA64_CHECKSUM_H | ||
2 | #define _ASM_IA64_CHECKSUM_H | ||
3 | |||
4 | /* | ||
5 | * Modified 1998, 1999 | ||
6 | * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co | ||
7 | */ | ||
8 | |||
9 | /* | ||
10 | * This is a version of ip_compute_csum() optimized for IP headers, | ||
11 | * which always checksum on 4 octet boundaries. | ||
12 | */ | ||
13 | extern unsigned short ip_fast_csum (unsigned char * iph, unsigned int ihl); | ||
14 | |||
15 | /* | ||
16 | * Computes the checksum of the TCP/UDP pseudo-header returns a 16-bit | ||
17 | * checksum, already complemented | ||
18 | */ | ||
19 | extern unsigned short int csum_tcpudp_magic (unsigned long saddr, | ||
20 | unsigned long daddr, | ||
21 | unsigned short len, | ||
22 | unsigned short proto, | ||
23 | unsigned int sum); | ||
24 | |||
25 | extern unsigned int csum_tcpudp_nofold (unsigned long saddr, | ||
26 | unsigned long daddr, | ||
27 | unsigned short len, | ||
28 | unsigned short proto, | ||
29 | unsigned int sum); | ||
30 | |||
31 | /* | ||
32 | * Computes the checksum of a memory block at buff, length len, | ||
33 | * and adds in "sum" (32-bit) | ||
34 | * | ||
35 | * returns a 32-bit number suitable for feeding into itself | ||
36 | * or csum_tcpudp_magic | ||
37 | * | ||
38 | * this function must be called with even lengths, except | ||
39 | * for the last fragment, which may be odd | ||
40 | * | ||
41 | * it's best to have buff aligned on a 32-bit boundary | ||
42 | */ | ||
43 | extern unsigned int csum_partial (const unsigned char * buff, int len, | ||
44 | unsigned int sum); | ||
45 | |||
46 | /* | ||
47 | * Same as csum_partial, but copies from src while it checksums. | ||
48 | * | ||
49 | * Here it is even more important to align src and dst on a 32-bit (or | ||
50 | * even better 64-bit) boundary. | ||
51 | */ | ||
52 | extern unsigned int csum_partial_copy_from_user (const char *src, char *dst, | ||
53 | int len, unsigned int sum, | ||
54 | int *errp); | ||
55 | |||
56 | extern unsigned int csum_partial_copy_nocheck (const char *src, char *dst, | ||
57 | int len, unsigned int sum); | ||
58 | |||
59 | /* | ||
60 | * This routine is used for miscellaneous IP-like checksums, mainly in | ||
61 | * icmp.c | ||
62 | */ | ||
63 | extern unsigned short ip_compute_csum (unsigned char *buff, int len); | ||
64 | |||
65 | /* | ||
66 | * Fold a partial checksum without adding pseudo headers. | ||
67 | */ | ||
68 | static inline unsigned short | ||
69 | csum_fold (unsigned int sum) | ||
70 | { | ||
71 | sum = (sum & 0xffff) + (sum >> 16); | ||
72 | sum = (sum & 0xffff) + (sum >> 16); | ||
73 | return ~sum; | ||
74 | } | ||
75 | |||
76 | #endif /* _ASM_IA64_CHECKSUM_H */ | ||