]> git.baikalelectronics.ru Git - kernel.git/commit
ipv6: fix typos in __ip6_finish_output()
authorEric Dumazet <edumazet@google.com>
Fri, 19 Nov 2021 01:37:58 +0000 (17:37 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 22 Nov 2021 12:42:07 +0000 (12:42 +0000)
commitb79452e987daa733b9c1431520ed6bdbccd7c785
tree75b5c266861b4f0f2ab6e1a181bb5a73a89b9492
parent741ce7ef3a226f388c950d6716f9490c8543abab
ipv6: fix typos in __ip6_finish_output()

We deal with IPv6 packets, so we need to use IP6CB(skb)->flags and
IP6SKB_REROUTED, instead of IPCB(skb)->flags and IPSKB_REROUTED

Found by code inspection, please double check that fixing this bug
does not surface other bugs.

Fixes: b50c1e562ef0 ("ipv6: Reinject IPv6 packets if IPsec policy matches after SNAT")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Tobias Brunner <tobias@strongswan.org>
Cc: Steffen Klassert <steffen.klassert@secunet.com>
Cc: David Ahern <dsahern@kernel.org>
Reviewed-by: David Ahern <dsahern@kernel.org>
Tested-by: Tobias Brunner <tobias@strongswan.org>
Acked-by: Tobias Brunner <tobias@strongswan.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_output.c