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 C4BA831B116 for ; Thu, 30 Oct 2025 02:25:29 +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=1761791133; cv=none; b=Eq0lqniCOEGJ+KNS+0t8uBscNN6yksiFokino8wzvXAkd+woCeNEIIEeGRGnL/5m70ozPuSt+FeIvEd97l8bbeAi02oJoXAMdOBK1VOxOGPYvslW1P5wjiZVQFTLmTUvl+mEOBvH8jHiIrPXAufAxucy/adHPOBgOW37M/wGRes= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761791133; c=relaxed/simple; bh=/1eWmis339CcsmkDDuGnQyF6HgX2z2FodLnqAzdsuQQ=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=g5t5hOeS7x7E2r0gBWA9j4jS7sgESVmx8gK972XG0Aqe6T7ho1eUq7aMhEZTx/GUl5+2jPMrPafWr0jpdZxtIxtHy1qMrBDZ1VFsTkCzYCkKEKW1bbnfnC7JwPq5QwiorCSSU/lvkMlMGKiDvQL/2GvAn44nigmay2772dhNAas= 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=WDT5Wp6y; 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="WDT5Wp6y" Message-ID: <4ff09b34-fc18-4dcd-91e7-2e199d88e133@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1761791126; 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=3UyupsXh7QI3IpXLiJnSS9fzReGG9d97Eh4CpeWxH5k=; b=WDT5Wp6y6jrOwkHrqHxb3NYddT6JMZE1rFl8MwLNhXWLePJcpelDdcmraCl1b6kADLrvP/ OmlCpTqqpTCiBugvw/8TnfH+ES4arI53JBx61JoEc7krBaxUolqIQxv49AWoGarxL2yDu8 qmci9hK83UaaotYBL78770tMoTbBpGg= Date: Thu, 30 Oct 2025 10:25:13 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH v4 1/3] mm/huge_memory: add split_huge_page_to_order() To: Zi Yan Cc: kernel@pankajraghav.com, akpm@linux-foundation.org, mcgrof@kernel.org, nao.horiguchi@gmail.com, Lorenzo Stoakes , jane.chu@oracle.com, Baolin Wang , "Liam R. Howlett" , Nico Pache , Ryan Roberts , Dev Jain , Barry Song , "Matthew Wilcox (Oracle)" , Wei Yang , Yang Shi , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linmiaohe@huawei.com, linux-mm@kvack.org, david@redhat.com References: <20251030014020.475659-1-ziy@nvidia.com> <20251030014020.475659-2-ziy@nvidia.com> Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Lance Yang In-Reply-To: <20251030014020.475659-2-ziy@nvidia.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 2025/10/30 09:40, Zi Yan wrote: > When caller does not supply a list to split_huge_page_to_list_to_order(), > use split_huge_page_to_order() instead. > > Signed-off-by: Zi Yan > Acked-by: David Hildenbrand > Reviewed-by: Lorenzo Stoakes > --- Reviewed-by: Lance Yang