From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-187.mta1.migadu.com (out-187.mta1.migadu.com [95.215.58.187]) (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 EB7763C3C03 for ; Tue, 16 Jun 2026 02:56:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.187 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781578611; cv=none; b=preVTuurR1tpzFfupJUMp7qdumog4RnYplw5RNxjKIVC8Dhl9wJpiCx3moP7ydYOKzfdcbPKXtkHO9eM9s1K+uAbE504seFqw9EjDHdYDkrhUHdK6vyIN1+rnSSVIXJcNwixUghErQGeu8vsSVzN+7PXoMLkRZYalbHfq3JlXY8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781578611; c=relaxed/simple; bh=nPDobrLcRyjPKLmEJghs91FRMWK3azLJSS18mQSSXP4=; h=Content-Type:Mime-Version:Subject:From:In-Reply-To:Date:Cc: Message-Id:References:To; b=qPKB2Rl5G/8hhty6bCS2lVAhUSesfxuIaDa4MbnDipBKCCqu4g10mvU5I67Zz2Co9bs4JnpjCe0bPNfy47ca533drmpHcqQTndWSjlGHHzDjJ8jwDKi5tZL4swbmoCQvskf7v+KO44vXJCVhjUJqkZAmdv8iDYZExISdPMHztZc= 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=t578PHed; arc=none smtp.client-ip=95.215.58.187 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="t578PHed" Content-Type: text/plain; charset=us-ascii DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1781578606; 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=nPDobrLcRyjPKLmEJghs91FRMWK3azLJSS18mQSSXP4=; b=t578PHedUuJZE8Coq+qDUE326GXC4+ORF4YG8vDNFo08k4nk343d7rXk0b0dDB1UKcQWp/ +J/dHjL5ikyRJ8/wgsfNWrLZDfe9fRFWn+ap/5WvrG6kFfaG9fIqsmgetC2mwWm9Ew24qC 5ssaqqeFAa3F37WbvYTQQ5Y4l7QnWaw= 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.600.51.1.1\)) Subject: Re: [PATCH] mm: hugetlb: correct CONFIG_CGROUP_HUGETLB macro name in comment X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Muchun Song In-Reply-To: <20260616000135.62815-1-enelsonmoore@gmail.com> Date: Tue, 16 Jun 2026 10:55:55 +0800 Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Oscar Salvador , David Hildenbrand , Lorenzo Stoakes , Andrew Morton , Pedro Falcato , Anthony Yznaga Content-Transfer-Encoding: quoted-printable Message-Id: <34A6D74D-CDDC-46FE-BCAE-990BDD1713BA@linux.dev> References: <20260616000135.62815-1-enelsonmoore@gmail.com> To: Ethan Nelson-Moore X-Migadu-Flow: FLOW_OUT > On Jun 16, 2026, at 08:01, Ethan Nelson-Moore = wrote: >=20 > A comment in incorrectly refers to > CONFIG_MEM_RES_CTLR_HUGETLB, which has never existed in the kernel, > instead of CONFIG_CGROUP_HUGETLB. Correct it. >=20 > Discovered while searching for CONFIG_* symbols referenced in code but > not defined in any Kconfig file. >=20 > Signed-off-by: Ethan Nelson-Moore Reviewed-by: Muchun Song Thanks.