diff options
author | David S. Miller <davem@davemloft.net> | 2022-09-30 14:09:11 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-09-30 14:09:11 +0200 |
commit | 0bafedc536499a533dd7a94c9c980d53f3ca2afc (patch) | |
tree | 19f7b9aeb504fcfd27cb56b94cbf34c22722e3dd /net/ipv6 | |
parent | tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited (diff) | |
parent | xfrm: Reinject transport-mode packets through workqueue (diff) | |
download | linux-0bafedc536499a533dd7a94c9c980d53f3ca2afc.tar.xz linux-0bafedc536499a533dd7a94c9c980d53f3ca2afc.zip |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec
Steffen Klassert says:
====================
pull request (net): ipsec 2022-09-29
1) Use the inner instead of the outer protocol for GSO on inter
address family tunnels. This fixes the GSO case for address
family tunnels. From Sabrina Dubroca.
2) Reset ipcomp_scratches with NULL when freed, otherwise
it holds obsolete address. From Khalid Masum.
3) Reinject transport-mode packets through workqueue
instead of a tasklet. The tasklet might take too
long to finish. From Liu Jian.
Please pull or let me know if there are problems.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/esp6_offload.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/ipv6/esp6_offload.c b/net/ipv6/esp6_offload.c index 3a293838a91d..79d43548279c 100644 --- a/net/ipv6/esp6_offload.c +++ b/net/ipv6/esp6_offload.c @@ -145,7 +145,10 @@ static struct sk_buff *xfrm6_tunnel_gso_segment(struct xfrm_state *x, struct sk_buff *skb, netdev_features_t features) { - return skb_eth_gso_segment(skb, features, htons(ETH_P_IPV6)); + __be16 type = x->inner_mode.family == AF_INET ? htons(ETH_P_IP) + : htons(ETH_P_IPV6); + + return skb_eth_gso_segment(skb, features, type); } static struct sk_buff *xfrm6_transport_gso_segment(struct xfrm_state *x, |