From: Jason Xing Date: Mon, 4 Mar 2024 08:20:36 +0000 (+0800) Subject: netrom: Fix a data-race around sysctl_netrom_obsolescence_count_initialiser X-Git-Tag: v5.10.213~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=18c95d11c347a12e5c31df1325cef6b995d14ecf;p=thirdparty%2Fkernel%2Fstable.git netrom: Fix a data-race around sysctl_netrom_obsolescence_count_initialiser [ Upstream commit cfd9f4a740f772298308b2e6070d2c744fb5cf79 ] We need to protect the reader reading the sysctl value because the value can be changed concurrently. Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Signed-off-by: Jason Xing Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- diff --git a/net/netrom/nr_route.c b/net/netrom/nr_route.c index 94c4d4554b9c7..8a5375e1dcc77 100644 --- a/net/netrom/nr_route.c +++ b/net/netrom/nr_route.c @@ -763,7 +763,7 @@ int nr_route_frame(struct sk_buff *skb, ax25_cb *ax25) if (ax25 != NULL) { ret = nr_add_node(nr_src, "", &ax25->dest_addr, ax25->digipeat, ax25->ax25_dev->dev, 0, - sysctl_netrom_obsolescence_count_initialiser); + READ_ONCE(sysctl_netrom_obsolescence_count_initialiser)); if (ret) return ret; }