linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Dev Jain <dev.jain@arm.com>
To: "Liam R. Howlett" <Liam.Howlett@oracle.com>,
	Andrew Morton <akpm@linux-foundation.org>
Cc: maple-tree@lists.infradead.org, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org,
	Wei Yang <richard.weiyang@gmail.com>,
	stable@vger.kernel.org
Subject: Re: [PATCH 1/2] maple_tree: Fix mt_destroy_walk() on root leaf node
Date: Wed, 25 Jun 2025 10:45:10 +0530	[thread overview]
Message-ID: <c63e9e0d-5f63-4e33-a1a5-426970370514@arm.com> (raw)
In-Reply-To: <20250624191841.64682-1-Liam.Howlett@oracle.com>


On 25/06/25 12:48 am, Liam R. Howlett wrote:
> From: Wei Yang <richard.weiyang@gmail.com>
>
> On destroy, we should set each node dead. But current code miss this
> when the maple tree has only the root node.
>
> The reason is mt_destroy_walk() leverage mte_destroy_descend() to set
> node dead, but this is skipped since the only root node is a leaf.
>
> Fixes this by setting the node dead if it is a leaf.
>
> Link: https://lore.kernel.org/all/20250407231354.11771-1-richard.weiyang@gmail.com/
> Fixes: 54a611b60590 ("Maple Tree: add new data structure")
> Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
> CC: Liam R. Howlett <Liam.Howlett@Oracle.com>
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
> ---
>   lib/maple_tree.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/lib/maple_tree.c b/lib/maple_tree.c
> index 6b0fc6ebbe363..85d17d943753d 100644
> --- a/lib/maple_tree.c
> +++ b/lib/maple_tree.c
> @@ -5319,6 +5319,7 @@ static void mt_destroy_walk(struct maple_enode *enode, struct maple_tree *mt,
>   	struct maple_enode *start;
>   
>   	if (mte_is_leaf(enode)) {
> +		mte_set_node_dead(enode);
>   		node->type = mte_node_type(enode);
>   		goto free_leaf;
>   	}

FWIW I have been reading the maple tree code and this looks good to me.

Reviewed-by: Dev Jain <dev.jain@arm.com>



      parent reply	other threads:[~2025-06-25  5:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-24 19:18 Liam R. Howlett
2025-06-24 19:18 ` [PATCH 2/2] maple_tree: assert retrieving new value on a tree containing just a " Liam R. Howlett
2025-06-25  5:15 ` Dev Jain [this message]

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=c63e9e0d-5f63-4e33-a1a5-426970370514@arm.com \
    --to=dev.jain@arm.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=richard.weiyang@gmail.com \
    --cc=stable@vger.kernel.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