diff options
author | Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com> | 2015-06-25 14:23:37 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-07-04 04:04:30 -0400 |
commit | f6db8347993256b58bd4746b0c4c5b935c32210d (patch) | |
tree | 07accf585bbf5c7cb5f167a11a4e713deabb6043 /lib | |
parent | 407a2c720556e8e340e06f6a7174f5d6d80cf9ea (diff) |
sched/stat: Simplify the sched_info accounting dependency
Both CONFIG_SCHEDSTATS=y and CONFIG_TASK_DELAY_ACCT=y track task
sched_info, which results in ugly #if clauses.
Simplify the code by introducing a synthethic CONFIG_SCHED_INFO
switch, selected by both.
Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Cc: Balbir Singh <bsingharora@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: a.p.zijlstra@chello.nl
Cc: ricklind@us.ibm.com
Link: http://lkml.kernel.org/r/8d19eef800811a94b0f91bcbeb27430a884d7433.1435255405.git.naveen.n.rao@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index b908048f8d6a..e2894b23efb6 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -841,9 +841,14 @@ config SCHED_DEBUG | |||
841 | that can help debug the scheduler. The runtime overhead of this | 841 | that can help debug the scheduler. The runtime overhead of this |
842 | option is minimal. | 842 | option is minimal. |
843 | 843 | ||
844 | config SCHED_INFO | ||
845 | bool | ||
846 | default n | ||
847 | |||
844 | config SCHEDSTATS | 848 | config SCHEDSTATS |
845 | bool "Collect scheduler statistics" | 849 | bool "Collect scheduler statistics" |
846 | depends on DEBUG_KERNEL && PROC_FS | 850 | depends on DEBUG_KERNEL && PROC_FS |
851 | select SCHED_INFO | ||
847 | help | 852 | help |
848 | If you say Y here, additional code will be inserted into the | 853 | If you say Y here, additional code will be inserted into the |
849 | scheduler and related routines to collect statistics about | 854 | scheduler and related routines to collect statistics about |