Skip to content

Commit

Permalink
missing exports of csum_...
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jul 17, 2007
1 parent 6d0fd9c commit 547c178
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/alpha/lib/checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
result = (result & 0xffffffff) + (result >> 32);
return (__force __wsum)result;
}
EXPORT_SYMBOL(csum_tcpudp_nofold);

/*
* Do a 64-bit checksum on an arbitrary memory area..
Expand Down
1 change: 1 addition & 0 deletions arch/ia64/lib/checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ csum_tcpudp_nofold (__be32 saddr, __be32 daddr, unsigned short len,
result = (result & 0xffffffff) + (result >> 32);
return (__force __wsum)result;
}
EXPORT_SYMBOL(csum_tcpudp_nofold);

extern unsigned long do_csum (const unsigned char *, long);

Expand Down
1 change: 1 addition & 0 deletions arch/m68k/lib/checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,3 +422,4 @@ csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum)
);
return(sum);
}
EXPORT_SYMBOL(csum_partial_copy_nocheck);
1 change: 1 addition & 0 deletions arch/sh64/lib/c-checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,3 +213,4 @@ __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,

return (__wsum)result;
}
EXPORT_SYMBOL(csum_tcpudp_nofold);

0 comments on commit 547c178

Please sign in to comment.