Commit 74bc0843 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

net: add missing READ_ONCE(sk->sk_sndbuf) annotation



In a prior commit, I forgot to change sk_getsockopt()
when reading sk->sk_sndbuf locklessly.

Fixes: e292f05e ("tcp: annotate sk->sk_sndbuf lockless reads")
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 285975dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1639,7 +1639,7 @@ int sk_getsockopt(struct sock *sk, int level, int optname,
		break;

	case SO_SNDBUF:
		v.val = sk->sk_sndbuf;
		v.val = READ_ONCE(sk->sk_sndbuf);
		break;

	case SO_RCVBUF: