diff options
author | Eric Dumazet <edumazet@google.com> | 2023-09-12 19:02:06 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-09-15 12:33:47 +0300 |
commit | 5121516b0c4736b7977d977b239e36d23ec64401 (patch) | |
tree | 9c4948d94eb4e8fc9f4f32c9870f747b4d7456a4 /include/linux/ipv6.h | |
parent | 6559c0ff3bc27d7e4d447d31c1d7e8eae0e959f5 (diff) | |
download | linux-5121516b0c4736b7977d977b239e36d23ec64401.tar.xz |
ipv6: lockless IPV6_AUTOFLOWLABEL implementation
Move np->autoflowlabel and np->autoflowlabel_set in inet->inet_flags,
to fix data-races.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/ipv6.h')
-rw-r--r-- | include/linux/ipv6.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index d88e91b7f0a3..e3be5dc21b7d 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h @@ -253,8 +253,6 @@ struct ipv6_pinfo { * 100: prefer care-of address */ dontfrag:1, - autoflowlabel:1, - autoflowlabel_set:1, rtalert_isolate:1; __u8 min_hopcount; __u8 tclass; |