1e1785e85SDave Hansenconfig SELECT_MEMORY_MODEL 2e1785e85SDave Hansen def_bool y 3e1785e85SDave Hansen depends on EXPERIMENTAL || ARCH_SELECT_MEMORY_MODEL 4e1785e85SDave Hansen 53a9da765SDave Hansenchoice 63a9da765SDave Hansen prompt "Memory model" 7e1785e85SDave Hansen depends on SELECT_MEMORY_MODEL 8e1785e85SDave Hansen default DISCONTIGMEM_MANUAL if ARCH_DISCONTIGMEM_DEFAULT 9d41dee36SAndy Whitcroft default SPARSEMEM_MANUAL if ARCH_SPARSEMEM_DEFAULT 10e1785e85SDave Hansen default FLATMEM_MANUAL 113a9da765SDave Hansen 12e1785e85SDave Hansenconfig FLATMEM_MANUAL 133a9da765SDave Hansen bool "Flat Memory" 14c898ec16SAnton Blanchard depends on !(ARCH_DISCONTIGMEM_ENABLE || ARCH_SPARSEMEM_ENABLE) || ARCH_FLATMEM_ENABLE 153a9da765SDave Hansen help 163a9da765SDave Hansen This option allows you to change some of the ways that 173a9da765SDave Hansen Linux manages its memory internally. Most users will 183a9da765SDave Hansen only have one option here: FLATMEM. This is normal 193a9da765SDave Hansen and a correct option. 203a9da765SDave Hansen 21d41dee36SAndy Whitcroft Some users of more advanced features like NUMA and 22d41dee36SAndy Whitcroft memory hotplug may have different options here. 23d41dee36SAndy Whitcroft DISCONTIGMEM is an more mature, better tested system, 24d41dee36SAndy Whitcroft but is incompatible with memory hotplug and may suffer 25d41dee36SAndy Whitcroft decreased performance over SPARSEMEM. If unsure between 26d41dee36SAndy Whitcroft "Sparse Memory" and "Discontiguous Memory", choose 27d41dee36SAndy Whitcroft "Discontiguous Memory". 28d41dee36SAndy Whitcroft 29d41dee36SAndy Whitcroft If unsure, choose this option (Flat Memory) over any other. 303a9da765SDave Hansen 31e1785e85SDave Hansenconfig DISCONTIGMEM_MANUAL 32f3519f91SDave Hansen bool "Discontiguous Memory" 333a9da765SDave Hansen depends on ARCH_DISCONTIGMEM_ENABLE 343a9da765SDave Hansen help 35785dcd44SDave Hansen This option provides enhanced support for discontiguous 36785dcd44SDave Hansen memory systems, over FLATMEM. These systems have holes 37785dcd44SDave Hansen in their physical address spaces, and this option provides 38785dcd44SDave Hansen more efficient handling of these holes. However, the vast 39785dcd44SDave Hansen majority of hardware has quite flat address spaces, and 40ad3d0a38SPhilipp Marek can have degraded performance from the extra overhead that 41785dcd44SDave Hansen this option imposes. 42785dcd44SDave Hansen 43785dcd44SDave Hansen Many NUMA configurations will have this as the only option. 44785dcd44SDave Hansen 453a9da765SDave Hansen If unsure, choose "Flat Memory" over this option. 463a9da765SDave Hansen 47d41dee36SAndy Whitcroftconfig SPARSEMEM_MANUAL 48d41dee36SAndy Whitcroft bool "Sparse Memory" 49d41dee36SAndy Whitcroft depends on ARCH_SPARSEMEM_ENABLE 50d41dee36SAndy Whitcroft help 51d41dee36SAndy Whitcroft This will be the only option for some systems, including 52d41dee36SAndy Whitcroft memory hotplug systems. This is normal. 53d41dee36SAndy Whitcroft 54d41dee36SAndy Whitcroft For many other systems, this will be an alternative to 55f3519f91SDave Hansen "Discontiguous Memory". This option provides some potential 56d41dee36SAndy Whitcroft performance benefits, along with decreased code complexity, 57d41dee36SAndy Whitcroft but it is newer, and more experimental. 58d41dee36SAndy Whitcroft 59d41dee36SAndy Whitcroft If unsure, choose "Discontiguous Memory" or "Flat Memory" 60d41dee36SAndy Whitcroft over this option. 61d41dee36SAndy Whitcroft 623a9da765SDave Hansenendchoice 633a9da765SDave Hansen 64e1785e85SDave Hansenconfig DISCONTIGMEM 65e1785e85SDave Hansen def_bool y 66e1785e85SDave Hansen depends on (!SELECT_MEMORY_MODEL && ARCH_DISCONTIGMEM_ENABLE) || DISCONTIGMEM_MANUAL 67e1785e85SDave Hansen 68d41dee36SAndy Whitcroftconfig SPARSEMEM 69d41dee36SAndy Whitcroft def_bool y 70d41dee36SAndy Whitcroft depends on SPARSEMEM_MANUAL 71d41dee36SAndy Whitcroft 72e1785e85SDave Hansenconfig FLATMEM 73e1785e85SDave Hansen def_bool y 74d41dee36SAndy Whitcroft depends on (!DISCONTIGMEM && !SPARSEMEM) || FLATMEM_MANUAL 75d41dee36SAndy Whitcroft 76d41dee36SAndy Whitcroftconfig FLAT_NODE_MEM_MAP 77d41dee36SAndy Whitcroft def_bool y 78d41dee36SAndy Whitcroft depends on !SPARSEMEM 79e1785e85SDave Hansen 808174c430SNick Pigginconfig HAVE_GET_USER_PAGES_FAST 818174c430SNick Piggin bool 828174c430SNick Piggin 8393b7504eSDave Hansen# 8493b7504eSDave Hansen# Both the NUMA code and DISCONTIGMEM use arrays of pg_data_t's 8593b7504eSDave Hansen# to represent different areas of memory. This variable allows 8693b7504eSDave Hansen# those dependencies to exist individually. 8793b7504eSDave Hansen# 8893b7504eSDave Hansenconfig NEED_MULTIPLE_NODES 8993b7504eSDave Hansen def_bool y 9093b7504eSDave Hansen depends on DISCONTIGMEM || NUMA 91af705362SAndy Whitcroft 92af705362SAndy Whitcroftconfig HAVE_MEMORY_PRESENT 93af705362SAndy Whitcroft def_bool y 94d41dee36SAndy Whitcroft depends on ARCH_HAVE_MEMORY_PRESENT || SPARSEMEM 95802f192eSBob Picco 96802f192eSBob Picco# 973e347261SBob Picco# SPARSEMEM_EXTREME (which is the default) does some bootmem 983e347261SBob Picco# allocations when memory_present() is called. If this cannot 993e347261SBob Picco# be done on your architecture, select this option. However, 1003e347261SBob Picco# statically allocating the mem_section[] array can potentially 1013e347261SBob Picco# consume vast quantities of .bss, so be careful. 1023e347261SBob Picco# 1033e347261SBob Picco# This option will also potentially produce smaller runtime code 1043e347261SBob Picco# with gcc 3.4 and later. 1053e347261SBob Picco# 1063e347261SBob Piccoconfig SPARSEMEM_STATIC 1073e347261SBob Picco def_bool n 1083e347261SBob Picco 1093e347261SBob Picco# 11044c09201SMatt LaPlante# Architecture platforms which require a two level mem_section in SPARSEMEM 111802f192eSBob Picco# must select this option. This is usually for architecture platforms with 112802f192eSBob Picco# an extremely sparse physical address space. 113802f192eSBob Picco# 1143e347261SBob Piccoconfig SPARSEMEM_EXTREME 1153e347261SBob Picco def_bool y 1163e347261SBob Picco depends on SPARSEMEM && !SPARSEMEM_STATIC 1174c21e2f2SHugh Dickins 11829c71111SAndy Whitcroftconfig SPARSEMEM_VMEMMAP_ENABLE 11929c71111SAndy Whitcroft def_bool n 12029c71111SAndy Whitcroft 12129c71111SAndy Whitcroftconfig SPARSEMEM_VMEMMAP 122a5ee6daaSGeoff Levand bool "Sparse Memory virtual memmap" 123a5ee6daaSGeoff Levand depends on SPARSEMEM && SPARSEMEM_VMEMMAP_ENABLE 124a5ee6daaSGeoff Levand default y 125a5ee6daaSGeoff Levand help 126a5ee6daaSGeoff Levand SPARSEMEM_VMEMMAP uses a virtually mapped memmap to optimise 127a5ee6daaSGeoff Levand pfn_to_page and page_to_pfn operations. This is the most 128a5ee6daaSGeoff Levand efficient option when sufficient kernel resources are available. 12929c71111SAndy Whitcroft 1303947be19SDave Hansen# eventually, we can have this option just 'select SPARSEMEM' 1313947be19SDave Hansenconfig MEMORY_HOTPLUG 1323947be19SDave Hansen bool "Allow for memory hot-add" 133ec69acbbSKeith Mannthey depends on SPARSEMEM || X86_64_ACPI_NUMA 134b0cb1a19SRafael J. Wysocki depends on HOTPLUG && !HIBERNATION && ARCH_ENABLE_MEMORY_HOTPLUG 135421c175cSHeiko Carstens depends on (IA64 || X86 || PPC64 || SUPERH || S390) 1363947be19SDave Hansen 1373947be19SDave Hansencomment "Memory hotplug is currently incompatible with Software Suspend" 138b0cb1a19SRafael J. Wysocki depends on SPARSEMEM && HOTPLUG && HIBERNATION 1393947be19SDave Hansen 140ec69acbbSKeith Manntheyconfig MEMORY_HOTPLUG_SPARSE 141ec69acbbSKeith Mannthey def_bool y 142ec69acbbSKeith Mannthey depends on SPARSEMEM && MEMORY_HOTPLUG 143ec69acbbSKeith Mannthey 1440c0e6195SKAMEZAWA Hiroyukiconfig MEMORY_HOTREMOVE 1450c0e6195SKAMEZAWA Hiroyuki bool "Allow for memory hot remove" 1460c0e6195SKAMEZAWA Hiroyuki depends on MEMORY_HOTPLUG && ARCH_ENABLE_MEMORY_HOTREMOVE 1470c0e6195SKAMEZAWA Hiroyuki depends on MIGRATION 1480c0e6195SKAMEZAWA Hiroyuki 149e20b8ccaSChristoph Lameter# 150e20b8ccaSChristoph Lameter# If we have space for more page flags then we can enable additional 151e20b8ccaSChristoph Lameter# optimizations and functionality. 152e20b8ccaSChristoph Lameter# 153e20b8ccaSChristoph Lameter# Regular Sparsemem takes page flag bits for the sectionid if it does not 154e20b8ccaSChristoph Lameter# use a virtual memmap. Disable extended page flags for 32 bit platforms 155e20b8ccaSChristoph Lameter# that require the use of a sectionid in the page flags. 156e20b8ccaSChristoph Lameter# 157e20b8ccaSChristoph Lameterconfig PAGEFLAGS_EXTENDED 158e20b8ccaSChristoph Lameter def_bool y 159e20b8ccaSChristoph Lameter depends on 64BIT || SPARSEMEM_VMEMMAP || !NUMA || !SPARSEMEM 160e20b8ccaSChristoph Lameter 1614c21e2f2SHugh Dickins# Heavily threaded applications may benefit from splitting the mm-wide 1624c21e2f2SHugh Dickins# page_table_lock, so that faults on different parts of the user address 1634c21e2f2SHugh Dickins# space can be handled with less contention: split it at this NR_CPUS. 1644c21e2f2SHugh Dickins# Default to 4 for wider testing, though 8 might be more appropriate. 1654c21e2f2SHugh Dickins# ARM's adjust_pte (unused if VIPT) depends on mm-wide page_table_lock. 1667b6ac9dfSHugh Dickins# PA-RISC 7xxx's spinlock_t would enlarge struct page from 32 to 44 bytes. 1674c21e2f2SHugh Dickins# 1684c21e2f2SHugh Dickinsconfig SPLIT_PTLOCK_CPUS 1694c21e2f2SHugh Dickins int 1704c21e2f2SHugh Dickins default "4096" if ARM && !CPU_CACHE_VIPT 1717b6ac9dfSHugh Dickins default "4096" if PARISC && !PA20 1724c21e2f2SHugh Dickins default "4" 1737cbe34cfSChristoph Lameter 1747cbe34cfSChristoph Lameter# 1757cbe34cfSChristoph Lameter# support for page migration 1767cbe34cfSChristoph Lameter# 1777cbe34cfSChristoph Lameterconfig MIGRATION 178b20a3503SChristoph Lameter bool "Page migration" 1796c5240aeSChristoph Lameter def_bool y 18083d1674aSGerald Schaefer depends on NUMA || ARCH_ENABLE_MEMORY_HOTREMOVE 181b20a3503SChristoph Lameter help 182b20a3503SChristoph Lameter Allows the migration of the physical location of pages of processes 183b20a3503SChristoph Lameter while the virtual addresses are not changed. This is useful for 184b20a3503SChristoph Lameter example on NUMA systems to put pages nearer to the processors accessing 185b20a3503SChristoph Lameter the page. 1866550e07fSGreg Kroah-Hartman 1876550e07fSGreg Kroah-Hartmanconfig RESOURCES_64BIT 1886550e07fSGreg Kroah-Hartman bool "64 bit Memory and IO resources (EXPERIMENTAL)" if (!64BIT && EXPERIMENTAL) 1896550e07fSGreg Kroah-Hartman default 64BIT 1906550e07fSGreg Kroah-Hartman help 1916550e07fSGreg Kroah-Hartman This option allows memory and IO resources to be 64 bit. 1924b51d669SChristoph Lameter 1934b51d669SChristoph Lameterconfig ZONE_DMA_FLAG 1944b51d669SChristoph Lameter int 1954b51d669SChristoph Lameter default "0" if !ZONE_DMA 1964b51d669SChristoph Lameter default "1" 1974b51d669SChristoph Lameter 1982a7326b5SChristoph Lameterconfig BOUNCE 1992a7326b5SChristoph Lameter def_bool y 2002a7326b5SChristoph Lameter depends on BLOCK && MMU && (ZONE_DMA || HIGHMEM) 2012a7326b5SChristoph Lameter 2026225e937SChristoph Lameterconfig NR_QUICK 2036225e937SChristoph Lameter int 2046225e937SChristoph Lameter depends on QUICKLIST 20538510754SHaavard Skinnemoen default "2" if SUPERH || AVR32 2066225e937SChristoph Lameter default "1" 207f057eac0SStephen Rothwell 208f057eac0SStephen Rothwellconfig VIRT_TO_BUS 209f057eac0SStephen Rothwell def_bool y 210f057eac0SStephen Rothwell depends on !ARCH_NO_VIRT_TO_BUS 211*cddb8a5cSAndrea Arcangeli 212*cddb8a5cSAndrea Arcangeliconfig MMU_NOTIFIER 213*cddb8a5cSAndrea Arcangeli bool 214