1 /* MN10300 Optimised checksumming wrappers
3 * Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd.
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public Licence
9 * as published by the Free Software Foundation; either version
10 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/module.h>
13 #include <linux/errno.h>
14 #include <asm/byteorder.h>
15 #include <asm/uaccess.h>
16 #include <asm/checksum.h>
19 static inline unsigned short from32to16(__wsum sum
)
24 : "r" (sum
<< 16), "0" (sum
& 0xffff0000)
29 __sum16
ip_fast_csum(const void *iph
, unsigned int ihl
)
31 return ~do_csum(iph
, ihl
* 4);
33 EXPORT_SYMBOL(ip_fast_csum
);
35 __wsum
csum_partial(const void *buff
, int len
, __wsum sum
)
39 result
= do_csum(buff
, len
);
45 EXPORT_SYMBOL(csum_partial
);
47 __sum16
ip_compute_csum(const void *buff
, int len
)
49 return ~from32to16(do_csum(buff
, len
));
51 EXPORT_SYMBOL(ip_compute_csum
);
53 __wsum
csum_partial_copy(const void *src
, void *dst
, int len
, __wsum sum
)
55 copy_from_user(dst
, src
, len
);
56 return csum_partial(dst
, len
, sum
);
58 EXPORT_SYMBOL(csum_partial_copy
);
60 __wsum
csum_partial_copy_nocheck(const void *src
, void *dst
,
63 sum
= csum_partial(src
, len
, sum
);
64 memcpy(dst
, src
, len
);
67 EXPORT_SYMBOL(csum_partial_copy_nocheck
);
69 __wsum
csum_partial_copy_from_user(const void *src
, void *dst
,
75 missing
= copy_from_user(dst
, src
, len
);
77 memset(dst
+ len
- missing
, 0, missing
);
81 return csum_partial(dst
, len
, sum
);
83 EXPORT_SYMBOL(csum_partial_copy_from_user
);
85 __wsum
csum_and_copy_to_user(const void *src
, void *dst
,
91 missing
= copy_to_user(dst
, src
, len
);
93 memset(dst
+ len
- missing
, 0, missing
);
97 return csum_partial(src
, len
, sum
);
99 EXPORT_SYMBOL(csum_and_copy_to_user
);