]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
gre6: use log_ecn_error module parameter in ip6_tnl_rcv()
authorAlexey Kodanev <alexey.kodanev@oracle.com>
Fri, 17 Nov 2017 16:16:17 +0000 (19:16 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sun, 19 Nov 2017 03:22:19 +0000 (12:22 +0900)
After commit 308edfdf1563 ("gre6: Cleanup GREv6 receive path, call
common GRE functions") it's not used anywhere in the module, but
previously was used in ip6gre_rcv().

Fixes: 308edfdf1563 ("gre6: Cleanup GREv6 receive path, call common GRE functions")
Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_gre.c

index b90bad7a4e56ee59033fae506eceffd6ae50a88f..4cfd8e0696fe77f6d7af7ca3579a2418aef972f6 100644 (file)
@@ -460,7 +460,7 @@ static int ip6gre_rcv(struct sk_buff *skb, const struct tnl_ptk_info *tpi)
                                      &ipv6h->saddr, &ipv6h->daddr, tpi->key,
                                      tpi->proto);
        if (tunnel) {
-               ip6_tnl_rcv(tunnel, skb, tpi, NULL, false);
+               ip6_tnl_rcv(tunnel, skb, tpi, NULL, log_ecn_error);
 
                return PACKET_RCVD;
        }