diff options
author | Eric Dumazet <edumazet@google.com> | 2023-08-16 08:15:39 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-16 11:09:17 +0100 |
commit | b09bde5c3554d58cb711dac55a10ecc56d436966 (patch) | |
tree | f454c01e10f8a1312d9941a1867f49569b36aaa4 /net/sctp | |
parent | cafbe182a467bf6799242fd7468438cf1ab833dc (diff) | |
download | linux-stable-b09bde5c3554d58cb711dac55a10ecc56d436966.tar.gz linux-stable-b09bde5c3554d58cb711dac55a10ecc56d436966.tar.bz2 linux-stable-b09bde5c3554d58cb711dac55a10ecc56d436966.zip |
inet: move inet->mc_loop to inet->inet_frags
IP_MULTICAST_LOOP socket option can now be set/read
without locking the socket.
v3: fix build bot error reported in ipvs set_mcast_loop()
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Soheil Hassas Yeganeh <soheil@google.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp')
-rw-r--r-- | net/sctp/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index 6e3d28aa587c..04b390892827 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -9482,7 +9482,7 @@ void sctp_copy_sock(struct sock *newsk, struct sock *sk, newinet->inet_id = get_random_u16(); newinet->uc_ttl = inet->uc_ttl; - newinet->mc_loop = 1; + inet_set_bit(MC_LOOP, newsk); newinet->mc_ttl = 1; newinet->mc_index = 0; newinet->mc_list = NULL; |