From f7b60cce847036f4a639d44c675553a564d8e876 Mon Sep 17 00:00:00 2001 From: Jason Xing Date: Thu, 18 Apr 2024 15:36:03 +0800 Subject: [PATCH] net: rps: locklessly access rflow->cpu This is the last member in struct rps_dev_flow which should be protected locklessly. So finish it. Signed-off-by: Jason Xing Reviewed-by: Eric Dumazet Signed-off-by: David S. Miller --- net/core/dev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/core/dev.c b/net/core/dev.c index 182fce2537d4a..8bdc59074b29c 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -4539,7 +4539,7 @@ set_rps_cpu(struct net_device *dev, struct sk_buff *skb, rps_input_queue_tail_save(&rflow->last_qtail, head); } - rflow->cpu = next_cpu; + WRITE_ONCE(rflow->cpu, next_cpu); return rflow; } -- 2.30.2