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: v6.8~19^2~2^2~10 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=cfd9f4a740f772298308b2e6070d2c744fb5cf79;p=linux-2.6-block.git netrom: Fix a data-race around sysctl_netrom_obsolescence_count_initialiser 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 --- diff --git a/net/netrom/nr_route.c b/net/netrom/nr_route.c index 6f709fdffc11..b8ddd8048f35 100644 --- a/net/netrom/nr_route.c +++ b/net/netrom/nr_route.c @@ -766,7 +766,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; }