]> bbs.cooldavid.org Git - net-next-2.6.git/blame - Documentation/cgroups/memory.txt
memcg: handle panic_on_oom=always case
[net-next-2.6.git] / Documentation / cgroups / memory.txt
CommitLineData
00f0b825
BS
1Memory Resource Controller
2
3NOTE: The Memory Resource Controller has been generically been referred
4to as the memory controller in this document. Do not confuse memory controller
5used here with the memory controller that is used in hardware.
1b6df3aa
BS
6
7Salient features
8
c863d835
BR
9a. Enable control of Anonymous, Page Cache (mapped and unmapped) and
10 Swap Cache memory pages.
1b6df3aa
BS
11b. The infrastructure allows easy addition of other types of memory to control
12c. Provides *zero overhead* for non memory controller users
13d. Provides a double LRU: global memory pressure causes reclaim from the
14 global LRU; a cgroup on hitting a limit, reclaims from the per
15 cgroup LRU
16
1b6df3aa
BS
17Benefits and Purpose of the memory controller
18
19The memory controller isolates the memory behaviour of a group of tasks
20from the rest of the system. The article on LWN [12] mentions some probable
21uses of the memory controller. The memory controller can be used to
22
23a. Isolate an application or a group of applications
24 Memory hungry applications can be isolated and limited to a smaller
25 amount of memory.
26b. Create a cgroup with limited amount of memory, this can be used
27 as a good alternative to booting with mem=XXXX.
28c. Virtualization solutions can control the amount of memory they want
29 to assign to a virtual machine instance.
30d. A CD/DVD burner could control the amount of memory used by the
31 rest of the system to ensure that burning does not fail due to lack
32 of available memory.
33e. There are several other use cases, find one or use the controller just
34 for fun (to learn and hack on the VM subsystem).
35
361. History
37
38The memory controller has a long history. A request for comments for the memory
39controller was posted by Balbir Singh [1]. At the time the RFC was posted
40there were several implementations for memory control. The goal of the
41RFC was to build consensus and agreement for the minimal features required
42for memory control. The first RSS controller was posted by Balbir Singh[2]
43in Feb 2007. Pavel Emelianov [3][4][5] has since posted three versions of the
44RSS controller. At OLS, at the resource management BoF, everyone suggested
45that we handle both page cache and RSS together. Another request was raised
46to allow user space handling of OOM. The current memory controller is
47at version 6; it combines both mapped (RSS) and unmapped Page
48Cache Control [11].
49
502. Memory Control
51
52Memory is a unique resource in the sense that it is present in a limited
53amount. If a task requires a lot of CPU processing, the task can spread
54its processing over a period of hours, days, months or years, but with
55memory, the same physical memory needs to be reused to accomplish the task.
56
57The memory controller implementation has been divided into phases. These
58are:
59
601. Memory controller
612. mlock(2) controller
623. Kernel user memory accounting and slab control
634. user mappings length controller
64
65The memory controller is the first controller developed.
66
672.1. Design
68
69The core of the design is a counter called the res_counter. The res_counter
70tracks the current memory usage and limit of the group of processes associated
71with the controller. Each cgroup has a memory controller specific data
72structure (mem_cgroup) associated with it.
73
742.2. Accounting
75
76 +--------------------+
77 | mem_cgroup |
78 | (res_counter) |
79 +--------------------+
80 / ^ \
81 / | \
82 +---------------+ | +---------------+
83 | mm_struct | |.... | mm_struct |
84 | | | | |
85 +---------------+ | +---------------+
86 |
87 + --------------+
88 |
89 +---------------+ +------+--------+
90 | page +----------> page_cgroup|
91 | | | |
92 +---------------+ +---------------+
93
94 (Figure 1: Hierarchy of Accounting)
95
96
97Figure 1 shows the important aspects of the controller
98
991. Accounting happens per cgroup
1002. Each mm_struct knows about which cgroup it belongs to
1013. Each page has a pointer to the page_cgroup, which in turn knows the
102 cgroup it belongs to
103
104The accounting is done as follows: mem_cgroup_charge() is invoked to setup
105the necessary data structures and check if the cgroup that is being charged
106is over its limit. If it is then reclaim is invoked on the cgroup.
107More details can be found in the reclaim section of this document.
108If everything goes well, a page meta-data-structure called page_cgroup is
109allocated and associated with the page. This routine also adds the page to
110the per cgroup LRU.
111
1122.2.1 Accounting details
113
5b4e655e
KH
114All mapped anon pages (RSS) and cache pages (Page Cache) are accounted.
115(some pages which never be reclaimable and will not be on global LRU
116 are not accounted. we just accounts pages under usual vm management.)
117
118RSS pages are accounted at page_fault unless they've already been accounted
119for earlier. A file page will be accounted for as Page Cache when it's
120inserted into inode (radix-tree). While it's mapped into the page tables of
121processes, duplicate accounting is carefully avoided.
122
123A RSS page is unaccounted when it's fully unmapped. A PageCache page is
124unaccounted when it's removed from radix-tree.
125
126At page migration, accounting information is kept.
127
128Note: we just account pages-on-lru because our purpose is to control amount
129of used pages. not-on-lru pages are tend to be out-of-control from vm view.
1b6df3aa
BS
130
1312.3 Shared Page Accounting
132
133Shared pages are accounted on the basis of the first touch approach. The
134cgroup that first touches a page is accounted for the page. The principle
135behind this approach is that a cgroup that aggressively uses a shared
136page will eventually get charged for it (once it is uncharged from
137the cgroup that brought it in -- this will happen on memory pressure).
138
8c7c6e34
KH
139Exception: If CONFIG_CGROUP_CGROUP_MEM_RES_CTLR_SWAP is not used..
140When you do swapoff and make swapped-out pages of shmem(tmpfs) to
d13d1443
KH
141be backed into memory in force, charges for pages are accounted against the
142caller of swapoff rather than the users of shmem.
143
144
8c7c6e34
KH
1452.4 Swap Extension (CONFIG_CGROUP_MEM_RES_CTLR_SWAP)
146Swap Extension allows you to record charge for swap. A swapped-in page is
147charged back to original page allocator if possible.
148
149When swap is accounted, following files are added.
150 - memory.memsw.usage_in_bytes.
151 - memory.memsw.limit_in_bytes.
152
153usage of mem+swap is limited by memsw.limit_in_bytes.
154
22a668d7 155* why 'mem+swap' rather than swap.
8c7c6e34
KH
156The global LRU(kswapd) can swap out arbitrary pages. Swap-out means
157to move account from memory to swap...there is no change in usage of
22a668d7
KH
158mem+swap. In other words, when we want to limit the usage of swap without
159affecting global LRU, mem+swap limit is better than just limiting swap from
160OS point of view.
161
162* What happens when a cgroup hits memory.memsw.limit_in_bytes
163When a cgroup his memory.memsw.limit_in_bytes, it's useless to do swap-out
164in this cgroup. Then, swap-out will not be done by cgroup routine and file
165caches are dropped. But as mentioned above, global LRU can do swapout memory
166from it for sanity of the system's memory management state. You can't forbid
167it by cgroup.
8c7c6e34
KH
168
1692.5 Reclaim
1b6df3aa
BS
170
171Each cgroup maintains a per cgroup LRU that consists of an active
172and inactive list. When a cgroup goes over its limit, we first try
173to reclaim memory from the cgroup so as to make space for the new
174pages that the cgroup has touched. If the reclaim is unsuccessful,
175an OOM routine is invoked to select and kill the bulkiest task in the
176cgroup.
177
178The reclaim algorithm has not been modified for cgroups, except that
179pages that are selected for reclaiming come from the per cgroup LRU
180list.
181
4b3bde4c
BS
182NOTE: Reclaim does not work for the root cgroup, since we cannot set any
183limits on the root cgroup.
184
daaf1e68
KH
185Note2: When panic_on_oom is set to "2", the whole system will panic.
186
1b6df3aa
BS
1872. Locking
188
189The memory controller uses the following hierarchy
190
1911. zone->lru_lock is used for selecting pages to be isolated
dfc05c25 1922. mem->per_zone->lru_lock protects the per cgroup LRU (per zone)
1b6df3aa
BS
1933. lock_page_cgroup() is used to protect page->page_cgroup
194
1953. User Interface
196
1970. Configuration
198
199a. Enable CONFIG_CGROUPS
200b. Enable CONFIG_RESOURCE_COUNTERS
00f0b825 201c. Enable CONFIG_CGROUP_MEM_RES_CTLR
1b6df3aa
BS
202
2031. Prepare the cgroups
204# mkdir -p /cgroups
205# mount -t cgroup none /cgroups -o memory
206
2072. Make the new group and move bash into it
208# mkdir /cgroups/0
209# echo $$ > /cgroups/0/tasks
210
211Since now we're in the 0 cgroup,
212We can alter the memory limit:
fb78922c 213# echo 4M > /cgroups/0/memory.limit_in_bytes
0eea1030
BS
214
215NOTE: We can use a suffix (k, K, m, M, g or G) to indicate values in kilo,
216mega or gigabytes.
c5b947b2 217NOTE: We can write "-1" to reset the *.limit_in_bytes(unlimited).
4b3bde4c 218NOTE: We cannot set limits on the root cgroup any more.
0eea1030
BS
219
220# cat /cgroups/0/memory.limit_in_bytes
2324c5dd 2214194304
0eea1030
BS
222
223NOTE: The interface has now changed to display the usage in bytes
224instead of pages
1b6df3aa
BS
225
226We can check the usage:
0eea1030 227# cat /cgroups/0/memory.usage_in_bytes
2324c5dd 2281216512
0eea1030
BS
229
230A successful write to this file does not guarantee a successful set of
231this limit to the value written into the file. This can be due to a
232number of factors, such as rounding up to page boundaries or the total
233availability of memory on the system. The user is required to re-read
234this file after a write to guarantee the value committed by the kernel.
235
fb78922c 236# echo 1 > memory.limit_in_bytes
0eea1030 237# cat memory.limit_in_bytes
2324c5dd 2384096
1b6df3aa
BS
239
240The memory.failcnt field gives the number of times that the cgroup limit was
241exceeded.
242
dfc05c25
KH
243The memory.stat file gives accounting information. Now, the number of
244caches, RSS and Active pages/Inactive pages are shown.
245
1b6df3aa
BS
2464. Testing
247
248Balbir posted lmbench, AIM9, LTP and vmmstress results [10] and [11].
249Apart from that v6 has been tested with several applications and regular
250daily use. The controller has also been tested on the PPC64, x86_64 and
251UML platforms.
252
2534.1 Troubleshooting
254
255Sometimes a user might find that the application under a cgroup is
256terminated. There are several causes for this:
257
2581. The cgroup limit is too low (just too low to do anything useful)
2592. The user is using anonymous memory and swap is turned off or too low
260
261A sync followed by echo 1 > /proc/sys/vm/drop_caches will help get rid of
262some of the pages cached in the cgroup (page cache pages).
263
2644.2 Task migration
265
266When a task migrates from one cgroup to another, it's charge is not
7dc74be0 267carried forward by default. The pages allocated from the original cgroup still
1b6df3aa
BS
268remain charged to it, the charge is dropped when the page is freed or
269reclaimed.
270
7dc74be0
DN
271Note: You can move charges of a task along with task migration. See 8.
272
1b6df3aa
BS
2734.3 Removing a cgroup
274
275A cgroup can be removed by rmdir, but as discussed in sections 4.1 and 4.2, a
276cgroup might have some charge associated with it, even though all
f817ed48 277tasks have migrated away from it.
c1e862c1
KH
278Such charges are freed(at default) or moved to its parent. When moved,
279both of RSS and CACHES are moved to parent.
280If both of them are busy, rmdir() returns -EBUSY. See 5.1 Also.
1b6df3aa 281
8c7c6e34
KH
282Charges recorded in swap information is not updated at removal of cgroup.
283Recorded information is discarded and a cgroup which uses swap (swapcache)
284will be charged as a new owner of it.
285
286
c1e862c1
KH
2875. Misc. interfaces.
288
2895.1 force_empty
290 memory.force_empty interface is provided to make cgroup's memory usage empty.
291 You can use this interface only when the cgroup has no tasks.
292 When writing anything to this
293
294 # echo 0 > memory.force_empty
295
296 Almost all pages tracked by this memcg will be unmapped and freed. Some of
297 pages cannot be freed because it's locked or in-use. Such pages are moved
298 to parent and this cgroup will be empty. But this may return -EBUSY in
299 some too busy case.
300
301 Typical use case of this interface is that calling this before rmdir().
302 Because rmdir() moves all pages to parent, some out-of-use page caches can be
303 moved to the parent. If you want to avoid that, force_empty will be useful.
304
7f016ee8 3055.2 stat file
c863d835
BR
306
307memory.stat file includes following statistics
308
309cache - # of bytes of page cache memory.
310rss - # of bytes of anonymous and swap cache memory.
311pgpgin - # of pages paged in (equivalent to # of charging events).
312pgpgout - # of pages paged out (equivalent to # of uncharging events).
313active_anon - # of bytes of anonymous and swap cache memory on active
314 lru list.
315inactive_anon - # of bytes of anonymous memory and swap cache memory on
316 inactive lru list.
317active_file - # of bytes of file-backed memory on active lru list.
318inactive_file - # of bytes of file-backed memory on inactive lru list.
319unevictable - # of bytes of memory that cannot be reclaimed (mlocked etc).
320
321The following additional stats are dependent on CONFIG_DEBUG_VM.
322
323inactive_ratio - VM internal parameter. (see mm/page_alloc.c)
324recent_rotated_anon - VM internal parameter. (see mm/vmscan.c)
325recent_rotated_file - VM internal parameter. (see mm/vmscan.c)
326recent_scanned_anon - VM internal parameter. (see mm/vmscan.c)
327recent_scanned_file - VM internal parameter. (see mm/vmscan.c)
328
329Memo:
7f016ee8
KM
330 recent_rotated means recent frequency of lru rotation.
331 recent_scanned means recent # of scans to lru.
332 showing for better debug please see the code for meanings.
333
c863d835
BR
334Note:
335 Only anonymous and swap cache memory is listed as part of 'rss' stat.
336 This should not be confused with the true 'resident set size' or the
337 amount of physical memory used by the cgroup. Per-cgroup rss
338 accounting is not done yet.
7f016ee8 339
a7885eb8
KM
3405.3 swappiness
341 Similar to /proc/sys/vm/swappiness, but affecting a hierarchy of groups only.
342
c863d835 343 Following cgroups' swapiness can't be changed.
a7885eb8
KM
344 - root cgroup (uses /proc/sys/vm/swappiness).
345 - a cgroup which uses hierarchy and it has child cgroup.
346 - a cgroup which uses hierarchy and not the root of hierarchy.
347
348
52bc0d82 3496. Hierarchy support
c1e862c1 350
52bc0d82
BS
351The memory controller supports a deep hierarchy and hierarchical accounting.
352The hierarchy is created by creating the appropriate cgroups in the
353cgroup filesystem. Consider for example, the following cgroup filesystem
354hierarchy
355
356 root
357 / | \
358 / | \
359 a b c
360 | \
361 | \
362 d e
363
364In the diagram above, with hierarchical accounting enabled, all memory
365usage of e, is accounted to its ancestors up until the root (i.e, c and root),
366that has memory.use_hierarchy enabled. If one of the ancestors goes over its
367limit, the reclaim algorithm reclaims from the tasks in the ancestor and the
368children of the ancestor.
369
3706.1 Enabling hierarchical accounting and reclaim
371
372The memory controller by default disables the hierarchy feature. Support
373can be enabled by writing 1 to memory.use_hierarchy file of the root cgroup
374
375# echo 1 > memory.use_hierarchy
376
377The feature can be disabled by
378
379# echo 0 > memory.use_hierarchy
380
381NOTE1: Enabling/disabling will fail if the cgroup already has other
382cgroups created below it.
383
daaf1e68
KH
384NOTE2: When panic_on_oom is set to "2", the whole system will panic in
385case of an oom event in any cgroup.
52bc0d82 386
a6df6361
BS
3877. Soft limits
388
389Soft limits allow for greater sharing of memory. The idea behind soft limits
390is to allow control groups to use as much of the memory as needed, provided
391
392a. There is no memory contention
393b. They do not exceed their hard limit
394
395When the system detects memory contention or low memory control groups
396are pushed back to their soft limits. If the soft limit of each control
397group is very high, they are pushed back as much as possible to make
398sure that one control group does not starve the others of memory.
399
400Please note that soft limits is a best effort feature, it comes with
401no guarantees, but it does its best to make sure that when memory is
402heavily contended for, memory is allocated based on the soft limit
403hints/setup. Currently soft limit based reclaim is setup such that
404it gets invoked from balance_pgdat (kswapd).
405
4067.1 Interface
407
408Soft limits can be setup by using the following commands (in this example we
409assume a soft limit of 256 megabytes)
410
411# echo 256M > memory.soft_limit_in_bytes
412
413If we want to change this to 1G, we can at any time use
414
415# echo 1G > memory.soft_limit_in_bytes
416
417NOTE1: Soft limits take effect over a long period of time, since they involve
418 reclaiming memory for balancing between memory cgroups
419NOTE2: It is recommended to set the soft limit always below the hard limit,
420 otherwise the hard limit will take precedence.
421
7dc74be0
DN
4228. Move charges at task migration
423
424Users can move charges associated with a task along with task migration, that
425is, uncharge task's pages from the old cgroup and charge them to the new cgroup.
02491447
DN
426This feature is not supported in !CONFIG_MMU environments because of lack of
427page tables.
7dc74be0
DN
428
4298.1 Interface
430
431This feature is disabled by default. It can be enabled(and disabled again) by
432writing to memory.move_charge_at_immigrate of the destination cgroup.
433
434If you want to enable it:
435
436# echo (some positive value) > memory.move_charge_at_immigrate
437
438Note: Each bits of move_charge_at_immigrate has its own meaning about what type
439 of charges should be moved. See 8.2 for details.
440Note: Charges are moved only when you move mm->owner, IOW, a leader of a thread
441 group.
442Note: If we cannot find enough space for the task in the destination cgroup, we
443 try to make space by reclaiming memory. Task migration may fail if we
444 cannot make enough space.
445Note: It can take several seconds if you move charges in giga bytes order.
446
447And if you want disable it again:
448
449# echo 0 > memory.move_charge_at_immigrate
450
4518.2 Type of charges which can be move
452
453Each bits of move_charge_at_immigrate has its own meaning about what type of
454charges should be moved.
455
456 bit | what type of charges would be moved ?
457 -----+------------------------------------------------------------------------
458 0 | A charge of an anonymous page(or swap of it) used by the target task.
459 | Those pages and swaps must be used only by the target task. You must
460 | enable Swap Extension(see 2.4) to enable move of swap charges.
461
462Note: Those pages and swaps must be charged to the old cgroup.
463Note: More type of pages(e.g. file cache, shmem,) will be supported by other
464 bits in future.
465
4668.3 TODO
467
468- Add support for other types of pages(e.g. file cache, shmem, etc.).
469- Implement madvise(2) to let users decide the vma to be moved or not to be
470 moved.
471- All of moving charge operations are done under cgroup_mutex. It's not good
472 behavior to hold the mutex too long, so we may need some trick.
473
2e72b634
KS
4749. Memory thresholds
475
476Memory controler implements memory thresholds using cgroups notification
477API (see cgroups.txt). It allows to register multiple memory and memsw
478thresholds and gets notifications when it crosses.
479
480To register a threshold application need:
481 - create an eventfd using eventfd(2);
482 - open memory.usage_in_bytes or memory.memsw.usage_in_bytes;
483 - write string like "<event_fd> <memory.usage_in_bytes> <threshold>" to
484 cgroup.event_control.
485
486Application will be notified through eventfd when memory usage crosses
487threshold in any direction.
488
489It's applicable for root and non-root cgroup.
490
49110. TODO
1b6df3aa
BS
492
4931. Add support for accounting huge pages (as a separate controller)
dfc05c25
KH
4942. Make per-cgroup scanner reclaim not-shared pages first
4953. Teach controller to account for shared-pages
628f4235 4964. Start reclamation in the background when the limit is
1b6df3aa 497 not yet hit but the usage is getting closer
1b6df3aa
BS
498
499Summary
500
501Overall, the memory controller has been a stable controller and has been
502commented and discussed quite extensively in the community.
503
504References
505
5061. Singh, Balbir. RFC: Memory Controller, http://lwn.net/Articles/206697/
5072. Singh, Balbir. Memory Controller (RSS Control),
508 http://lwn.net/Articles/222762/
5093. Emelianov, Pavel. Resource controllers based on process cgroups
510 http://lkml.org/lkml/2007/3/6/198
5114. Emelianov, Pavel. RSS controller based on process cgroups (v2)
2324c5dd 512 http://lkml.org/lkml/2007/4/9/78
1b6df3aa
BS
5135. Emelianov, Pavel. RSS controller based on process cgroups (v3)
514 http://lkml.org/lkml/2007/5/30/244
5156. Menage, Paul. Control Groups v10, http://lwn.net/Articles/236032/
5167. Vaidyanathan, Srinivasan, Control Groups: Pagecache accounting and control
517 subsystem (v3), http://lwn.net/Articles/235534/
2324c5dd 5188. Singh, Balbir. RSS controller v2 test results (lmbench),
1b6df3aa 519 http://lkml.org/lkml/2007/5/17/232
2324c5dd 5209. Singh, Balbir. RSS controller v2 AIM9 results
1b6df3aa 521 http://lkml.org/lkml/2007/5/18/1
2324c5dd 52210. Singh, Balbir. Memory controller v6 test results,
1b6df3aa 523 http://lkml.org/lkml/2007/8/19/36
2324c5dd
LZ
52411. Singh, Balbir. Memory controller introduction (v6),
525 http://lkml.org/lkml/2007/8/17/69
1b6df3aa
BS
52612. Corbet, Jonathan, Controlling memory use in cgroups,
527 http://lwn.net/Articles/243795/