From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DB926C54EBD for ; Mon, 9 Jan 2023 23:40:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230005AbjAIXke (ORCPT ); Mon, 9 Jan 2023 18:40:34 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33166 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229571AbjAIXkQ (ORCPT ); Mon, 9 Jan 2023 18:40:16 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A14EBFDD for ; Mon, 9 Jan 2023 15:40:15 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 56814B8107B for ; Mon, 9 Jan 2023 23:40:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C919DC433EF; Mon, 9 Jan 2023 23:40:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1673307613; bh=j/AOslE7dKs/eS8qJHSl2YKv7BJ6/SuxxXaZzozGox4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=TGqyk22L5AqLSy354Z822K3uY78NagVhRgkd+YooqoNCQqR7xpB68KPXkpnRA9gek AvesqkPuF7B/id0uZDtlfZxY+S/bojwz7tr+vm6899TWNXq4iWz6nLhbpDjyY/MP4x LUri2Cxfy9gd+ttb2P8C+hy1sWWVxRZOUaaaMpPU= Date: Mon, 9 Jan 2023 15:40:12 -0800 From: Andrew Morton To: SeongJae Park Cc: Liam Howlett , "linux-mm@kvack.org" , "linux-kernel@vger.kernel.org" , "maple-tree@lists.infradead.org" Subject: Re: [PATCH] maple_tree: Fix handle of invalidated state in mas_wr_store_setup() Message-Id: <20230109154012.3342cbb91defbc485db641c1@linux-foundation.org> In-Reply-To: <20230109192248.55694-1-sj@kernel.org> References: <20230109165455.647400-1-Liam.Howlett@oracle.com> <20230109192248.55694-1-sj@kernel.org> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 9 Jan 2023 19:22:48 +0000 SeongJae Park wrote: > On Mon, 9 Jan 2023 16:55:42 +0000 Liam Howlett 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. Can we think of a Fixes: for this? > > Link: https://lore.kernel.org/all/20230107020126.1627-1-sj@kernel.org/ > > Reported-by: SeongJae Park > > Signed-off-by: Liam R. Howlett > > Tested-by: SeongJae Park > > I confirmed this patch fixes the boot failure issue. Nevertheless, the 'make > install' issue on my system is still not fixed. Is this a mainline issue or an mm-unstable issue?