diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-17 03:49:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 14:01:07 -0400 |
commit | 547c178b7237f586cbaac0246a112c502de32d64 (patch) | |
tree | d65e582ab54d07d99cb8ef7f6c77dcbbc718086d /arch | |
parent | 6d0fd9c9832005b754d7cd04bc8c0ce7ea035366 (diff) |
missing exports of csum_...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/lib/checksum.c | 1 | ||||
-rw-r--r-- | arch/ia64/lib/checksum.c | 1 | ||||
-rw-r--r-- | arch/m68k/lib/checksum.c | 1 | ||||
-rw-r--r-- | arch/sh64/lib/c-checksum.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/arch/alpha/lib/checksum.c b/arch/alpha/lib/checksum.c index ab3761c437a8..8698e0746f9f 100644 --- a/arch/alpha/lib/checksum.c +++ b/arch/alpha/lib/checksum.c | |||
@@ -69,6 +69,7 @@ __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr, | |||
69 | result = (result & 0xffffffff) + (result >> 32); | 69 | result = (result & 0xffffffff) + (result >> 32); |
70 | return (__force __wsum)result; | 70 | return (__force __wsum)result; |
71 | } | 71 | } |
72 | EXPORT_SYMBOL(csum_tcpudp_nofold); | ||
72 | 73 | ||
73 | /* | 74 | /* |
74 | * Do a 64-bit checksum on an arbitrary memory area.. | 75 | * Do a 64-bit checksum on an arbitrary memory area.. |
diff --git a/arch/ia64/lib/checksum.c b/arch/ia64/lib/checksum.c index 4411d9baeb21..9fc955026f86 100644 --- a/arch/ia64/lib/checksum.c +++ b/arch/ia64/lib/checksum.c | |||
@@ -60,6 +60,7 @@ csum_tcpudp_nofold (__be32 saddr, __be32 daddr, unsigned short len, | |||
60 | result = (result & 0xffffffff) + (result >> 32); | 60 | result = (result & 0xffffffff) + (result >> 32); |
61 | return (__force __wsum)result; | 61 | return (__force __wsum)result; |
62 | } | 62 | } |
63 | EXPORT_SYMBOL(csum_tcpudp_nofold); | ||
63 | 64 | ||
64 | extern unsigned long do_csum (const unsigned char *, long); | 65 | extern unsigned long do_csum (const unsigned char *, long); |
65 | 66 | ||
diff --git a/arch/m68k/lib/checksum.c b/arch/m68k/lib/checksum.c index cf6bb51945a2..6216f12a756b 100644 --- a/arch/m68k/lib/checksum.c +++ b/arch/m68k/lib/checksum.c | |||
@@ -422,3 +422,4 @@ csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum) | |||
422 | ); | 422 | ); |
423 | return(sum); | 423 | return(sum); |
424 | } | 424 | } |
425 | EXPORT_SYMBOL(csum_partial_copy_nocheck); | ||
diff --git a/arch/sh64/lib/c-checksum.c b/arch/sh64/lib/c-checksum.c index 4b2676380deb..bd5501760240 100644 --- a/arch/sh64/lib/c-checksum.c +++ b/arch/sh64/lib/c-checksum.c | |||
@@ -213,3 +213,4 @@ __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr, | |||
213 | 213 | ||
214 | return (__wsum)result; | 214 | return (__wsum)result; |
215 | } | 215 | } |
216 | EXPORT_SYMBOL(csum_tcpudp_nofold); | ||