2005-06-23 11:07:49 +04:00
|
|
|
config SELECT_MEMORY_MODEL
|
|
|
|
def_bool y
|
|
|
|
depends on EXPERIMENTAL || ARCH_SELECT_MEMORY_MODEL
|
|
|
|
|
2005-06-23 11:07:42 +04:00
|
|
|
choice
|
|
|
|
prompt "Memory model"
|
2005-06-23 11:07:49 +04:00
|
|
|
depends on SELECT_MEMORY_MODEL
|
|
|
|
default DISCONTIGMEM_MANUAL if ARCH_DISCONTIGMEM_DEFAULT
|
|
|
|
default FLATMEM_MANUAL
|
2005-06-23 11:07:42 +04:00
|
|
|
|
2005-06-23 11:07:49 +04:00
|
|
|
config FLATMEM_MANUAL
|
2005-06-23 11:07:42 +04:00
|
|
|
bool "Flat Memory"
|
|
|
|
depends on !ARCH_DISCONTIGMEM_ENABLE || ARCH_FLATMEM_ENABLE
|
|
|
|
help
|
|
|
|
This option allows you to change some of the ways that
|
|
|
|
Linux manages its memory internally. Most users will
|
|
|
|
only have one option here: FLATMEM. This is normal
|
|
|
|
and a correct option.
|
|
|
|
|
|
|
|
If unsure, choose this option over any other.
|
|
|
|
|
2005-06-23 11:07:49 +04:00
|
|
|
config DISCONTIGMEM_MANUAL
|
2005-06-23 11:07:42 +04:00
|
|
|
bool "Discontigious Memory"
|
|
|
|
depends on ARCH_DISCONTIGMEM_ENABLE
|
|
|
|
help
|
|
|
|
If unsure, choose "Flat Memory" over this option.
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2005-06-23 11:07:49 +04:00
|
|
|
config DISCONTIGMEM
|
|
|
|
def_bool y
|
|
|
|
depends on (!SELECT_MEMORY_MODEL && ARCH_DISCONTIGMEM_ENABLE) || DISCONTIGMEM_MANUAL
|
|
|
|
|
|
|
|
config FLATMEM
|
|
|
|
def_bool y
|
|
|
|
depends on !DISCONTIGMEM || FLATMEM_MANUAL
|
|
|
|
|
2005-06-23 11:07:47 +04:00
|
|
|
#
|
|
|
|
# Both the NUMA code and DISCONTIGMEM use arrays of pg_data_t's
|
|
|
|
# to represent different areas of memory. This variable allows
|
|
|
|
# those dependencies to exist individually.
|
|
|
|
#
|
|
|
|
config NEED_MULTIPLE_NODES
|
|
|
|
def_bool y
|
|
|
|
depends on DISCONTIGMEM || NUMA
|