From: Sidhartha Kumar <sidhartha.kumar@oracle.com>
To: "Liam R. Howlett" <Liam.Howlett@oracle.com>,
linux-kernel@vger.kernel.org, maple-tree@lists.infradead.org,
linux-mm@kvack.org, akpm@linux-foundation.org,
willy@infradead.org
Subject: Re: [PATCH v2 13/16] maple_tree: have mas_store() allocate nodes if needed
Date: Mon, 17 Jun 2024 14:18:26 -0700 [thread overview]
Message-ID: <fa90c1a4-62e0-48be-91f3-1cc314af7ca4@oracle.com> (raw)
In-Reply-To: <jcp3owxbphfqmddfb45lmmbwrc6vc35onyqmcobhptsie7yot7@liqrbyliqjpr>
On 6/13/24 8:00 AM, Liam R. Howlett wrote:
> * Sidhartha Kumar <sidhartha.kumar@oracle.com> [240607 14:53]:
>> Not all users of mas_store() enter with nodes already preallocated.
>> Check for the MA_STATE_PREALLOC flag to decide whether to preallocate nodes
>> within mas_store() rather than relying on future write helper functions
>> to perform the allocations. This allows the write helper functions to be
>> simplified as they do not have to do checks to make sure there are
>> enough allocated nodes to perform the write.
>>
>> Signed-off-by: Sidhartha Kumar <sidhartha.kumar@oracle.com>
>> ---
>> lib/maple_tree.c | 32 ++++++++++++++++++++++++++++----
>> 1 file changed, 28 insertions(+), 4 deletions(-)
>>
>> diff --git a/lib/maple_tree.c b/lib/maple_tree.c
>> index 8b17768db5f2..92f133ea5f00 100644
>> --- a/lib/maple_tree.c
>> +++ b/lib/maple_tree.c
>> @@ -5528,6 +5528,20 @@ static inline void mte_destroy_walk(struct maple_enode *enode,
>> mt_destroy_walk(enode, mt, true);
>> }
>> }
>> +
>> +static inline void mas_wr_store_prealloc(struct ma_wr_state *wr_mas, void *entry)
>> +{
>> + struct ma_state *mas = wr_mas->mas;
>> + int request;
>> +
>> + mas_wr_prealloc_setup(wr_mas);
>> + mas_wr_store_type(wr_mas);
>> + request = mas_prealloc_calc(mas, entry);
>> + if (!request)
>> + return;
>> +
>> + mas_node_count(mas, request);
>> +}
>> /* Interface */
>>
>> /**
>> @@ -5536,8 +5550,6 @@ static inline void mte_destroy_walk(struct maple_enode *enode,
>> * @entry: The entry to store.
>> *
>> * The @mas->index and @mas->last is used to set the range for the @entry.
>> - * Note: The @mas should have pre-allocated entries to ensure there is memory to
>> - * store the entry. Please see mas_expected_entries()/mas_destroy() for more details.
>> *
>> * Return: the first entry between mas->index and mas->last or %NULL.
>> */
>> @@ -5563,9 +5575,21 @@ 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_prealloc_setup(&wr_mas);
>> - mas_wr_store_type(&wr_mas);
>> + if (mas->mas_flags & MA_STATE_PREALLOC) {
>> + mas_wr_prealloc_setup(&wr_mas);
>> + mas_wr_store_type(&wr_mas);
>> + mas_wr_store_entry(&wr_mas);
>> + MAS_WR_BUG_ON(&wr_mas, mas_is_err(mas));
>> + return wr_mas.content;
>> + }
>> +
>> + mas_wr_store_prealloc(&wr_mas, entry);
>
> Since this is the only place mas_wr_store_prealloc() is called and the
> first two things it does is the same as the if() statement above, then
> both calls can be moved outside of the if() statement. That also means
> the helper function is somewhat small, which makes it seem like it's
> probably not worth having? Maybe I missed something though?
>
I agree the helper function is not needed, I'll refactor this without using
another function.
Thanks,
Sid
>> + WARN_ON_ONCE(mas->store_type == wr_invalid);
>> + if (mas_is_err(mas))
>> + return NULL;
>> +
>> mas_wr_store_entry(&wr_mas);
>> + mas_destroy(mas);
>> return wr_mas.content;
>> }
>> EXPORT_SYMBOL_GPL(mas_store);
>> --
>> 2.45.2
>>
next prev parent reply other threads:[~2024-06-17 21:18 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-07 18:52 [PATCH v2 00/16] Introduce a store type enum for the Maple tree Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 01/16] maple_tree: introduce store_type enum Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 02/16] maple_tree: introduce mas_wr_prealloc_setup() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 03/16] maple_tree: move up mas_wr_store_setup() and mas_wr_prealloc_setup() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 04/16] maple_tree: introduce mas_wr_store_type() Sidhartha Kumar
2024-06-13 14:27 ` Liam R. Howlett
2024-06-07 18:52 ` [PATCH v2 05/16] maple_tree: remove mas_destroy() from mas_nomem() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 06/16] maple_tree: use mas_store_gfp() in mas_erase() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 07/16] maple_tree: use mas_store_gfp() in mtree_store_range() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 08/16] maple_tree: print store type in mas_dump() Sidhartha Kumar
2024-06-13 14:29 ` Liam R. Howlett
2024-06-07 18:52 ` [PATCH v2 09/16] maple_tree: use store type in mas_wr_store_entry() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 10/16] maple_tree: convert mas_insert() to preallocate nodes Sidhartha Kumar
2024-06-13 14:40 ` Liam R. Howlett
2024-06-07 18:52 ` [PATCH v2 11/16] maple_tree: simplify mas_commit_b_node() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 12/16] maple_tree: remove mas_wr_modify() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 13/16] maple_tree: have mas_store() allocate nodes if needed Sidhartha Kumar
2024-06-13 15:00 ` Liam R. Howlett
2024-06-17 21:18 ` Sidhartha Kumar [this message]
2024-06-07 18:52 ` [PATCH v2 14/16] maple_tree: remove node allocations from various write helper functions Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 15/16] maple_tree: remove repeated sanity checks from mas_wr_append() Sidhartha Kumar
2024-06-07 18:52 ` [PATCH v2 16/16] maple_tree: remove unneeded mas_wr_walk() in mas_store_prealloc() Sidhartha Kumar
2024-06-13 15:02 ` Liam R. Howlett
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fa90c1a4-62e0-48be-91f3-1cc314af7ca4@oracle.com \
--to=sidhartha.kumar@oracle.com \
--cc=Liam.Howlett@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=maple-tree@lists.infradead.org \
--cc=willy@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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®