diff options
author | Eric Dumazet <edumazet@google.com> | 2019-07-01 16:39:36 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-01 20:54:51 +0300 |
commit | a346abe051bd2bd0d5d0140b2da9ec95639acad7 (patch) | |
tree | 1e03874ac049b3d298d382e678a84b68f7ce5f12 /net/ipv6/af_inet6.c | |
parent | 954a5a029472568845a25cd1c59e02e09db3316c (diff) | |
download | linux-a346abe051bd2bd0d5d0140b2da9ec95639acad7.tar.xz |
ipv6: icmp: allow flowlabel reflection in echo replies
Extend flowlabel_reflect bitmask to allow conditional
reflection of incoming flowlabels in echo replies.
Note this has precedence against auto flowlabels.
Add flowlabel_reflect enum to replace hard coded
values.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/af_inet6.c')
-rw-r--r-- | net/ipv6/af_inet6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index 7382a927d1eb..8369af32cef6 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -208,7 +208,7 @@ lookup_protocol: np->mc_loop = 1; np->mc_all = 1; np->pmtudisc = IPV6_PMTUDISC_WANT; - np->repflow = net->ipv6.sysctl.flowlabel_reflect & 1; + np->repflow = net->ipv6.sysctl.flowlabel_reflect & FLOWLABEL_REFLECT_ESTABLISHED; sk->sk_ipv6only = net->ipv6.sysctl.bindv6only; /* Init the ipv4 part of the socket since we can have sockets |