]> www.infradead.org Git - users/dwmw2/linux.git/commit
tcp: Fix data-races around sysctl_tcp_min_snd_mss.
authorKuniyuki Iwashima <kuniyu@amazon.com>
Wed, 13 Jul 2022 20:52:02 +0000 (13:52 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jul 2022 15:19:14 +0000 (17:19 +0200)
commit97992e8feff33b3ae154a113ec398546bbacda80
treeb4b9e2b23e1279dde084e9eec24246652e59b937
parent514d2254c7b8aa2d257f5ffc79f0d96be2d6bfda
tcp: Fix data-races around sysctl_tcp_min_snd_mss.

[ Upstream commit 78eb166cdefcc3221c8c7c1e2d514e91a2eb5014 ]

While reading sysctl_tcp_min_snd_mss, it can be changed concurrently.
Thus, we need to add READ_ONCE() to its readers.

Fixes: 5f3e2bf008c2 ("tcp: add tcp_min_snd_mss sysctl")
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/ipv4/tcp_output.c
net/ipv4/tcp_timer.c