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 7F8C61DC98A for ; Mon, 27 Jan 2025 22:44:28 +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=1738017868; cv=none; b=iAAq4bDmr+0hQ7c/xDeDlq1aRW2iSlgese+csyMeZ84UfPsQyz4CCxy9dNcVbckoGKJ+Yh0AVMpIr0qHHjiJEuKN5kNd7wJH2wHH3IV8duESDn2ZQuhGXbU/dAZsWy5s0aRHDnQXPmEmTkVOXpNIrtw5TaGj1W/YuUi3j4C2H2I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738017868; c=relaxed/simple; bh=43FfmtHJYxyyNLN1GkoKD9xdx64oErZ9MJEQKB25H9A=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=F84eFYkMtLmxj40SlsWeykzHr6NH7hbisJlPd3yiv7VR3dCPmkrPNylDZqV2taZ89Lonx+yo72NHGAzXBv7tCvBdccd0dNrZhMEbL2alf6PxS69zupk3ZB3ZSqHzVT718RTdeUWajeScElDTvSn7TzSUYKnQMQFZ7pV1vlHi6M0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=KY82BSpV; 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="KY82BSpV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3404C4CED2; Mon, 27 Jan 2025 22:44:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1738017867; bh=43FfmtHJYxyyNLN1GkoKD9xdx64oErZ9MJEQKB25H9A=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=KY82BSpVtelFbyTlm6f9Fi04rImGCHDpIkzcnUx44CTmq9N/XeNDV8MPdwSSXKnqM 76WGAbCKrGl/nlAR7rIIHnm86Tk8In0CxPGdpVK5uNQ+LoeqVDXtk8nQpsbpMgkBVe P9DWLU/H3ru0fR4OYVlk9NJeO4DhFpRTH0BB6HSFJ5CKdXoM4fJly0HlWnxXDcoGvA GexyC2ktrMqGC8SAINNJq22P8+QBpPzoV180ZRAW/R5aC8SdA6FwhXu8U4UNXR5ogI ZnzP1Uri+fYPIrIPmdm7U0QO7dJpmmFYaNVXjKoCjgwwxBH9RdjdlieUzf1TqOO60I BHPRB9S9YaOUA== Date: Mon, 27 Jan 2025 12:44:27 -1000 From: Tejun Heo To: Andrea Righi Cc: David Vernet , Changwoo Min , Yury Norov , linux-kernel@vger.kernel.org Subject: Re: [PATCH v3] sched_ext: Move built-in idle CPU selection policy to a separate file Message-ID: References: <20250127222721.627121-1-arighi@nvidia.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: <20250127222721.627121-1-arighi@nvidia.com> On Mon, Jan 27, 2025 at 11:27:21PM +0100, Andrea Righi wrote: > As ext.c is becoming quite large, move the idle CPU selection policy to > separate files (ext_idle.c / ext_idle.h) for better code readability. > > Moreover, group together all the idle CPU selection kfunc's to the same > btf_kfunc_id_set block. > > No functional changes, this is purely code reorganization. > > Suggested-by: Yury Norov > Signed-off-by: Andrea Righi Applied to sched_ext/for-6.15. Thanks. -- tejun