aboutsummaryrefslogtreecommitdiffstats
path: root/mm/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'mm/Kconfig')
-rw-r--r--mm/Kconfig28
1 files changed, 14 insertions, 14 deletions
diff --git a/mm/Kconfig b/mm/Kconfig
index 44cf6f0a3a6d..9c61158308dc 100644
--- a/mm/Kconfig
+++ b/mm/Kconfig
@@ -115,6 +115,10 @@ config SPARSEMEM_EXTREME
115config SPARSEMEM_VMEMMAP_ENABLE 115config SPARSEMEM_VMEMMAP_ENABLE
116 bool 116 bool
117 117
118config SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
119 def_bool y
120 depends on SPARSEMEM && X86_64
121
118config SPARSEMEM_VMEMMAP 122config SPARSEMEM_VMEMMAP
119 bool "Sparse Memory virtual memmap" 123 bool "Sparse Memory virtual memmap"
120 depends on SPARSEMEM && SPARSEMEM_VMEMMAP_ENABLE 124 depends on SPARSEMEM && SPARSEMEM_VMEMMAP_ENABLE
@@ -158,11 +162,13 @@ config PAGEFLAGS_EXTENDED
158# Default to 4 for wider testing, though 8 might be more appropriate. 162# Default to 4 for wider testing, though 8 might be more appropriate.
159# ARM's adjust_pte (unused if VIPT) depends on mm-wide page_table_lock. 163# ARM's adjust_pte (unused if VIPT) depends on mm-wide page_table_lock.
160# PA-RISC 7xxx's spinlock_t would enlarge struct page from 32 to 44 bytes. 164# PA-RISC 7xxx's spinlock_t would enlarge struct page from 32 to 44 bytes.
165# DEBUG_SPINLOCK and DEBUG_LOCK_ALLOC spinlock_t also enlarge struct page.
161# 166#
162config SPLIT_PTLOCK_CPUS 167config SPLIT_PTLOCK_CPUS
163 int 168 int
164 default "4096" if ARM && !CPU_CACHE_VIPT 169 default "999999" if ARM && !CPU_CACHE_VIPT
165 default "4096" if PARISC && !PA20 170 default "999999" if PARISC && !PA20
171 default "999999" if DEBUG_SPINLOCK || DEBUG_LOCK_ALLOC
166 default "4" 172 default "4"
167 173
168# 174#
@@ -193,21 +199,13 @@ config BOUNCE
193config NR_QUICK 199config NR_QUICK
194 int 200 int
195 depends on QUICKLIST 201 depends on QUICKLIST
196 default "2" if SUPERH || AVR32 202 default "2" if AVR32
197 default "1" 203 default "1"
198 204
199config VIRT_TO_BUS 205config VIRT_TO_BUS
200 def_bool y 206 def_bool y
201 depends on !ARCH_NO_VIRT_TO_BUS 207 depends on !ARCH_NO_VIRT_TO_BUS
202 208
203config HAVE_MLOCK
204 bool
205 default y if MMU=y
206
207config HAVE_MLOCKED_PAGE_BIT
208 bool
209 default y if HAVE_MLOCK=y
210
211config MMU_NOTIFIER 209config MMU_NOTIFIER
212 bool 210 bool
213 211
@@ -218,7 +216,7 @@ config KSM
218 Enable Kernel Samepage Merging: KSM periodically scans those areas 216 Enable Kernel Samepage Merging: KSM periodically scans those areas
219 of an application's address space that an app has advised may be 217 of an application's address space that an app has advised may be
220 mergeable. When it finds pages of identical content, it replaces 218 mergeable. When it finds pages of identical content, it replaces
221 the many instances by a single resident page with that content, so 219 the many instances by a single page with that content, so
222 saving memory until one or another app needs to modify the content. 220 saving memory until one or another app needs to modify the content.
223 Recommended for use with KVM, or with other duplicative applications. 221 Recommended for use with KVM, or with other duplicative applications.
224 See Documentation/vm/ksm.txt for more information: KSM is inactive 222 See Documentation/vm/ksm.txt for more information: KSM is inactive
@@ -227,6 +225,7 @@ config KSM
227 225
228config DEFAULT_MMAP_MIN_ADDR 226config DEFAULT_MMAP_MIN_ADDR
229 int "Low address space to protect from user allocation" 227 int "Low address space to protect from user allocation"
228 depends on MMU
230 default 4096 229 default 4096
231 help 230 help
232 This is the portion of low virtual memory which should be protected 231 This is the portion of low virtual memory which should be protected
@@ -257,8 +256,9 @@ config MEMORY_FAILURE
257 special hardware support and typically ECC memory. 256 special hardware support and typically ECC memory.
258 257
259config HWPOISON_INJECT 258config HWPOISON_INJECT
260 tristate "Poison pages injector" 259 tristate "HWPoison pages injector"
261 depends on MEMORY_FAILURE && DEBUG_KERNEL 260 depends on MEMORY_FAILURE && DEBUG_KERNEL && PROC_FS
261 select PROC_PAGE_MONITOR
262 262
263config NOMMU_INITIAL_TRIM_EXCESS 263config NOMMU_INITIAL_TRIM_EXCESS
264 int "Turn on mmap() excess space trimming before booting" 264 int "Turn on mmap() excess space trimming before booting"