diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-06-01 03:47:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-01 11:18:30 -0400 |
commit | c1a834dc704763673df10282995257f2de93cbe9 (patch) | |
tree | 66a0bc5ffbf6732eaa5fc6f554c13b235005c4cd /lib/Kconfig.debug | |
parent | 9fcc15ec3c1c287a781a4620e52522b6186f26f6 (diff) |
timer stats: speedups
Make timer-stats have almost zero overhead when enabled in the config but
not used. (this way distros can enable it more easily)
Also update the documentation about overhead of timer_stats - it was
written for the first version which had a global lock and a linear list
walk based lookup ;-)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/Kconfig.debug')
-rw-r--r-- | lib/Kconfig.debug | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 1ba77ca7d165..da95e10cfd70 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -126,7 +126,10 @@ config TIMER_STATS | |||
126 | reprogrammed. The statistics can be read from /proc/timer_stats. | 126 | reprogrammed. The statistics can be read from /proc/timer_stats. |
127 | The statistics collection is started by writing 1 to /proc/timer_stats, | 127 | The statistics collection is started by writing 1 to /proc/timer_stats, |
128 | writing 0 stops it. This feature is useful to collect information | 128 | writing 0 stops it. This feature is useful to collect information |
129 | about timer usage patterns in kernel and userspace. | 129 | about timer usage patterns in kernel and userspace. This feature |
130 | is lightweight if enabled in the kernel config but not activated | ||
131 | (it defaults to deactivated on bootup and will only be activated | ||
132 | if some application like powertop activates it explicitly). | ||
130 | 133 | ||
131 | config DEBUG_SLAB | 134 | config DEBUG_SLAB |
132 | bool "Debug slab memory allocations" | 135 | bool "Debug slab memory allocations" |