From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-181.mta0.migadu.com (out-181.mta0.migadu.com [91.218.175.181]) (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 0946933EC for ; Tue, 24 Feb 2026 05:04:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.181 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771909455; cv=none; b=Hh5eR8hL/I/yT7/jTKVf4tG/94td6JW0ZBOrFGgsCGISebU9Xn9acSC1/vpayICaaAEjLJ67iGEdi5qCP6WbthKMv/OkXL6EIRfKYxvMx9w/urnG5lKTAqWldEv6FQKd9ngJC/ULlZrsG2SDnFlqt1/MXPc6W8YJR7ZkU2AyWWk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771909455; c=relaxed/simple; bh=r/CubyS4dNCe+Lud4y3NlW3Bd3qIqHW7mtrmzpuTwJk=; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Cc: Message-Id:References:To; b=Un8Q+uj9klIrF+PoKqf6Y5+PGQKaV6cnqojtsxaiYlb7qT2ZX6/acVcRoxEYVRVA0T+gQehQzgKdtqttZDFAmtSMKJYygEmnLllVRDfUBuypm/z30B2lNYBGovsoaLTlT3XjumXieMOMJGMFrowdqhWNf98kObbv0x4C0ogTOf8= 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=fpnezLB/; arc=none smtp.client-ip=91.218.175.181 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="fpnezLB/" Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1771909450; 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=EG8whWiscX+B+atpuuBm8IAdBUH2FBl3rjbNgVwiCQI=; b=fpnezLB/XGUs1JAM3+ddrRnJ9xrr9MqSXJr6joVN4tUkuXpMbxNU//ZvvhigHKYRtrvL3C k4tYbq8Okd0O3pirzfHrohzOikxBRrx87cyE8xysynb3fs70Eks5nxS3E1r9RTB0TMMPlf nrr2DS5vuEiB9Xd8kAYPJCHttdSbxkw= Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3864.400.21\)) Subject: Re: [PATCH] mm/hugetlb_vmemmap: update outdated comment X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Muchun Song In-Reply-To: <20260224022840.1936-1-kexinsun@smail.nju.edu.cn> Date: Tue, 24 Feb 2026 13:03:23 +0800 Cc: osalvador@suse.de, david@kernel.org, akpm@linux-foundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, julia.lawall@inria.fr, xutong.ma@inria.fr, yunbolyu@smu.edu.sg, ratnadiraw@smu.edu.sg Content-Transfer-Encoding: 7bit Message-Id: References: <20260224022840.1936-1-kexinsun@smail.nju.edu.cn> To: kexinsun X-Migadu-Flow: FLOW_OUT > On Feb 24, 2026, at 10:28, kexinsun wrote: > > The function vmemmap_pte_range() was refactored into vmemmap_pte_entry() > by commit fb93ed63345f ("mm: hugetlb_vmemmap: use walk_page_range_novma() > to simplify the code"). Both functions share the key behavior that the > reuse page is identified first before remapping begins. Update the > comment accordingly. > > Signed-off-by: kexinsun Reviewed-by: Muchun Song Thanks.