提交 cca57c5b 编写于 作者: T Tim Chen 提交者: Linus Torvalds

[PATCH] Kconfig.debug: Set DEBUG_MUTEX to off by default

DEBUG_MUTEX flag is on by default in current kernel configuration.

During performance testing, we saw mutex debug functions like
mutex_debug_check_no_locks_freed (called by kfree()) is expensive as it
goes through a global list of memory areas with mutex lock and do the
checking.  For benchmarks such as Volanomark and Hackbench, we have seen
more than 40% drop in performance on some platforms.  We suggest to set
DEBUG_MUTEX off by default.  Or at least do that later when we feel that
the mutex changes in the current code have stabilized.
Signed-off-by: NTim Chen <tim.c.chen@intel.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 ca99c1da
...@@ -101,7 +101,7 @@ config DEBUG_PREEMPT ...@@ -101,7 +101,7 @@ config DEBUG_PREEMPT
config DEBUG_MUTEXES config DEBUG_MUTEXES
bool "Mutex debugging, deadlock detection" bool "Mutex debugging, deadlock detection"
default y default n
depends on DEBUG_KERNEL depends on DEBUG_KERNEL
help help
This allows mutex semantics violations and mutex related deadlocks This allows mutex semantics violations and mutex related deadlocks
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册