mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] lib/assoc_array: fix stale nr_leaves_on_tree after gc
@ 2026-03-18 20:45 Josh Law
  2026-03-19 14:14 ` David Howells
  0 siblings, 1 reply; 6+ messages in thread
From: Josh Law @ 2026-03-18 20:45 UTC (permalink / raw)
  To: Andrew Morton; +Cc: David Howells, linux-kernel, Josh Law

In assoc_array_gc(), assoc_array_apply_edit() publishes the new tree
root before nr_leaves_on_tree is updated, creating a window where the
tree is visible with a stale leaf count. Move the nr_leaves_on_tree
assignment before assoc_array_apply_edit() so the count is consistent
when the new root becomes visible.

Signed-off-by: Josh Law <objecting@objecting.org>
---
 lib/assoc_array.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/assoc_array.c b/lib/assoc_array.c
index bcc6e0a013eb..0752fd44e066 100644
--- a/lib/assoc_array.c
+++ b/lib/assoc_array.c
@@ -1711,8 +1711,8 @@ int assoc_array_gc(struct assoc_array *array,
 
 gc_complete:
 	edit->set[0].to = new_root;
-	assoc_array_apply_edit(edit);
 	array->nr_leaves_on_tree = nr_leaves_on_tree;
+	assoc_array_apply_edit(edit);
 	return 0;
 
 enomem:
-- 
2.34.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-03-19 19:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-03-18 20:45 [PATCH v2] lib/assoc_array: fix stale nr_leaves_on_tree after gc Josh Law
2026-03-19 14:14 ` David Howells
2026-03-19 15:15   ` Josh Law
2026-03-19 17:04   ` David Howells
2026-03-19 17:30     ` Josh Law
2026-03-19 19:25     ` David Howells

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®