From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta0.migadu.com (out-188.mta0.migadu.com [91.218.175.188]) (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 27D2023EA92 for ; Fri, 10 Apr 2026 16:01:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775836885; cv=none; b=MCDv7Xn/O6ZKeHuJSMMhEJeg2I/o1rRn31EzShUcFI8dk7I1RcztdSBx2NtVG4uTC640qKReaM3NMtpHSGTHS8Mudsb2mxpPlid9K4Fp8CrneB38lvvrpis8piLNNeOlgoNRQWi4R3M4PmSkFalcAi6W4hHinTcoUn1z2gy/Blw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775836885; c=relaxed/simple; bh=M4dwVe4qe0qtKeUfaQd4xMTjVQrbBZaeXbt0v3OovSU=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=lLWCHYaJr2WS6+KT+wxK3DcCyVO3x//wXSiCbKsGtNT70NlRQOL18yBE0OaIwBX5TiqZ3OikfpJfbKKMDybegAX6yb3VcnlAYBCsWymdHzXpIBlb0E1n5vv6dEPAryF6tu7m83nMMYdpet+msyMA0ssjKz0vfKvlNGeBSEwXPMc= 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=rcC6Csud; arc=none smtp.client-ip=91.218.175.188 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="rcC6Csud" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1775836882; 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=M4dwVe4qe0qtKeUfaQd4xMTjVQrbBZaeXbt0v3OovSU=; b=rcC6CsudGXViKn5XD2MGxKb2kjDU49odFdFTlBN0pTWTIpjofNeJTFEopPhR6FlK8Iqw/W W6a5pXobE4rMt9y/Ja3z2QgFTUcSdpH+zQqDMXCpXRC2oVrsxZUARVDNGF7GW/iTYtPhNa S24kImO9DnfTEp0UIxySlpwY22IirQ0= From: Lance Yang To: luizcap@redhat.com Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, david@kernel.org, baolin.wang@linux.alibaba.com, ryan.roberts@arm.com, akpm@linux-foundation.org, lorenzo.stoakes@oracle.com, Lance Yang Subject: Re: [PATCH v3 01/10] docs: tmpfs: remove implementation detail reference Date: Sat, 11 Apr 2026 00:00:59 +0800 Message-Id: <20260410160059.63419-1-lance.yang@linux.dev> In-Reply-To: <9a0bed627137a1a0055900114ac6d4abd3a9720c.1775679721.git.luizcap@redhat.com> References: <9a0bed627137a1a0055900114ac6d4abd3a9720c.1775679721.git.luizcap@redhat.com> 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=UTF-8 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT On Wed, Apr 08, 2026 at 04:22:56PM -0400, Luiz Capitulino wrote: >The tmpfs.rst doc references the has_transparent_hugepage() helper, which >is an implementation detail in the kernel and not relevant for users >wishing to properly configure THP support for tmpfs. Remove it. > >Acked-by: David Hildenbrand (Red Hat) >Reviewed-by: Baolin Wang >Signed-off-by: Luiz Capitulino >--- Thanks. Reviewed-by: Lance Yang