From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-176.mta1.migadu.com (out-176.mta1.migadu.com [95.215.58.176]) (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 1970E434E29 for ; Thu, 16 Jul 2026 17:00:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.176 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784221254; cv=none; b=DRw2POOW0UGb6gq3JSJJIX8zMgwtfozhs8CkgZiD/AA0hRfX/sTxLIQevF5BAQrkAtoLn1sdZyQqko6gAx8+j/K17jq0pk/ud6I7rSEvsfxSP02tIvdvA7dCWhpW2uuagorf4eykP788Z+mhXa6oeV06KjuSDLlKDAlShWZ1K5c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784221254; c=relaxed/simple; bh=ryLZfzu7w/33tZHMEAX5YS1AtIi6A75xAvSnQuDhpy8=; h=Mime-Version:Content-Type:Date:Message-Id:To:Cc:Subject:From: References:In-Reply-To; b=MbTnnK87zZPse7t/OcG2xBvfNynr1Wmtl3hjv3t6gwnH+fPOF/ZVcU9xd6bdvL2Pd1o4oDw1iNiHNmuCJ5KvMUwifZVgirTplLeyDjU2+V9lWRe2cwpzyI6/P+la/ruI4DbR2dnN2khP18oLYjdIjjAYl/3lYyw2Li4XPxLtrVk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=gKXuKFc/; arc=none smtp.client-ip=95.215.58.176 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="gKXuKFc/" Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1784221248; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ryLZfzu7w/33tZHMEAX5YS1AtIi6A75xAvSnQuDhpy8=; b=gKXuKFc/Zc+x61YZilf5Od0LX0/TnweLJkY6B0iS5dDK1rmx2rZT6ibR+q4XB4vp98ECAJ usgRE3P9Y3i2YNrl1JiIwqE/t23GTZbcDGdg5R0zMUXBaD+s+ENmZK2riqG0XJstPAQl7N n59nA6ONzcF/mPCm/md31OknwLidCVI= Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Thu, 16 Jul 2026 17:00:38 +0000 Message-Id: To: "Brendan Jackman" , "Andrew Morton" , "David Hildenbrand" , "Lorenzo Stoakes" , "Liam R. Howlett" , "Vlastimil Babka" , "Mike Rapoport" , "Suren Baghdasaryan" , "Michal Hocko" , "Johannes Weiner" , "Zi Yan" , "Matthew Wilcox (Oracle)" , "Jan Kara" , "Joshua Hahn" , "Byungchul Park" , "Gregory Price" , "Ying Huang" , "Alistair Popple" , "Hugh Dickins" , "Baolin Wang" , "Chris Li" , "Kairui Song" , "Kemeng Shi" , "Nhat Pham" , "Baoquan He" , "Barry Song" , "Youngjun Park" , "Joerg Roedel (AMD)" , "Will Deacon" , "Robin Murphy" , "Huacai Chen" , "WANG Xuerui" , "Thomas Gleixner" , "Chuck Lever" , "Jeff Layton" , "NeilBrown" , "Olga Kornievskaia" , "Dai Ngo" , "Tom Talpey" , "Trond Myklebust" , "Anna Schumaker" , "David S. Miller" , "Eric Dumazet" , "Jakub Kicinski" , "Paolo Abeni" , "Simon Horman" Cc: , , , , , , Subject: Re: [PATCH 2/3] mm, treewide: replace __folio_alloc_node() with folio_alloc_node() X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "Brendan Jackman" References: <20260716-folio-alloc-cleanups-v1-0-5363b8e92d33@google.com> <20260716-folio-alloc-cleanups-v1-2-5363b8e92d33@google.com> In-Reply-To: <20260716-folio-alloc-cleanups-v1-2-5363b8e92d33@google.com> X-Migadu-Flow: FLOW_OUT On Thu Jul 16, 2026 at 2:30 PM UTC, Brendan Jackman wrote: > Commit 5b584d2d22dca ("mm: remove __alloc_pages_node()") removed the __ Oh, I just remembered this commit hash is unstable. In fact it's already wrong. > variant of alloc_pages_node(), after users had been migrated off it, > since it just complicates the API (requiring users to handle > NUMA_NO_NODE, or risking hotplug bugs) for no real benefit.