From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 66BC13DFC94 for ; Mon, 29 Jun 2026 10:25:31 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782728732; cv=none; b=RQK9BiKyfmP2cuq2OFLg2/oAKpjfujTn4+fPOws4Wv0Ej5ET4QPhv+34N4TMQ3krZIYQ+59P97lIpV9SXUdeONGZXtPx+9mBrSArEU4hDcURm5YnZbVe6M2WoG125nelJZuoaqlP1c/zq+OZ0B42RP6tOGuwmBKeYCReOFV7uNc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782728732; c=relaxed/simple; bh=bxVZOFuFuE/nWnUt2kZ8u/pZG6M4l+DNOSxGWth/erA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Qoe6INRrjUNBYLph9URkIyZ1iJdoYk0MjCAbeO4GZhQmo6X59HvMGAGPemyTyRNMTv4WP+EuvPmqz5uu5Ed1P2aXbJZfUFbICM7sTAzVWnsRkLMbRxtAMylsx7Q0y72RpfY/K1/pHTzPL67gUlnC4vuX3hbBvvOgeo1zENQUX08= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=DhUImxg7; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="DhUImxg7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2036E1F000E9; Mon, 29 Jun 2026 10:25:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782728731; bh=BeIO+hIAQvaGLJ/XUNN2YFChYOaCahefr/d5SYoOtTI=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=DhUImxg7uy1ylGTJH2tK3/USdiivBHz2NVrp8flUbson/mp+NGtRmXJivIzZ+u3/3 P4mGxdcvktZuOVElq2/q5uk2PqT01cmh3c+gB7zf2MGKQv1aXEnYp2+HiMlIuPet5n WaDP/eveGe0Kd5IFbw58/weduZNYzADaDoJVe9wuEMbD/rwf8pw88RwzlE7limb7la tpxXCOEwoZwvx2kCjY53cBbFOfeblPiArcNzUGzeYG4uUBuRNhUUPjqAva1fn9BuZQ /Hm2fJDTccG9xCgom4HFKEeVPa7PFK+cGRFMAOJqDACXteBAZSTY2IH06XIKS9udey yFkE2TUSxdrSQ== Date: Mon, 29 Jun 2026 11:25:23 +0100 From: Lorenzo Stoakes To: Ethan Nelson-Moore Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Muchun Song , Oscar Salvador , David Hildenbrand , Andrew Morton , Pedro Falcato , Anthony Yznaga Subject: Re: [PATCH] mm: hugetlb: correct CONFIG_CGROUP_HUGETLB macro name in comment Message-ID: References: <20260616000135.62815-1-enelsonmoore@gmail.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=us-ascii Content-Disposition: inline In-Reply-To: <20260616000135.62815-1-enelsonmoore@gmail.com> On Mon, Jun 15, 2026 at 05:01:31PM -0700, Ethan Nelson-Moore wrote: > 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. > > Discovered while searching for CONFIG_* symbols referenced in code but > not defined in any Kconfig file. > > Signed-off-by: Ethan Nelson-Moore LGTM, so: Reviewed-by: Lorenzo Stoakes > --- > include/linux/hugetlb_cgroup.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/hugetlb_cgroup.h b/include/linux/hugetlb_cgroup.h > index e5d64b8b59c2..16d72c8c71f6 100644 > --- a/include/linux/hugetlb_cgroup.h > +++ b/include/linux/hugetlb_cgroup.h > @@ -267,5 +267,5 @@ static inline void hugetlb_cgroup_migrate(struct folio *old_folio, > { > } > > -#endif /* CONFIG_MEM_RES_CTLR_HUGETLB */ > +#endif /* CONFIG_CGROUP_HUGETLB */ > #endif > -- > 2.43.0 > Cheers, Lorenzo