Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
49 lines
954 B
C
49 lines
954 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* IPV6 GSO/GRO offload support
|
|
* Linux INET6 implementation
|
|
*
|
|
* IPV6 Extension Header GSO/GRO support
|
|
*/
|
|
#include <net/protocol.h>
|
|
#include "ip6_offload.h"
|
|
|
|
static const struct net_offload rthdr_offload = {
|
|
.flags = INET6_PROTO_GSO_EXTHDR,
|
|
};
|
|
|
|
static const struct net_offload dstopt_offload = {
|
|
.flags = INET6_PROTO_GSO_EXTHDR,
|
|
};
|
|
|
|
static const struct net_offload hbh_offload = {
|
|
.flags = INET6_PROTO_GSO_EXTHDR,
|
|
};
|
|
|
|
int __init ipv6_exthdrs_offload_init(void)
|
|
{
|
|
int ret;
|
|
|
|
ret = inet6_add_offload(&rthdr_offload, IPPROTO_ROUTING);
|
|
if (ret)
|
|
goto out;
|
|
|
|
ret = inet6_add_offload(&dstopt_offload, IPPROTO_DSTOPTS);
|
|
if (ret)
|
|
goto out_rt;
|
|
|
|
ret = inet6_add_offload(&hbh_offload, IPPROTO_HOPOPTS);
|
|
if (ret)
|
|
goto out_dstopts;
|
|
|
|
out:
|
|
return ret;
|
|
|
|
out_dstopts:
|
|
inet6_del_offload(&dstopt_offload, IPPROTO_DSTOPTS);
|
|
|
|
out_rt:
|
|
inet6_del_offload(&rthdr_offload, IPPROTO_ROUTING);
|
|
goto out;
|
|
}
|