linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: SeongJae Park <sj@kernel.org>
To: Liam Howlett <liam.howlett@oracle.com>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	"maple-tree@lists.infradead.org" <maple-tree@lists.infradead.org>,
	SeongJae Park <sj@kernel.org>
Subject: Re: [PATCH] maple_tree: Fix handle of invalidated state in mas_wr_store_setup()
Date: Mon,  9 Jan 2023 19:22:48 +0000	[thread overview]
Message-ID: <20230109192248.55694-1-sj@kernel.org> (raw)
In-Reply-To: <20230109165455.647400-1-Liam.Howlett@oracle.com>

On Mon, 9 Jan 2023 16:55:42 +0000 Liam Howlett <liam.howlett@oracle.com> wrote:

> If an invalidated maple state is encountered during write, reset the
> maple state to MAS_START.  This will result in a re-walk of the tree to
> the correct location for the write.
> 
> Link: https://lore.kernel.org/all/20230107020126.1627-1-sj@kernel.org/
> Reported-by: SeongJae Park <sj@kernel.org>
> Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>

Tested-by: SeongJae Park <sj@kernel.org>

I confirmed this patch fixes the boot failure issue.  Nevertheless, the 'make
install' issue on my system is still not fixed.


Thanks,
SJ

> ---
>  lib/maple_tree.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/lib/maple_tree.c b/lib/maple_tree.c
> index 14cff87cf058..59c4879ac714 100644
> --- a/lib/maple_tree.c
> +++ b/lib/maple_tree.c
> @@ -5620,6 +5620,9 @@ static inline void mte_destroy_walk(struct maple_enode *enode,
>  
>  static void mas_wr_store_setup(struct ma_wr_state *wr_mas)
>  {
> +	if (unlikely(mas_is_paused(wr_mas->mas)))
> +		mas_reset(wr_mas->mas);
> +
>  	if (!mas_is_start(wr_mas->mas)) {
>  		if (mas_is_none(wr_mas->mas)) {
>  			mas_reset(wr_mas->mas);
> -- 
> 2.35.1
> 


  reply	other threads:[~2023-01-09 19:22 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-09 16:55 Liam Howlett
2023-01-09 19:22 ` SeongJae Park [this message]
2023-01-09 23:40   ` Andrew Morton
2023-01-09 23:43     ` SeongJae Park
2023-01-10 14:21       ` Liam Howlett
2023-01-10 23:18         ` Andrew Morton
2023-01-11  1:07           ` Liam 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=20230109192248.55694-1-sj@kernel.org \
    --to=sj@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=liam.howlett@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=maple-tree@lists.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