projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
706c620
)
tcp: Fix a data-race around sysctl_tcp_nometrics_save.
author
Kuniyuki Iwashima
<kuniyu@amazon.com>
Wed, 20 Jul 2022 16:50:16 +0000
(09:50 -0700)
committer
David S. Miller
<davem@davemloft.net>
Fri, 22 Jul 2022 11:06:17 +0000
(12:06 +0100)
While reading sysctl_tcp_nometrics_save, it can be changed concurrently.
Thus, we need to add READ_ONCE() to its reader.
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_metrics.c
patch
|
blob
|
history
diff --git
a/net/ipv4/tcp_metrics.c
b/net/ipv4/tcp_metrics.c
index a501150deaa3b326f1cffdbdd7924d856dde6682..9dcc418a26f298a1f79196f2cabe5ce430837ca2 100644
(file)
--- a/
net/ipv4/tcp_metrics.c
+++ b/
net/ipv4/tcp_metrics.c
@@
-329,7
+329,7
@@
void tcp_update_metrics(struct sock *sk)
int m;
sk_dst_confirm(sk);
- if (
net->ipv4.sysctl_tcp_nometrics_save
|| !dst)
+ if (
READ_ONCE(net->ipv4.sysctl_tcp_nometrics_save)
|| !dst)
return;
rcu_read_lock();