From: Sidhartha Kumar Date: Wed, 7 Feb 2024 23:46:10 +0000 (-0800) Subject: maple_tree: set write store type in mas_store() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fe6143c1dd43e1912529ec98a98180323b3514bb;p=users%2Fjedix%2Flinux-maple.git maple_tree: set write store type in mas_store() Set the correct mas->store_type in mas_store() so that the subsequent changes to mas_wr_store_entry() can use the store type to complete the write. Signed-off-by: Sidhartha Kumar --- diff --git a/lib/maple_tree.c b/lib/maple_tree.c index 6ffc93bdf1618..d6d683d4bc545 100644 --- a/lib/maple_tree.c +++ b/lib/maple_tree.c @@ -5540,7 +5540,8 @@ void *mas_store(struct ma_state *mas, void *entry) * want to examine what happens if a single store operation was to * overwrite multiple entries within a self-balancing B-Tree. */ - mas_wr_store_setup(&wr_mas); + mas_wr_prealloc_setup(&wr_mas); + mas_wr_store_type(&wr_mas); mas_wr_store_entry(&wr_mas); return wr_mas.content; }