hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/net/ipv4/fib_trie.c
....@@ -1534,7 +1534,8 @@
15341534 }
15351535 if (fa->fa_tos && fa->fa_tos != flp->flowi4_tos)
15361536 continue;
1537
- if (fi->fib_dead)
1537
+ /* Paired with WRITE_ONCE() in fib_release_info() */
1538
+ if (READ_ONCE(fi->fib_dead))
15381539 continue;
15391540 if (fa->fa_info->fib_scope < flp->flowi4_scope)
15401541 continue;