[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20231009201639.920512-4-sidhartha.kumar@oracle.com>
Date: Mon, 9 Oct 2023 13:16:39 -0700
From: Sidhartha Kumar <sidhartha.kumar@...cle.com>
To: linux-kernel@...r.kernel.org, linux-mm@...ck.org,
maple-tree@...ts.infradead.org
Cc: akpm@...ux-foundation.org, willy@...radead.org,
liam.howlett@...cle.com, zhangpeng.00@...edance.com,
Sidhartha Kumar <sidhartha.kumar@...cle.com>
Subject: [PATCH 3/3] maple_tree: use preallocations in mas_erase()
Preallocate the number of needed nodes before mas_wr_store_entry().
Signed-off-by: Sidhartha Kumar <sidhartha.kumar@...cle.com>
---
lib/maple_tree.c | 21 +++++++++++++++++++--
1 file changed, 19 insertions(+), 2 deletions(-)
diff --git a/lib/maple_tree.c b/lib/maple_tree.c
index 25ae66e585f4..ef8d4b6b4456 100644
--- a/lib/maple_tree.c
+++ b/lib/maple_tree.c
@@ -6191,6 +6191,7 @@ void *mas_erase(struct ma_state *mas)
{
void *entry;
MA_WR_STATE(wr_mas, mas, NULL);
+ int request;
if (mas_is_none(mas) || mas_is_paused(mas))
mas->node = MAS_START;
@@ -6200,14 +6201,30 @@ void *mas_erase(struct ma_state *mas)
if (!entry)
return NULL;
-write_retry:
/* Must reset to ensure spanning writes of last slot are detected */
mas_reset(mas);
mas_wr_store_setup(&wr_mas);
+ wr_mas.content = mas_start(mas);
+
+ request = mas_prealloc_calc(&wr_mas);
+ if (!request)
+ goto store_entry;
+
+ mas_node_count_gfp(mas, request, GFP_KERNEL);
+ if (unlikely(mas_is_err(mas))) {
+ mas_set_alloc_req(mas, 0);
+ mas_destroy(mas);
+ mas_reset(mas);
+ return NULL;
+ }
+ mas->mas_flags |= MA_STATE_PREALLOC;
+
+store_entry:
mas_wr_store_entry(&wr_mas);
if (mas_nomem(mas, GFP_KERNEL))
- goto write_retry;
+ goto store_entry;
+ trace_ma_write(__func__, mas, 0, entry);
return entry;
}
EXPORT_SYMBOL_GPL(mas_erase);
--
2.41.0
Powered by blists - more mailing lists