From patchwork Fri Oct 8 11:53:46 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Valentin Schneider X-Patchwork-Id: 1538720 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.ozlabs.org (client-ip=2404:9400:2:0:216:3eff:fee1:b9f1; helo=lists.ozlabs.org; envelope-from=linuxppc-dev-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org; receiver=) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2404:9400:2:0:216:3eff:fee1:b9f1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4HRDMp3KMrz9sPf for ; Sat, 9 Oct 2021 16:37:10 +1100 (AEDT) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4HRDMp2PJlz3c7G for ; Sat, 9 Oct 2021 16:37:10 +1100 (AEDT) X-Original-To: linuxppc-dev@lists.ozlabs.org Delivered-To: linuxppc-dev@lists.ozlabs.org Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=arm.com (client-ip=217.140.110.172; helo=foss.arm.com; envelope-from=valentin.schneider@arm.com; receiver=) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lists.ozlabs.org (Postfix) with ESMTP id 4HQmnq0748z2yp5 for ; Fri, 8 Oct 2021 22:54:38 +1100 (AEDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 4833D113E; Fri, 8 Oct 2021 04:54:37 -0700 (PDT) Received: from e113632-lin.cambridge.arm.com (e113632-lin.cambridge.arm.com [10.1.196.57]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 9C70F3F766; Fri, 8 Oct 2021 04:54:29 -0700 (PDT) From: Valentin Schneider To: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-ia64@vger.kernel.org, linux-mips@vger.kernel.org, linux-parisc@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-s390@vger.kernel.org, linux-sh@vger.kernel.org, sparclinux@vger.kernel.org Subject: [PATCH 1/2] sched: Move Kconfig.preempt to sched/Kconfig Date: Fri, 8 Oct 2021 12:53:46 +0100 Message-Id: <20211008115347.425234-2-valentin.schneider@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20211008115347.425234-1-valentin.schneider@arm.com> References: <20211008115347.425234-1-valentin.schneider@arm.com> MIME-Version: 1.0 X-Mailman-Approved-At: Sat, 09 Oct 2021 16:36:15 +1100 X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Juri Lelli , Mark Rutland , Kefeng Wang , Rich Felker , Geert Uytterhoeven , David Hildenbrand , Peter Zijlstra , Linus Walleij , Rasmus Villemoes , x86@kernel.org, Michal Hocko , "James E.J. Bottomley" , Paul Mackerras , "H. Peter Anvin" , Will Deacon , Ard Biesheuvel , Vincent Guittot , Arnd Bergmann , Yoshinori Sato , YiFei Zhu , Helge Deller , aubrey.li@linux.intel.com, Hugh Dickins , Russell King , Christian Borntraeger , Ingo Molnar , Mel Gorman , Catalin Marinas , Masahiro Yamada , Frederic Weisbecker , Kees Cook , Vasily Gorbik , Anshuman Khandual , Vipin Sharma , Heiko Carstens , =?utf-8?q?Uwe_Kleine-K=C3=B6nig?= , Steven Rostedt , Nathan Chancellor , Borislav Petkov , Sergei Trofimovich , jonathan.cameron@huawei.com, Thomas Gleixner , Dietmar Eggemann , Vlastimil Babka , song.bao.hua@hisilicon.com, Ben Segall , Thomas Bogendoerfer , Daniel Borkmann , Chris Down , Daniel Bristot de Oliveira , Randy Dunlap , Nick Desaulniers , Andrew Morton , tim.c.chen@linux.intel.com, "David S. Miller" , Mike Rapoport Errors-To: linuxppc-dev-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Linuxppc-dev" Kconfig.preempt already contains more than just preemption configs (see CONFIG_SCHED_CORE), and a subsequent patch will introduce more scheduler-specific configs. Move the file to the scheduler directory. Suggested-by: Peter Zijlstra Signed-off-by: Valentin Schneider --- init/Kconfig | 2 +- kernel/{Kconfig.preempt => sched/Kconfig} | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) rename kernel/{Kconfig.preempt => sched/Kconfig} (99%) diff --git a/init/Kconfig b/init/Kconfig index 11f8a845f259..4caedc821b06 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -460,7 +460,7 @@ config AUDITSYSCALL source "kernel/irq/Kconfig" source "kernel/time/Kconfig" source "kernel/bpf/Kconfig" -source "kernel/Kconfig.preempt" +source "kernel/sched/Kconfig" menu "CPU/Task time and stats accounting" diff --git a/kernel/Kconfig.preempt b/kernel/sched/Kconfig similarity index 99% rename from kernel/Kconfig.preempt rename to kernel/sched/Kconfig index 60f1bfc3c7b2..c8b8e12c9c9c 100644 --- a/kernel/Kconfig.preempt +++ b/kernel/sched/Kconfig @@ -131,5 +131,3 @@ config SCHED_CORE SCHED_CORE is default disabled. When it is enabled and unused, which is the likely usage by Linux distributions, there should be no measurable impact on performance. - -