diff options
author | Davide Caratti <dcaratti@redhat.com> | 2017-05-18 09:44:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-19 19:21:29 -0400 |
commit | 9617813dba5b6c112922c60cd2bc57c6e11ae907 (patch) | |
tree | ce7dfcb633751f2aaed7fe3b19988aa88f401270 /net/core/skbuff.c | |
parent | 6f5b24eed0278136c29c27f2a7b3a2b6a202ac68 (diff) |
skbuff: add stub to help computing crc32c on SCTP packets
sctp_compute_checksum requires crc32c symbol (provided by libcrc32c), so
it can't be used in net core. Like it has been done previously with other
symbols (e.g. ipv6_dst_lookup), introduce a stub struct skb_checksum_ops
to allow computation of crc32c checksum in net core after sctp.ko (and thus
libcrc32c) has been loaded.
Signed-off-by: Davide Caratti <dcaratti@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/skbuff.c')
-rw-r--r-- | net/core/skbuff.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 346d3e85dfbc..d5c98117cbce 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
@@ -2243,6 +2243,32 @@ __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset, | |||
2243 | } | 2243 | } |
2244 | EXPORT_SYMBOL(skb_copy_and_csum_bits); | 2244 | EXPORT_SYMBOL(skb_copy_and_csum_bits); |
2245 | 2245 | ||
2246 | static __wsum warn_crc32c_csum_update(const void *buff, int len, __wsum sum) | ||
2247 | { | ||
2248 | net_warn_ratelimited( | ||
2249 | "%s: attempt to compute crc32c without libcrc32c.ko\n", | ||
2250 | __func__); | ||
2251 | return 0; | ||
2252 | } | ||
2253 | |||
2254 | static __wsum warn_crc32c_csum_combine(__wsum csum, __wsum csum2, | ||
2255 | int offset, int len) | ||
2256 | { | ||
2257 | net_warn_ratelimited( | ||
2258 | "%s: attempt to compute crc32c without libcrc32c.ko\n", | ||
2259 | __func__); | ||
2260 | return 0; | ||
2261 | } | ||
2262 | |||
2263 | static const struct skb_checksum_ops default_crc32c_ops = { | ||
2264 | .update = warn_crc32c_csum_update, | ||
2265 | .combine = warn_crc32c_csum_combine, | ||
2266 | }; | ||
2267 | |||
2268 | const struct skb_checksum_ops *crc32c_csum_stub __read_mostly = | ||
2269 | &default_crc32c_ops; | ||
2270 | EXPORT_SYMBOL(crc32c_csum_stub); | ||
2271 | |||
2246 | /** | 2272 | /** |
2247 | * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy() | 2273 | * skb_zerocopy_headlen - Calculate headroom needed for skb_zerocopy() |
2248 | * @from: source buffer | 2274 | * @from: source buffer |