From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 436EE3E3162; Wed, 11 Mar 2026 17:06:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773248808; cv=none; b=pgEl9xg8ZkuVCxzGc2DFilVLvV0NnCf+F2edBo9NPOEfiH+QDL6TBT8zbQR5USvDMygZLUD18ZM/Ur8vO2qeXqXjx+8XoMb7YGpEw73F5ZKleStI4f6246NbaURJJq77l6V+hwo0UhdqTXsMEAwQvaz90/D6KpNLaNxPmxIk0TM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773248808; c=relaxed/simple; bh=hE25WlnOxQU0cBaWomirABIDR684TjKmZbtgEL2N6cI=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=aQa3o7URaYgr9fsWkcb1HS+TCHh0j2CtBii/zHiELsdutJskTPE0XCY1gas5eNO736opUnED65G50hYpIwYhme/tmSOzV2bvG9kNV5fDyCw5f7G6+TRLvjulNsYEWEM4v9RGY8HqVdcPTwImJ1Mi4W/oZYi3pvqxRk7VF8TVGco= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=AoStovJ4; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="AoStovJ4" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E5B7DC4CEF7; Wed, 11 Mar 2026 17:06:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1773248807; bh=hE25WlnOxQU0cBaWomirABIDR684TjKmZbtgEL2N6cI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=AoStovJ4cknTH9yf8FlPd44wCfgOrCKQtmFMEE4onuK4oRTUFWr8GrtMyQ73KdzR2 mk3N4PL/RhY8478yGUAJhBf5Xs8yReJMjtQOnmwL4Snre+Nlrre4BozPBHMnNC10+A 73/wiNs2fJsliWTx77SIUXaMKOrgPJkSo+U9qf0M= Date: Wed, 11 Mar 2026 10:06:46 -0700 From: Andrew Morton To: Alexandre Ghiti Cc: alexghiti@kernel.org, kernel-team@meta.com, akinobu.mita@gmail.com, david@kernel.org, lorenzo.stoakes@oracle.com, Liam.Howlett@oracle.com, vbabka@kernel.org, rppt@kernel.org, surenb@google.com, mhocko@suse.com, hannes@cmpxchg.org, zhengqi.arch@bytedance.com, shakeel.butt@linux.dev, axelrasmussen@google.com, yuanchu@google.com, weixugc@google.com, gourry@gourry.net, apopple@nvidia.com, byungchul@sk.com, joshua.hahnjy@gmail.com, matthew.brost@intel.com, rakie.kim@sk.com, ying.huang@linux.alibaba.com, ziy@nvidia.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Bing Jiao , stable@vger.kernel.org Subject: Re: [PATCH 3/4] mm: Fix demotion gfp by clearing GFP_RECLAIM after setting GFP_TRANSHUGE Message-Id: <20260311100646.81819c0f02eec5d3f1dcaa70@linux-foundation.org> In-Reply-To: <20260311110314.237315-4-alex@ghiti.fr> References: <20260311110314.237315-1-alex@ghiti.fr> <20260311110314.237315-4-alex@ghiti.fr> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 11 Mar 2026 12:02:42 +0100 Alexandre Ghiti wrote: > Fixes: 9933a0c8a539 ("mm/migrate: clear __GFP_RECLAIM to make the migration callback consistent with regular THP allocations") > Cc: stable@vger.kernel.org Please let's have the cc:stable fixes separated out from the cleanups, and prepared against current -linus mainline. Also, when proposing backportable fixes please ensure that the changelogs carefully describe the userspace-visible runtime effects of the bug. Thanks.