blob: 45134dc2385424fc3ce0ecd01ab20a221f7d8140 [file] [log] [blame]
Yasunori Goto6867c932007-08-10 13:00:59 -07001==============
2Memory Hotplug
3==============
4
Yasunori Goto10020ca2007-10-21 16:41:36 -07005Created: Jul 28 2007
6Add description of notifier of memory hotplug Oct 11 2007
Yasunori Goto6867c932007-08-10 13:00:59 -07007
8This document is about memory hotplug including how-to-use and current status.
9Because Memory Hotplug is still under development, contents of this text will
10be changed often.
11
121. Introduction
13 1.1 purpose of memory hotplug
14 1.2. Phases of memory hotplug
15 1.3. Unit of Memory online/offline operation
162. Kernel Configuration
173. sysfs files for memory hotplug
184. Physical memory hot-add phase
19 4.1 Hardware(Firmware) Support
20 4.2 Notify memory hot-add event by hand
215. Logical Memory hot-add phase
22 5.1. State of memory
23 5.2. How to online memory
246. Logical memory remove
25 6.1 Memory offline and ZONE_MOVABLE
26 6.2. How to offline memory
277. Physical memory remove
Yasunori Goto10020ca2007-10-21 16:41:36 -0700288. Memory hotplug event notifier
299. Future Work List
Yasunori Goto6867c932007-08-10 13:00:59 -070030
31Note(1): x86_64's has special implementation for memory hotplug.
32 This text does not describe it.
33Note(2): This text assumes that sysfs is mounted at /sys.
34
35
36---------------
371. Introduction
38---------------
39
401.1 purpose of memory hotplug
41------------
42Memory Hotplug allows users to increase/decrease the amount of memory.
43Generally, there are two purposes.
44
45(A) For changing the amount of memory.
46 This is to allow a feature like capacity on demand.
47(B) For installing/removing DIMMs or NUMA-nodes physically.
48 This is to exchange DIMMs/NUMA-nodes, reduce power consumption, etc.
49
50(A) is required by highly virtualized environments and (B) is required by
51hardware which supports memory power management.
52
53Linux memory hotplug is designed for both purpose.
54
55
561.2. Phases of memory hotplug
57---------------
58There are 2 phases in Memory Hotplug.
59 1) Physical Memory Hotplug phase
60 2) Logical Memory Hotplug phase.
61
62The First phase is to communicate hardware/firmware and make/erase
63environment for hotplugged memory. Basically, this phase is necessary
64for the purpose (B), but this is good phase for communication between
65highly virtualized environments too.
66
67When memory is hotplugged, the kernel recognizes new memory, makes new memory
68management tables, and makes sysfs files for new memory's operation.
69
70If firmware supports notification of connection of new memory to OS,
71this phase is triggered automatically. ACPI can notify this event. If not,
72"probe" operation by system administration is used instead.
73(see Section 4.).
74
75Logical Memory Hotplug phase is to change memory state into
Matt LaPlante19f59462009-04-27 15:06:31 +020076available/unavailable for users. Amount of memory from user's view is
Yasunori Goto6867c932007-08-10 13:00:59 -070077changed by this phase. The kernel makes all memory in it as free pages
78when a memory range is available.
79
80In this document, this phase is described as online/offline.
81
Matt LaPlante19f59462009-04-27 15:06:31 +020082Logical Memory Hotplug phase is triggered by write of sysfs file by system
Yasunori Goto6867c932007-08-10 13:00:59 -070083administrator. For the hot-add case, it must be executed after Physical Hotplug
84phase by hand.
85(However, if you writes udev's hotplug scripts for memory hotplug, these
86 phases can be execute in seamless way.)
87
88
891.3. Unit of Memory online/offline operation
90------------
Li Zhong56a3c652014-06-04 16:07:03 -070091Memory hotplug uses SPARSEMEM memory model which allows memory to be divided
92into chunks of the same size. These chunks are called "sections". The size of
93a memory section is architecture dependent. For example, power uses 16MiB, ia64
94uses 1GiB.
Yasunori Goto6867c932007-08-10 13:00:59 -070095
Li Zhong56a3c652014-06-04 16:07:03 -070096Memory sections are combined into chunks referred to as "memory blocks". The
97size of a memory block is architecture dependent and represents the logical
98unit upon which memory online/offline operations are to be performed. The
99default size of a memory block is the same as memory section size unless an
100architecture specifies otherwise. (see Section 3.)
101
102To determine the size (in bytes) of a memory block please read this file:
Yasunori Goto6867c932007-08-10 13:00:59 -0700103
104/sys/devices/system/memory/block_size_bytes
105
Yasunori Goto6867c932007-08-10 13:00:59 -0700106
107-----------------------
1082. Kernel Configuration
109-----------------------
110To use memory hotplug feature, kernel must be compiled with following
111config options.
112
113- For all memory hotplug
114 Memory model -> Sparse Memory (CONFIG_SPARSEMEM)
115 Allow for memory hot-add (CONFIG_MEMORY_HOTPLUG)
116
117- To enable memory removal, the followings are also necessary
118 Allow for memory hot remove (CONFIG_MEMORY_HOTREMOVE)
119 Page Migration (CONFIG_MIGRATION)
120
121- For ACPI memory hotplug, the followings are also necessary
122 Memory hotplug (under ACPI Support menu) (CONFIG_ACPI_HOTPLUG_MEMORY)
123 This option can be kernel module.
124
125- As a related configuration, if your box has a feature of NUMA-node hotplug
126 via ACPI, then this option is necessary too.
127 ACPI0004,PNP0A05 and PNP0A06 Container Driver (under ACPI Support menu)
128 (CONFIG_ACPI_CONTAINER).
129 This option can be kernel module too.
130
Li Zhong56a3c652014-06-04 16:07:03 -0700131
Yasunori Goto6867c932007-08-10 13:00:59 -0700132--------------------------------
Li Zhong56a3c652014-06-04 16:07:03 -07001333 sysfs files for memory hotplug
Yasunori Goto6867c932007-08-10 13:00:59 -0700134--------------------------------
Li Zhong56a3c652014-06-04 16:07:03 -0700135All memory blocks have their device information in sysfs. Each memory block
136is described under /sys/devices/system/memory as
Yasunori Goto6867c932007-08-10 13:00:59 -0700137
138/sys/devices/system/memory/memoryXXX
Li Zhong56a3c652014-06-04 16:07:03 -0700139(XXX is the memory block id.)
Yasunori Goto6867c932007-08-10 13:00:59 -0700140
Li Zhong56a3c652014-06-04 16:07:03 -0700141For the memory block covered by the sysfs directory. It is expected that all
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600142memory sections in this range are present and no memory holes exist in the
143range. Currently there is no way to determine if there is a memory hole, but
144the existence of one should not affect the hotplug capabilities of the memory
145block.
Yasunori Goto6867c932007-08-10 13:00:59 -0700146
Li Zhong56a3c652014-06-04 16:07:03 -0700147For example, assume 1GiB memory block size. A device for a memory starting at
Yasunori Goto6867c932007-08-10 13:00:59 -07001480x100000000 is /sys/device/system/memory/memory4
149(0x100000000 / 1Gib = 4)
150This device covers address range [0x100000000 ... 0x140000000)
151
Li Zhong56a3c652014-06-04 16:07:03 -0700152Under each memory block, you can see 4 files:
Yasunori Goto6867c932007-08-10 13:00:59 -0700153
Li Zhong56a3c652014-06-04 16:07:03 -0700154/sys/devices/system/memory/memoryXXX/phys_index
Yasunori Goto6867c932007-08-10 13:00:59 -0700155/sys/devices/system/memory/memoryXXX/phys_device
156/sys/devices/system/memory/memoryXXX/state
Gary Hadec04fc582009-01-06 14:39:14 -0800157/sys/devices/system/memory/memoryXXX/removable
Yasunori Goto6867c932007-08-10 13:00:59 -0700158
Li Zhong56a3c652014-06-04 16:07:03 -0700159'phys_index' : read-only and contains memory block id, same as XXX.
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600160'state' : read-write
161 at read: contains online/offline state of memory.
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800162 at write: user can specify "online_kernel",
163 "online_movable", "online", "offline" command
Xishi Qiu59e68a12013-08-22 17:42:44 +0800164 which will be performed on all sections in the block.
Nathan Fontenot0c2c99b2011-01-20 10:43:34 -0600165'phys_device' : read-only: designed to show the name of physical memory
166 device. This is not well implemented now.
167'removable' : read-only: contains an integer value indicating
168 whether the memory block is removable or not
169 removable. A value of 1 indicates that the memory
170 block is removable and a value of 0 indicates that
171 it is not removable. A memory block is removable only if
172 every section in the block is removable.
Yasunori Goto6867c932007-08-10 13:00:59 -0700173
174NOTE:
175 These directories/files appear after physical memory hotplug phase.
176
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800177If CONFIG_NUMA is enabled the memoryXXX/ directories can also be accessed
178via symbolic links located in the /sys/devices/system/node/node* directories.
179
180For example:
Gary Hadec04fc582009-01-06 14:39:14 -0800181/sys/devices/system/node/node0/memory9 -> ../../memory/memory9
Yasunori Goto6867c932007-08-10 13:00:59 -0700182
Alex Chiangdee5d0d2009-12-14 17:59:05 -0800183A backlink will also be created:
184/sys/devices/system/memory/memory9/node0 -> ../../node/node0
185
Li Zhong56a3c652014-06-04 16:07:03 -0700186
Yasunori Goto6867c932007-08-10 13:00:59 -0700187--------------------------------
1884. Physical memory hot-add phase
189--------------------------------
190
1914.1 Hardware(Firmware) Support
192------------
193On x86_64/ia64 platform, memory hotplug by ACPI is supported.
194
195In general, the firmware (ACPI) which supports memory hotplug defines
196memory class object of _HID "PNP0C80". When a notify is asserted to PNP0C80,
197Linux's ACPI handler does hot-add memory to the system and calls a hotplug udev
198script. This will be done automatically.
199
200But scripts for memory hotplug are not contained in generic udev package(now).
201You may have to write it by yourself or online/offline memory by hand.
202Please see "How to online memory", "How to offline memory" in this text.
203
204If firmware supports NUMA-node hotplug, and defines an object _HID "ACPI0004",
205"PNP0A05", or "PNP0A06", notification is asserted to it, and ACPI handler
206calls hotplug code for all of objects which are defined in it.
207If memory device is found, memory hotplug code will be called.
208
209
2104.2 Notify memory hot-add event by hand
211------------
David Rientjes7cdb0d22014-06-23 13:22:03 -0700212On some architectures, the firmware may not notify the kernel of a memory
213hotplug event. Therefore, the memory "probe" interface is supported to
214explicitly notify the kernel. This interface depends on
215CONFIG_ARCH_MEMORY_PROBE and can be configured on powerpc, sh, and x86
216if hotplug is supported, although for x86 this should be handled by ACPI
217notification.
Yasunori Goto6867c932007-08-10 13:00:59 -0700218
219Probe interface is located at
220/sys/devices/system/memory/probe
221
222You can tell the physical address of new memory to the kernel by
223
224% echo start_address_of_new_memory > /sys/devices/system/memory/probe
225
Li Zhong56a3c652014-06-04 16:07:03 -0700226Then, [start_address_of_new_memory, start_address_of_new_memory +
227memory_block_size] memory range is hot-added. In this case, hotplug script is
228not called (in current implementation). You'll have to online memory by
229yourself. Please see "How to online memory" in this text.
Yasunori Goto6867c932007-08-10 13:00:59 -0700230
231
232------------------------------
2335. Logical Memory hot-add phase
234------------------------------
235
2365.1. State of memory
237------------
Li Zhong56a3c652014-06-04 16:07:03 -0700238To see (online/offline) state of a memory block, read 'state' file.
Yasunori Goto6867c932007-08-10 13:00:59 -0700239
240% cat /sys/device/system/memory/memoryXXX/state
241
242
Li Zhong56a3c652014-06-04 16:07:03 -0700243If the memory block is online, you'll read "online".
244If the memory block is offline, you'll read "offline".
Yasunori Goto6867c932007-08-10 13:00:59 -0700245
246
2475.2. How to online memory
248------------
249Even if the memory is hot-added, it is not at ready-to-use state.
Li Zhong56a3c652014-06-04 16:07:03 -0700250For using newly added memory, you have to "online" the memory block.
Yasunori Goto6867c932007-08-10 13:00:59 -0700251
Li Zhong56a3c652014-06-04 16:07:03 -0700252For onlining, you have to write "online" to the memory block's state file as:
Yasunori Goto6867c932007-08-10 13:00:59 -0700253
254% echo online > /sys/devices/system/memory/memoryXXX/state
255
Li Zhong56a3c652014-06-04 16:07:03 -0700256This onlining will not change the ZONE type of the target memory block,
257If the memory block is in ZONE_NORMAL, you can change it to ZONE_MOVABLE:
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800258
259% echo online_movable > /sys/devices/system/memory/memoryXXX/state
Li Zhong56a3c652014-06-04 16:07:03 -0700260(NOTE: current limit: this memory block must be adjacent to ZONE_MOVABLE)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800261
Li Zhong56a3c652014-06-04 16:07:03 -0700262And if the memory block is in ZONE_MOVABLE, you can change it to ZONE_NORMAL:
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800263
264% echo online_kernel > /sys/devices/system/memory/memoryXXX/state
Li Zhong56a3c652014-06-04 16:07:03 -0700265(NOTE: current limit: this memory block must be adjacent to ZONE_NORMAL)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800266
Li Zhong56a3c652014-06-04 16:07:03 -0700267After this, memory block XXX's state will be 'online' and the amount of
Yasunori Goto6867c932007-08-10 13:00:59 -0700268available memory will be increased.
269
270Currently, newly added memory is added as ZONE_NORMAL (for powerpc, ZONE_DMA).
271This may be changed in future.
272
273
274
275------------------------
2766. Logical memory remove
277------------------------
278
2796.1 Memory offline and ZONE_MOVABLE
280------------
281Memory offlining is more complicated than memory online. Because memory offline
Li Zhong56a3c652014-06-04 16:07:03 -0700282has to make the whole memory block be unused, memory offline can fail if
283the memory block includes memory which cannot be freed.
Yasunori Goto6867c932007-08-10 13:00:59 -0700284
285In general, memory offline can use 2 techniques.
286
Li Zhong56a3c652014-06-04 16:07:03 -0700287(1) reclaim and free all memory in the memory block.
288(2) migrate all pages in the memory block.
Yasunori Goto6867c932007-08-10 13:00:59 -0700289
290In the current implementation, Linux's memory offline uses method (2), freeing
Li Zhong56a3c652014-06-04 16:07:03 -0700291all pages in the memory block by page migration. But not all pages are
Yasunori Goto6867c932007-08-10 13:00:59 -0700292migratable. Under current Linux, migratable pages are anonymous pages and
Li Zhong56a3c652014-06-04 16:07:03 -0700293page caches. For offlining a memory block by migration, the kernel has to
294guarantee that the memory block contains only migratable pages.
Yasunori Goto6867c932007-08-10 13:00:59 -0700295
Li Zhong56a3c652014-06-04 16:07:03 -0700296Now, a boot option for making a memory block which consists of migratable pages
297is supported. By specifying "kernelcore=" or "movablecore=" boot option, you can
Yasunori Goto6867c932007-08-10 13:00:59 -0700298create ZONE_MOVABLE...a zone which is just used for movable pages.
299(See also Documentation/kernel-parameters.txt)
300
301Assume the system has "TOTAL" amount of memory at boot time, this boot option
302creates ZONE_MOVABLE as following.
303
3041) When kernelcore=YYYY boot option is used,
305 Size of memory not for movable pages (not for offline) is YYYY.
306 Size of memory for movable pages (for offline) is TOTAL-YYYY.
307
3082) When movablecore=ZZZZ boot option is used,
309 Size of memory not for movable pages (not for offline) is TOTAL - ZZZZ.
310 Size of memory for movable pages (for offline) is ZZZZ.
311
312
Li Zhong56a3c652014-06-04 16:07:03 -0700313Note: Unfortunately, there is no information to show which memory block belongs
Yasunori Goto6867c932007-08-10 13:00:59 -0700314to ZONE_MOVABLE. This is TBD.
315
316
3176.2. How to offline memory
318------------
Li Zhong56a3c652014-06-04 16:07:03 -0700319You can offline a memory block by using the same sysfs interface that was used
320in memory onlining.
Yasunori Goto6867c932007-08-10 13:00:59 -0700321
322% echo offline > /sys/devices/system/memory/memoryXXX/state
323
Li Zhong56a3c652014-06-04 16:07:03 -0700324If offline succeeds, the state of the memory block is changed to be "offline".
Yasunori Goto6867c932007-08-10 13:00:59 -0700325If it fails, some error core (like -EBUSY) will be returned by the kernel.
Li Zhong56a3c652014-06-04 16:07:03 -0700326Even if a memory block does not belong to ZONE_MOVABLE, you can try to offline
327it. If it doesn't contain 'unmovable' memory, you'll get success.
Yasunori Goto6867c932007-08-10 13:00:59 -0700328
Li Zhong56a3c652014-06-04 16:07:03 -0700329A memory block under ZONE_MOVABLE is considered to be able to be offlined
330easily. But under some busy state, it may return -EBUSY. Even if a memory
331block cannot be offlined due to -EBUSY, you can retry offlining it and may be
332able to offline it (or not). (For example, a page is referred to by some kernel
333internal call and released soon.)
Yasunori Goto6867c932007-08-10 13:00:59 -0700334
335Consideration:
336Memory hotplug's design direction is to make the possibility of memory offlining
337higher and to guarantee unplugging memory under any situation. But it needs
338more work. Returning -EBUSY under some situation may be good because the user
339can decide to retry more or not by himself. Currently, memory offlining code
340does some amount of retry with 120 seconds timeout.
341
342-------------------------
3437. Physical memory remove
344-------------------------
345Need more implementation yet....
346 - Notification completion of remove works by OS to firmware.
347 - Guard from remove if not yet.
348
Yasunori Goto10020ca2007-10-21 16:41:36 -0700349--------------------------------
3508. Memory hotplug event notifier
351--------------------------------
Masanari Iidac94bed8e2012-04-10 00:22:13 +0900352Memory hotplug has event notifier. There are 6 types of notification.
Yasunori Goto10020ca2007-10-21 16:41:36 -0700353
354MEMORY_GOING_ONLINE
355 Generated before new memory becomes available in order to be able to
356 prepare subsystems to handle memory. The page allocator is still unable
357 to allocate from the new memory.
358
359MEMORY_CANCEL_ONLINE
360 Generated if MEMORY_GOING_ONLINE fails.
361
362MEMORY_ONLINE
Matt LaPlante19f59462009-04-27 15:06:31 +0200363 Generated when memory has successfully brought online. The callback may
Yasunori Goto10020ca2007-10-21 16:41:36 -0700364 allocate pages from the new memory.
365
366MEMORY_GOING_OFFLINE
367 Generated to begin the process of offlining memory. Allocations are no
368 longer possible from the memory but some of the memory to be offlined
369 is still in use. The callback can be used to free memory known to a
Li Zhong56a3c652014-06-04 16:07:03 -0700370 subsystem from the indicated memory block.
Yasunori Goto10020ca2007-10-21 16:41:36 -0700371
372MEMORY_CANCEL_OFFLINE
373 Generated if MEMORY_GOING_OFFLINE fails. Memory is available again from
Li Zhong56a3c652014-06-04 16:07:03 -0700374 the memory block that we attempted to offline.
Yasunori Goto10020ca2007-10-21 16:41:36 -0700375
376MEMORY_OFFLINE
377 Generated after offlining memory is complete.
378
379A callback routine can be registered by
380 hotplug_memory_notifier(callback_func, priority)
381
382The second argument of callback function (action) is event types of above.
383The third argument is passed by pointer of struct memory_notify.
384
385struct memory_notify {
386 unsigned long start_pfn;
387 unsigned long nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -0800388 int status_change_nid_normal;
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800389 int status_change_nid_high;
Matt LaPlante19f59462009-04-27 15:06:31 +0200390 int status_change_nid;
Yasunori Goto10020ca2007-10-21 16:41:36 -0700391}
392
393start_pfn is start_pfn of online/offline memory.
394nr_pages is # of pages of online/offline memory.
Lai Jiangshand9713672012-12-11 16:01:03 -0800395status_change_nid_normal is set node id when N_NORMAL_MEMORY of nodemask
396is (will be) set/clear, if this is -1, then nodemask status is not changed.
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800397status_change_nid_high is set node id when N_HIGH_MEMORY of nodemask
398is (will be) set/clear, if this is -1, then nodemask status is not changed.
399status_change_nid is set node id when N_MEMORY of nodemask is (will be)
Yasunori Goto10020ca2007-10-21 16:41:36 -0700400set/clear. It means a new(memoryless) node gets new memory by online and a
401node loses all memory. If this is -1, then nodemask status is not changed.
Lai Jiangshand9713672012-12-11 16:01:03 -0800402If status_changed_nid* >= 0, callback should create/discard structures for the
Yasunori Goto10020ca2007-10-21 16:41:36 -0700403node if necessary.
404
Yasunori Goto6867c932007-08-10 13:00:59 -0700405--------------
Yasunori Goto10020ca2007-10-21 16:41:36 -07004069. Future Work
Yasunori Goto6867c932007-08-10 13:00:59 -0700407--------------
408 - allowing memory hot-add to ZONE_MOVABLE. maybe we need some switch like
409 sysctl or new control file.
Li Zhong56a3c652014-06-04 16:07:03 -0700410 - showing memory block and physical device relationship.
411 - showing memory block is under ZONE_MOVABLE or not
Yasunori Goto6867c932007-08-10 13:00:59 -0700412 - test and make it better memory offlining.
413 - support HugeTLB page migration and offlining.
414 - memmap removing at memory offline.
415 - physical remove memory.
416