diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-07-24 12:11:43 +0200 |
---|---|---|
committer | Clark Williams <williams@redhat.com> | 2012-01-16 13:00:37 -0600 |
commit | b0350f8fef01863d696dd85961e878b570a5e960 (patch) | |
tree | 6f3b12fa5c06aa15b578c1c6bba13e43f5ee521f | |
parent | 3367cb3bd2e2982a7090fc7a33cfe0dbba74776e (diff) |
kconfig-disable-a-few-options-rt.patch
Disable stuff which is known to have issues on RT
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | arch/Kconfig | 1 | ||||
-rw-r--r-- | drivers/net/Kconfig | 1 | ||||
-rw-r--r-- | mm/Kconfig | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 4b0669cbb3b0..73fc7cd51582 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -6,6 +6,7 @@ config OPROFILE tristate "OProfile system profiling" depends on PROFILING depends on HAVE_OPROFILE + depends on !PREEMPT_RT_FULL select RING_BUFFER select RING_BUFFER_ALLOW_SWAP help diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 654a5e94e0e7..0f5149d62324 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -154,6 +154,7 @@ config MACVTAP config NETCONSOLE tristate "Network console logging support" + depends on !PREEMPT_RT_FULL ---help--- If you want to log kernel messages over the network, enable this. See <file:Documentation/networking/netconsole.txt> for details. diff --git a/mm/Kconfig b/mm/Kconfig index 011b110365c8..0526445c9b35 100644 --- a/mm/Kconfig +++ b/mm/Kconfig @@ -307,7 +307,7 @@ config NOMMU_INITIAL_TRIM_EXCESS config TRANSPARENT_HUGEPAGE bool "Transparent Hugepage Support" - depends on X86 && MMU + depends on X86 && MMU && !PREEMPT_RT_FULL select COMPACTION help Transparent Hugepages allows the kernel to use huge pages and |