Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1496803
| From | Reza Arbab <arbab@linux.vnet.ibm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v4 5/5] mm: enable CONFIG_MOVABLE_NODE on non-x86 arches |
| Date | 2016-10-06 20:40 +0200 |
| Message-ID | <splKi-4z5-17@gated-at.bofh.it> (permalink) |
| References | <splKh-4z5-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
To support movable memory nodes (CONFIG_MOVABLE_NODE), at least one of the following must be true: 1. We're on x86. This arch has the capability to identify movable nodes at boot by parsing the ACPI SRAT, if the movable_node option is used. 2. Our config supports memory hotplug, which means that a movable node can be created by hotplugging all of its memory into ZONE_MOVABLE. Fix the Kconfig definition of CONFIG_MOVABLE_NODE, which currently recognizes (1), but not (2). Signed-off-by: Reza Arbab <arbab@linux.vnet.ibm.com> --- mm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/Kconfig b/mm/Kconfig index be0ee11..5d0818f 100644 --- a/mm/Kconfig +++ b/mm/Kconfig @@ -153,7 +153,7 @@ config MOVABLE_NODE bool "Enable to assign a node which has only movable memory" depends on HAVE_MEMBLOCK depends on NO_BOOTMEM - depends on X86_64 + depends on X86_64 || MEMORY_HOTPLUG depends on NUMA default n help -- 1.8.3.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v4 5/5] mm: enable CONFIG_MOVABLE_NODE on non-x86 arches Reza Arbab <arbab@linux.vnet.ibm.com> - 2016-10-06 20:40 +0200 Re: [PATCH v4 5/5] mm: enable CONFIG_MOVABLE_NODE on non-x86 arches "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com> - 2016-10-07 08:50 +0200 Re: [PATCH v4 5/5] mm: enable CONFIG_MOVABLE_NODE on non-x86 arches Balbir Singh <bsingharora@gmail.com> - 2016-10-11 15:20 +0200
csiph-web