From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 CA7BE27FD76 for ; Sat, 6 Dec 2025 10:48:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765018117; cv=none; b=iqQy+q7RecJxbNeBCv+SQ5TF9+Wut6rJELBuhn7MSC6xrbDLV4yetWhV37NxuoKzx1dVq2Y2e9VU5yBmMOIqTEDVm0V0pKVxLBdrfIRC53T8HJ3Fv7nouc38JnfLIW2GwFwhvbVioVC4gl+NlpJOH6jtuTcfhYQP+ryLdTZi9mQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765018117; c=relaxed/simple; bh=tpIavYjsdlKZvZHWOnHvB4Sr2eMG3+Q6CpqMcks3wx0=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=I6j6TjNP+eCYiUFYikqEwt4k8IL9Lm0Df7tIGvh+QROVBVjiEeLGcgKMWJDvKBlTRbbglYJj7iV2CjrUbLTNFkJFItF8TRyLcahOz0WUnTG0rEnWd+kyt7WY522ColIXRtPeAKZTrY8UuaQS1xVCO3C8q8M6paWEqLvsEzjUjJw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MzCqo4LJ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="MzCqo4LJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C5AA0C4CEF5; Sat, 6 Dec 2025 10:48:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1765018117; bh=tpIavYjsdlKZvZHWOnHvB4Sr2eMG3+Q6CpqMcks3wx0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MzCqo4LJfk/R8taGyN+KLoL69YuVUtdQrtVr7wdNEgCRwRvqKtF1uQWif+nPvWywy LbW1wlBlORGcXmaNRSzVJ6DPbL1/w3ePnRobHWCs/OjSUvwukHGR6UOiL4UT+fNhlj sk06zTUp6CPuZQuew1z+Fi/HO0/G+XrL4wLdF/kRCr3XjTVbE2nkaBlYkyL2MhZhLb tp2/X3FtvtX0JBsaLWFwllLUQW9djLNL9Yv/16+W6dcwfBRPxn4dtz6DZJcsgV6Z7/ V+whOwEksp5DB0p3n8ZGTsFRs+Lj2pgpb6xA9xelvL3mwPcTV52oHwAxg28+7bi8sb ku0ps3Iv7Tt7Q== Date: Sat, 6 Dec 2025 11:48:32 +0100 From: Ingo Molnar To: Shrikanth Hegde Cc: Peter Zijlstra , Juri Lelli , Dietmar Eggemann , Valentin Schneider , Vincent Guittot , Linus Torvalds , Mel Gorman , Steven Rostedt , Thomas Gleixner , linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/6] sched/fair: Join two #ifdef CONFIG_CFS_BANDWIDTH blocks Message-ID: References: <20251201064647.1851919-1-mingo@kernel.org> <20251201064647.1851919-2-mingo@kernel.org> <15fa87f0-3c29-485e-8a0e-db0eb2343f2c@linux.ibm.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: <15fa87f0-3c29-485e-8a0e-db0eb2343f2c@linux.ibm.com> * Shrikanth Hegde wrote: > On 12/1/25 12:16 PM, Ingo Molnar wrote: > > Join two identical #ifdef blocks: > > > > #ifdef CONFIG_CFS_BANDWIDTH > > ... > > #endif > > > > #ifdef CONFIG_CFS_BANDWIDTH > > ... > > #endif > > > > nit: I think it is CONFIG_FAIR_GROUP_SCHED here and in the subject line. Indeed, fixed. Thanks, Ingo