diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-12-14 01:03:49 +0100 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2011-12-28 16:25:52 -0600 |
commit | 8efd30f31439e30ff8689be6135752fec73f5610 (patch) | |
tree | 254feb2bd731659f5b3ce4944b5d06603aeed752 /lib | |
parent | e32e23d018c630fb70a0e086c3a0d71d36abfc6c (diff) |
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')
-rw-r--r-- | lib/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 32f3e5ae2be5..63d81e811c1f 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -231,6 +231,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 |