diff options
Diffstat (limited to 'net/ipv6/tcp_ipv6.c')
-rw-r--r-- | net/ipv6/tcp_ipv6.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c index 45a95e032bdf..89ea0a7018b5 100644 --- a/net/ipv6/tcp_ipv6.c +++ b/net/ipv6/tcp_ipv6.c | |||
@@ -1895,7 +1895,8 @@ static void get_tcp6_sock(struct seq_file *seq, struct sock *sp, int i) | |||
1895 | /* Because we don't lock the socket, | 1895 | /* Because we don't lock the socket, |
1896 | * we might find a transient negative value. | 1896 | * we might find a transient negative value. |
1897 | */ | 1897 | */ |
1898 | rx_queue = max_t(int, tp->rcv_nxt - tp->copied_seq, 0); | 1898 | rx_queue = max_t(int, READ_ONCE(tp->rcv_nxt) - |
1899 | tp->copied_seq, 0); | ||
1899 | 1900 | ||
1900 | seq_printf(seq, | 1901 | seq_printf(seq, |
1901 | "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X " | 1902 | "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X " |