diff options
author | Eric Dumazet <edumazet@google.com> | 2023-08-16 08:15:43 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-08-16 11:09:17 +0100 |
commit | f04b8d3478a3a63f17d8dc0dc6da16a828b48df0 (patch) | |
tree | 45703f4ce7f75dd79e9bd28c2e282d3e094bf6f6 /net/ipv4/inet_diag.c | |
parent | b1c0356a58577ce0a583e3044bf801877fc0b5de (diff) | |
download | linux-stable-f04b8d3478a3a63f17d8dc0dc6da16a828b48df0.tar.gz linux-stable-f04b8d3478a3a63f17d8dc0dc6da16a828b48df0.tar.bz2 linux-stable-f04b8d3478a3a63f17d8dc0dc6da16a828b48df0.zip |
inet: move inet->nodefrag to inet->inet_flags
IP_NODEFRAG socket option can now be set/read
without locking the socket.
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/ipv4/inet_diag.c')
-rw-r--r-- | net/ipv4/inet_diag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c index ada198fc1a92..39606caad484 100644 --- a/net/ipv4/inet_diag.c +++ b/net/ipv4/inet_diag.c @@ -189,7 +189,7 @@ int inet_diag_msg_attrs_fill(struct sock *sk, struct sk_buff *skb, inet_sockopt.mc_loop = inet_test_bit(MC_LOOP, sk); inet_sockopt.transparent = inet_test_bit(TRANSPARENT, sk); inet_sockopt.mc_all = inet_test_bit(MC_ALL, sk); - inet_sockopt.nodefrag = inet->nodefrag; + inet_sockopt.nodefrag = inet_test_bit(NODEFRAG, sk); inet_sockopt.bind_address_no_port = inet->bind_address_no_port; inet_sockopt.recverr_rfc4884 = inet_test_bit(RECVERR_RFC4884, sk); inet_sockopt.defer_connect = inet->defer_connect; |