Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 2 | /* |
| 3 | * IPV6 GSO/GRO offload support |
| 4 | * Linux INET6 implementation |
| 5 | * |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 6 | * IPV6 Extension Header GSO/GRO support |
| 7 | */ |
| 8 | #include <net/protocol.h> |
| 9 | #include "ip6_offload.h" |
| 10 | |
| 11 | static const struct net_offload rthdr_offload = { |
| 12 | .flags = INET6_PROTO_GSO_EXTHDR, |
| 13 | }; |
| 14 | |
| 15 | static const struct net_offload dstopt_offload = { |
| 16 | .flags = INET6_PROTO_GSO_EXTHDR, |
| 17 | }; |
| 18 | |
| 19 | int __init ipv6_exthdrs_offload_init(void) |
| 20 | { |
| 21 | int ret; |
| 22 | |
| 23 | ret = inet6_add_offload(&rthdr_offload, IPPROTO_ROUTING); |
Anton Nayshtut | d2d273f | 2014-03-05 08:30:08 +0200 | [diff] [blame] | 24 | if (ret) |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 25 | goto out; |
| 26 | |
| 27 | ret = inet6_add_offload(&dstopt_offload, IPPROTO_DSTOPTS); |
Anton Nayshtut | d2d273f | 2014-03-05 08:30:08 +0200 | [diff] [blame] | 28 | if (ret) |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 29 | goto out_rt; |
| 30 | |
| 31 | out: |
| 32 | return ret; |
| 33 | |
| 34 | out_rt: |
Daniel Borkmann | e41b0be | 2015-09-03 00:29:07 +0200 | [diff] [blame] | 35 | inet6_del_offload(&rthdr_offload, IPPROTO_ROUTING); |
Vlad Yasevich | 2207afc | 2012-11-15 08:49:19 +0000 | [diff] [blame] | 36 | goto out; |
| 37 | } |