aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/Kconfig.debug
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@infradead.org>2009-10-06 10:04:52 -0400
committerIngo Molnar <mingo@elte.hu>2009-10-12 16:29:51 -0400
commitad8f4356af58f7ded6b4a5787c67c7cab51066b5 (patch)
tree08aea59cda46a4c627714cd63eb970b127f228d3 /arch/x86/Kconfig.debug
parentae24ffe5ecec17c956ac25371d7c2e12b4b36e53 (diff)
x86: Don't use the strict copy checks when branch profiling is in use
The branch profiling creates very complex code for each if statement, to the point that gcc has trouble even analyzing something as simple as if (count > 5) count = 5; This then means that causing an error on code that gcc cannot analyze for copy_from_user() and co is not very productive. This patch excludes the strict copy checks in the case of branch profiling being enabled. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Cc: Steven Rostedt <rostedt@goodmis.org> LKML-Reference: <20091006070452.5e1fc119@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/Kconfig.debug')
-rw-r--r--arch/x86/Kconfig.debug2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig.debug b/arch/x86/Kconfig.debug
index 1bd2e36f1538..fb772b6a41ad 100644
--- a/arch/x86/Kconfig.debug
+++ b/arch/x86/Kconfig.debug
@@ -289,7 +289,7 @@ config OPTIMIZE_INLINING
289 289
290config DEBUG_STRICT_USER_COPY_CHECKS 290config DEBUG_STRICT_USER_COPY_CHECKS
291 bool "Strict copy size checks" 291 bool "Strict copy size checks"
292 depends on DEBUG_KERNEL 292 depends on DEBUG_KERNEL && !TRACE_BRANCH_PROFILING
293 ---help--- 293 ---help---
294 Enabling this option turns a certain set of sanity checks for user 294 Enabling this option turns a certain set of sanity checks for user
295 copy operations into compile time failures. 295 copy operations into compile time failures.