diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-12-14 00:03:49 (GMT) |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2014-05-14 18:38:46 (GMT) |
commit | e8b6fb1229641f26058e37860a7a32fee453b736 (patch) | |
tree | e184a5081e75e2511b7168b796ee4dc4786e462f /lib/Kconfig | |
parent | 0dadca92282071c72781ae48c07af0cbdd43b909 (diff) | |
download | linux-fsl-qoriq-e8b6fb1229641f26058e37860a7a32fee453b736.tar.xz |
cpumask: Disable CONFIG_CPUMASK_OFFSTACK for RT
We can't deal with the cpumask allocations which happen in atomic
context (see arch/x86/kernel/apic/io_apic.c) on RT right now.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index c742a2d..eee9e09 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -344,6 +344,7 @@ config CHECK_SIGNATURE config CPUMASK_OFFSTACK bool "Force CPU masks off stack" if DEBUG_PER_CPU_MAPS + depends on !PREEMPT_RT_FULL help Use dynamic allocation for cpumask_var_t, instead of putting them on the stack. This is a bit more expensive, but avoids |