]> bbs.cooldavid.org Git - net-next-2.6.git/blame - mm/memcontrol.c
devcgroup: code cleanup
[net-next-2.6.git] / mm / memcontrol.c
CommitLineData
8cdea7c0
BS
1/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
78fb7466
PE
6 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
8cdea7c0
BS
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20#include <linux/res_counter.h>
21#include <linux/memcontrol.h>
22#include <linux/cgroup.h>
78fb7466 23#include <linux/mm.h>
d52aa412 24#include <linux/smp.h>
8a9f3ccd 25#include <linux/page-flags.h>
66e1707b 26#include <linux/backing-dev.h>
8a9f3ccd
BS
27#include <linux/bit_spinlock.h>
28#include <linux/rcupdate.h>
b6ac57d5 29#include <linux/slab.h>
66e1707b
BS
30#include <linux/swap.h>
31#include <linux/spinlock.h>
32#include <linux/fs.h>
d2ceb9b7 33#include <linux/seq_file.h>
33327948 34#include <linux/vmalloc.h>
8cdea7c0 35
8697d331
BS
36#include <asm/uaccess.h>
37
8cdea7c0 38struct cgroup_subsys mem_cgroup_subsys;
66e1707b 39static const int MEM_CGROUP_RECLAIM_RETRIES = 5;
b6ac57d5 40static struct kmem_cache *page_cgroup_cache;
8cdea7c0 41
d52aa412
KH
42/*
43 * Statistics for memory cgroup.
44 */
45enum mem_cgroup_stat_index {
46 /*
47 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
48 */
49 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
50 MEM_CGROUP_STAT_RSS, /* # of pages charged as rss */
55e462b0
BR
51 MEM_CGROUP_STAT_PGPGIN_COUNT, /* # of pages paged in */
52 MEM_CGROUP_STAT_PGPGOUT_COUNT, /* # of pages paged out */
d52aa412
KH
53
54 MEM_CGROUP_STAT_NSTATS,
55};
56
57struct mem_cgroup_stat_cpu {
58 s64 count[MEM_CGROUP_STAT_NSTATS];
59} ____cacheline_aligned_in_smp;
60
61struct mem_cgroup_stat {
62 struct mem_cgroup_stat_cpu cpustat[NR_CPUS];
63};
64
65/*
66 * For accounting under irq disable, no need for increment preempt count.
67 */
68static void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat *stat,
69 enum mem_cgroup_stat_index idx, int val)
70{
71 int cpu = smp_processor_id();
72 stat->cpustat[cpu].count[idx] += val;
73}
74
75static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
76 enum mem_cgroup_stat_index idx)
77{
78 int cpu;
79 s64 ret = 0;
80 for_each_possible_cpu(cpu)
81 ret += stat->cpustat[cpu].count[idx];
82 return ret;
83}
84
6d12e2d8
KH
85/*
86 * per-zone information in memory controller.
87 */
88
89enum mem_cgroup_zstat_index {
90 MEM_CGROUP_ZSTAT_ACTIVE,
91 MEM_CGROUP_ZSTAT_INACTIVE,
92
93 NR_MEM_CGROUP_ZSTAT,
94};
95
96struct mem_cgroup_per_zone {
072c56c1
KH
97 /*
98 * spin_lock to protect the per cgroup LRU
99 */
100 spinlock_t lru_lock;
1ecaab2b
KH
101 struct list_head active_list;
102 struct list_head inactive_list;
6d12e2d8
KH
103 unsigned long count[NR_MEM_CGROUP_ZSTAT];
104};
105/* Macro for accessing counter */
106#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
107
108struct mem_cgroup_per_node {
109 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
110};
111
112struct mem_cgroup_lru_info {
113 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
114};
115
8cdea7c0
BS
116/*
117 * The memory controller data structure. The memory controller controls both
118 * page cache and RSS per cgroup. We would eventually like to provide
119 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
120 * to help the administrator determine what knobs to tune.
121 *
122 * TODO: Add a water mark for the memory controller. Reclaim will begin when
8a9f3ccd
BS
123 * we hit the water mark. May be even add a low water mark, such that
124 * no reclaim occurs from a cgroup at it's low water mark, this is
125 * a feature that will be implemented much later in the future.
8cdea7c0
BS
126 */
127struct mem_cgroup {
128 struct cgroup_subsys_state css;
129 /*
130 * the counter to account for memory usage
131 */
132 struct res_counter res;
78fb7466
PE
133 /*
134 * Per cgroup active and inactive list, similar to the
135 * per zone LRU lists.
78fb7466 136 */
6d12e2d8 137 struct mem_cgroup_lru_info info;
072c56c1 138
6c48a1d0 139 int prev_priority; /* for recording reclaim priority */
d52aa412
KH
140 /*
141 * statistics.
142 */
143 struct mem_cgroup_stat stat;
8cdea7c0 144};
8869b8f6 145static struct mem_cgroup init_mem_cgroup;
8cdea7c0 146
8a9f3ccd
BS
147/*
148 * We use the lower bit of the page->page_cgroup pointer as a bit spin
9442ec9d
HD
149 * lock. We need to ensure that page->page_cgroup is at least two
150 * byte aligned (based on comments from Nick Piggin). But since
151 * bit_spin_lock doesn't actually set that lock bit in a non-debug
152 * uniprocessor kernel, we should avoid setting it here too.
8a9f3ccd
BS
153 */
154#define PAGE_CGROUP_LOCK_BIT 0x0
9442ec9d
HD
155#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
156#define PAGE_CGROUP_LOCK (1 << PAGE_CGROUP_LOCK_BIT)
157#else
158#define PAGE_CGROUP_LOCK 0x0
159#endif
8a9f3ccd 160
8cdea7c0
BS
161/*
162 * A page_cgroup page is associated with every page descriptor. The
163 * page_cgroup helps us identify information about the cgroup
164 */
165struct page_cgroup {
166 struct list_head lru; /* per cgroup LRU list */
167 struct page *page;
168 struct mem_cgroup *mem_cgroup;
b9c565d5 169 int ref_cnt; /* cached, mapped, migrating */
8869b8f6 170 int flags;
8cdea7c0 171};
217bc319 172#define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */
3564c7c4 173#define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* page is active in this cgroup */
8cdea7c0 174
d5b69e38 175static int page_cgroup_nid(struct page_cgroup *pc)
c0149530
KH
176{
177 return page_to_nid(pc->page);
178}
179
d5b69e38 180static enum zone_type page_cgroup_zid(struct page_cgroup *pc)
c0149530
KH
181{
182 return page_zonenum(pc->page);
183}
184
217bc319
KH
185enum charge_type {
186 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
187 MEM_CGROUP_CHARGE_TYPE_MAPPED,
188};
189
d52aa412
KH
190/*
191 * Always modified under lru lock. Then, not necessary to preempt_disable()
192 */
193static void mem_cgroup_charge_statistics(struct mem_cgroup *mem, int flags,
194 bool charge)
195{
196 int val = (charge)? 1 : -1;
197 struct mem_cgroup_stat *stat = &mem->stat;
d52aa412 198
8869b8f6 199 VM_BUG_ON(!irqs_disabled());
d52aa412 200 if (flags & PAGE_CGROUP_FLAG_CACHE)
8869b8f6 201 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_CACHE, val);
d52aa412
KH
202 else
203 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_RSS, val);
55e462b0
BR
204
205 if (charge)
206 __mem_cgroup_stat_add_safe(stat,
207 MEM_CGROUP_STAT_PGPGIN_COUNT, 1);
208 else
209 __mem_cgroup_stat_add_safe(stat,
210 MEM_CGROUP_STAT_PGPGOUT_COUNT, 1);
6d12e2d8
KH
211}
212
d5b69e38 213static struct mem_cgroup_per_zone *
6d12e2d8
KH
214mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
215{
6d12e2d8
KH
216 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
217}
218
d5b69e38 219static struct mem_cgroup_per_zone *
6d12e2d8
KH
220page_cgroup_zoneinfo(struct page_cgroup *pc)
221{
222 struct mem_cgroup *mem = pc->mem_cgroup;
223 int nid = page_cgroup_nid(pc);
224 int zid = page_cgroup_zid(pc);
d52aa412 225
6d12e2d8
KH
226 return mem_cgroup_zoneinfo(mem, nid, zid);
227}
228
229static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
230 enum mem_cgroup_zstat_index idx)
231{
232 int nid, zid;
233 struct mem_cgroup_per_zone *mz;
234 u64 total = 0;
235
236 for_each_online_node(nid)
237 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
238 mz = mem_cgroup_zoneinfo(mem, nid, zid);
239 total += MEM_CGROUP_ZSTAT(mz, idx);
240 }
241 return total;
d52aa412
KH
242}
243
d5b69e38 244static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
8cdea7c0
BS
245{
246 return container_of(cgroup_subsys_state(cont,
247 mem_cgroup_subsys_id), struct mem_cgroup,
248 css);
249}
250
cf475ad2 251struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
78fb7466
PE
252{
253 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
254 struct mem_cgroup, css);
255}
256
8a9f3ccd
BS
257static inline int page_cgroup_locked(struct page *page)
258{
8869b8f6 259 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
8a9f3ccd
BS
260}
261
9442ec9d 262static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
78fb7466 263{
9442ec9d
HD
264 VM_BUG_ON(!page_cgroup_locked(page));
265 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
78fb7466
PE
266}
267
268struct page_cgroup *page_get_page_cgroup(struct page *page)
269{
8869b8f6 270 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
8a9f3ccd
BS
271}
272
d5b69e38 273static void lock_page_cgroup(struct page *page)
8a9f3ccd
BS
274{
275 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
8a9f3ccd
BS
276}
277
2680eed7
HD
278static int try_lock_page_cgroup(struct page *page)
279{
280 return bit_spin_trylock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
281}
282
d5b69e38 283static void unlock_page_cgroup(struct page *page)
8a9f3ccd
BS
284{
285 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
286}
287
3eae90c3
KH
288static void __mem_cgroup_remove_list(struct mem_cgroup_per_zone *mz,
289 struct page_cgroup *pc)
6d12e2d8
KH
290{
291 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
6d12e2d8
KH
292
293 if (from)
294 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
295 else
296 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
297
298 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
299 list_del_init(&pc->lru);
300}
301
3eae90c3
KH
302static void __mem_cgroup_add_list(struct mem_cgroup_per_zone *mz,
303 struct page_cgroup *pc)
6d12e2d8
KH
304{
305 int to = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
6d12e2d8
KH
306
307 if (!to) {
308 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
1ecaab2b 309 list_add(&pc->lru, &mz->inactive_list);
6d12e2d8
KH
310 } else {
311 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
1ecaab2b 312 list_add(&pc->lru, &mz->active_list);
6d12e2d8
KH
313 }
314 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
315}
316
8697d331 317static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active)
66e1707b 318{
6d12e2d8
KH
319 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
320 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
321
322 if (from)
323 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
324 else
325 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
326
3564c7c4 327 if (active) {
6d12e2d8 328 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
3564c7c4 329 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
1ecaab2b 330 list_move(&pc->lru, &mz->active_list);
3564c7c4 331 } else {
6d12e2d8 332 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
3564c7c4 333 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
1ecaab2b 334 list_move(&pc->lru, &mz->inactive_list);
3564c7c4 335 }
66e1707b
BS
336}
337
4c4a2214
DR
338int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
339{
340 int ret;
341
342 task_lock(task);
bd845e38 343 ret = task->mm && mm_match_cgroup(task->mm, mem);
4c4a2214
DR
344 task_unlock(task);
345 return ret;
346}
347
66e1707b
BS
348/*
349 * This routine assumes that the appropriate zone's lru lock is already held
350 */
427d5416 351void mem_cgroup_move_lists(struct page *page, bool active)
66e1707b 352{
427d5416 353 struct page_cgroup *pc;
072c56c1
KH
354 struct mem_cgroup_per_zone *mz;
355 unsigned long flags;
356
2680eed7
HD
357 /*
358 * We cannot lock_page_cgroup while holding zone's lru_lock,
359 * because other holders of lock_page_cgroup can be interrupted
360 * with an attempt to rotate_reclaimable_page. But we cannot
361 * safely get to page_cgroup without it, so just try_lock it:
362 * mem_cgroup_isolate_pages allows for page left on wrong list.
363 */
364 if (!try_lock_page_cgroup(page))
66e1707b
BS
365 return;
366
2680eed7
HD
367 pc = page_get_page_cgroup(page);
368 if (pc) {
2680eed7 369 mz = page_cgroup_zoneinfo(pc);
2680eed7 370 spin_lock_irqsave(&mz->lru_lock, flags);
9b3c0a07 371 __mem_cgroup_move_lists(pc, active);
2680eed7 372 spin_unlock_irqrestore(&mz->lru_lock, flags);
9b3c0a07
HT
373 }
374 unlock_page_cgroup(page);
66e1707b
BS
375}
376
58ae83db
KH
377/*
378 * Calculate mapped_ratio under memory controller. This will be used in
379 * vmscan.c for deteremining we have to reclaim mapped pages.
380 */
381int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
382{
383 long total, rss;
384
385 /*
386 * usage is recorded in bytes. But, here, we assume the number of
387 * physical pages can be represented by "long" on any arch.
388 */
389 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
390 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
391 return (int)((rss * 100L) / total);
392}
8869b8f6 393
5932f367
KH
394/*
395 * This function is called from vmscan.c. In page reclaiming loop. balance
396 * between active and inactive list is calculated. For memory controller
397 * page reclaiming, we should use using mem_cgroup's imbalance rather than
398 * zone's global lru imbalance.
399 */
400long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
401{
402 unsigned long active, inactive;
403 /* active and inactive are the number of pages. 'long' is ok.*/
404 active = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_ACTIVE);
405 inactive = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_INACTIVE);
406 return (long) (active / (inactive + 1));
407}
58ae83db 408
6c48a1d0
KH
409/*
410 * prev_priority control...this will be used in memory reclaim path.
411 */
412int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
413{
414 return mem->prev_priority;
415}
416
417void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
418{
419 if (priority < mem->prev_priority)
420 mem->prev_priority = priority;
421}
422
423void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
424{
425 mem->prev_priority = priority;
426}
427
cc38108e
KH
428/*
429 * Calculate # of pages to be scanned in this priority/zone.
430 * See also vmscan.c
431 *
432 * priority starts from "DEF_PRIORITY" and decremented in each loop.
433 * (see include/linux/mmzone.h)
434 */
435
436long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
437 struct zone *zone, int priority)
438{
439 long nr_active;
440 int nid = zone->zone_pgdat->node_id;
441 int zid = zone_idx(zone);
442 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
443
444 nr_active = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE);
445 return (nr_active >> priority);
446}
447
448long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
449 struct zone *zone, int priority)
450{
451 long nr_inactive;
452 int nid = zone->zone_pgdat->node_id;
453 int zid = zone_idx(zone);
454 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
455
456 nr_inactive = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE);
cc38108e
KH
457 return (nr_inactive >> priority);
458}
459
66e1707b
BS
460unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
461 struct list_head *dst,
462 unsigned long *scanned, int order,
463 int mode, struct zone *z,
464 struct mem_cgroup *mem_cont,
465 int active)
466{
467 unsigned long nr_taken = 0;
468 struct page *page;
469 unsigned long scan;
470 LIST_HEAD(pc_list);
471 struct list_head *src;
ff7283fa 472 struct page_cgroup *pc, *tmp;
1ecaab2b
KH
473 int nid = z->zone_pgdat->node_id;
474 int zid = zone_idx(z);
475 struct mem_cgroup_per_zone *mz;
66e1707b 476
cf475ad2 477 BUG_ON(!mem_cont);
1ecaab2b 478 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
66e1707b 479 if (active)
1ecaab2b 480 src = &mz->active_list;
66e1707b 481 else
1ecaab2b
KH
482 src = &mz->inactive_list;
483
66e1707b 484
072c56c1 485 spin_lock(&mz->lru_lock);
ff7283fa
KH
486 scan = 0;
487 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
436c6541 488 if (scan >= nr_to_scan)
ff7283fa 489 break;
66e1707b 490 page = pc->page;
66e1707b 491
436c6541 492 if (unlikely(!PageLRU(page)))
ff7283fa 493 continue;
ff7283fa 494
66e1707b
BS
495 if (PageActive(page) && !active) {
496 __mem_cgroup_move_lists(pc, true);
66e1707b
BS
497 continue;
498 }
499 if (!PageActive(page) && active) {
500 __mem_cgroup_move_lists(pc, false);
66e1707b
BS
501 continue;
502 }
503
436c6541
HD
504 scan++;
505 list_move(&pc->lru, &pc_list);
66e1707b
BS
506
507 if (__isolate_lru_page(page, mode) == 0) {
508 list_move(&page->lru, dst);
509 nr_taken++;
510 }
511 }
512
513 list_splice(&pc_list, src);
072c56c1 514 spin_unlock(&mz->lru_lock);
66e1707b
BS
515
516 *scanned = scan;
517 return nr_taken;
518}
519
8a9f3ccd
BS
520/*
521 * Charge the memory controller for page usage.
522 * Return
523 * 0 if the charge was successful
524 * < 0 if the cgroup is over its limit
525 */
217bc319
KH
526static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
527 gfp_t gfp_mask, enum charge_type ctype)
8a9f3ccd
BS
528{
529 struct mem_cgroup *mem;
9175e031 530 struct page_cgroup *pc;
66e1707b
BS
531 unsigned long flags;
532 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
072c56c1 533 struct mem_cgroup_per_zone *mz;
8a9f3ccd 534
4077960e
BS
535 if (mem_cgroup_subsys.disabled)
536 return 0;
537
8a9f3ccd
BS
538 /*
539 * Should page_cgroup's go to their own slab?
540 * One could optimize the performance of the charging routine
541 * by saving a bit in the page_flags and using it as a lock
542 * to see if the cgroup page already has a page_cgroup associated
543 * with it
544 */
66e1707b 545retry:
7e924aaf
HD
546 lock_page_cgroup(page);
547 pc = page_get_page_cgroup(page);
548 /*
549 * The page_cgroup exists and
550 * the page has already been accounted.
551 */
552 if (pc) {
b9c565d5
HD
553 VM_BUG_ON(pc->page != page);
554 VM_BUG_ON(pc->ref_cnt <= 0);
555
556 pc->ref_cnt++;
557 unlock_page_cgroup(page);
558 goto done;
8a9f3ccd 559 }
7e924aaf 560 unlock_page_cgroup(page);
8a9f3ccd 561
b6ac57d5 562 pc = kmem_cache_zalloc(page_cgroup_cache, gfp_mask);
8a9f3ccd
BS
563 if (pc == NULL)
564 goto err;
565
8a9f3ccd 566 /*
3be91277
HD
567 * We always charge the cgroup the mm_struct belongs to.
568 * The mm_struct's mem_cgroup changes on task migration if the
8a9f3ccd
BS
569 * thread group leader migrates. It's possible that mm is not
570 * set, if so charge the init_mm (happens for pagecache usage).
571 */
572 if (!mm)
573 mm = &init_mm;
574
3be91277 575 rcu_read_lock();
cf475ad2 576 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
8a9f3ccd 577 /*
8869b8f6 578 * For every charge from the cgroup, increment reference count
8a9f3ccd
BS
579 */
580 css_get(&mem->css);
581 rcu_read_unlock();
582
0eea1030 583 while (res_counter_charge(&mem->res, PAGE_SIZE)) {
3be91277
HD
584 if (!(gfp_mask & __GFP_WAIT))
585 goto out;
e1a1cd59
BS
586
587 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
66e1707b
BS
588 continue;
589
590 /*
8869b8f6
HD
591 * try_to_free_mem_cgroup_pages() might not give us a full
592 * picture of reclaim. Some pages are reclaimed and might be
593 * moved to swap cache or just unmapped from the cgroup.
594 * Check the limit again to see if the reclaim reduced the
595 * current usage of the cgroup before giving up
596 */
66e1707b
BS
597 if (res_counter_check_under_limit(&mem->res))
598 continue;
3be91277
HD
599
600 if (!nr_retries--) {
601 mem_cgroup_out_of_memory(mem, gfp_mask);
602 goto out;
66e1707b 603 }
8a9f3ccd
BS
604 }
605
b9c565d5 606 pc->ref_cnt = 1;
8a9f3ccd
BS
607 pc->mem_cgroup = mem;
608 pc->page = page;
3564c7c4 609 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
217bc319 610 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE)
4a56d02e 611 pc->flags = PAGE_CGROUP_FLAG_CACHE;
3be91277 612
7e924aaf
HD
613 lock_page_cgroup(page);
614 if (page_get_page_cgroup(page)) {
615 unlock_page_cgroup(page);
9175e031 616 /*
3be91277
HD
617 * Another charge has been added to this page already.
618 * We take lock_page_cgroup(page) again and read
9175e031
KH
619 * page->cgroup, increment refcnt.... just retry is OK.
620 */
621 res_counter_uncharge(&mem->res, PAGE_SIZE);
622 css_put(&mem->css);
b6ac57d5 623 kmem_cache_free(page_cgroup_cache, pc);
9175e031
KH
624 goto retry;
625 }
7e924aaf 626 page_assign_page_cgroup(page, pc);
8a9f3ccd 627
072c56c1
KH
628 mz = page_cgroup_zoneinfo(pc);
629 spin_lock_irqsave(&mz->lru_lock, flags);
3eae90c3 630 __mem_cgroup_add_list(mz, pc);
072c56c1 631 spin_unlock_irqrestore(&mz->lru_lock, flags);
66e1707b 632
fb59e9f1 633 unlock_page_cgroup(page);
8a9f3ccd 634done:
8a9f3ccd 635 return 0;
3be91277
HD
636out:
637 css_put(&mem->css);
b6ac57d5 638 kmem_cache_free(page_cgroup_cache, pc);
8a9f3ccd 639err:
8a9f3ccd
BS
640 return -ENOMEM;
641}
642
8869b8f6 643int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
217bc319
KH
644{
645 return mem_cgroup_charge_common(page, mm, gfp_mask,
8869b8f6 646 MEM_CGROUP_CHARGE_TYPE_MAPPED);
217bc319
KH
647}
648
e1a1cd59
BS
649int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
650 gfp_t gfp_mask)
8697d331 651{
8697d331
BS
652 if (!mm)
653 mm = &init_mm;
8869b8f6 654 return mem_cgroup_charge_common(page, mm, gfp_mask,
217bc319 655 MEM_CGROUP_CHARGE_TYPE_CACHE);
8697d331
BS
656}
657
8a9f3ccd
BS
658/*
659 * Uncharging is always a welcome operation, we never complain, simply
8289546e 660 * uncharge.
8a9f3ccd 661 */
8289546e 662void mem_cgroup_uncharge_page(struct page *page)
8a9f3ccd 663{
8289546e 664 struct page_cgroup *pc;
8a9f3ccd 665 struct mem_cgroup *mem;
072c56c1 666 struct mem_cgroup_per_zone *mz;
66e1707b 667 unsigned long flags;
8a9f3ccd 668
4077960e
BS
669 if (mem_cgroup_subsys.disabled)
670 return;
671
8697d331 672 /*
3c541e14 673 * Check if our page_cgroup is valid
8697d331 674 */
8289546e
HD
675 lock_page_cgroup(page);
676 pc = page_get_page_cgroup(page);
8a9f3ccd 677 if (!pc)
8289546e 678 goto unlock;
8a9f3ccd 679
b9c565d5
HD
680 VM_BUG_ON(pc->page != page);
681 VM_BUG_ON(pc->ref_cnt <= 0);
682
683 if (--(pc->ref_cnt) == 0) {
b9c565d5
HD
684 mz = page_cgroup_zoneinfo(pc);
685 spin_lock_irqsave(&mz->lru_lock, flags);
3eae90c3 686 __mem_cgroup_remove_list(mz, pc);
b9c565d5
HD
687 spin_unlock_irqrestore(&mz->lru_lock, flags);
688
fb59e9f1
HD
689 page_assign_page_cgroup(page, NULL);
690 unlock_page_cgroup(page);
691
6d48ff8b
HD
692 mem = pc->mem_cgroup;
693 res_counter_uncharge(&mem->res, PAGE_SIZE);
694 css_put(&mem->css);
695
b6ac57d5 696 kmem_cache_free(page_cgroup_cache, pc);
b9c565d5 697 return;
8a9f3ccd 698 }
6d12e2d8 699
8289546e 700unlock:
3c541e14
BS
701 unlock_page_cgroup(page);
702}
703
ae41be37
KH
704/*
705 * Returns non-zero if a page (under migration) has valid page_cgroup member.
706 * Refcnt of page_cgroup is incremented.
707 */
ae41be37
KH
708int mem_cgroup_prepare_migration(struct page *page)
709{
710 struct page_cgroup *pc;
8869b8f6 711
4077960e
BS
712 if (mem_cgroup_subsys.disabled)
713 return 0;
714
ae41be37
KH
715 lock_page_cgroup(page);
716 pc = page_get_page_cgroup(page);
b9c565d5
HD
717 if (pc)
718 pc->ref_cnt++;
ae41be37 719 unlock_page_cgroup(page);
b9c565d5 720 return pc != NULL;
ae41be37
KH
721}
722
723void mem_cgroup_end_migration(struct page *page)
724{
8289546e 725 mem_cgroup_uncharge_page(page);
ae41be37 726}
8869b8f6 727
ae41be37 728/*
8869b8f6 729 * We know both *page* and *newpage* are now not-on-LRU and PG_locked.
ae41be37
KH
730 * And no race with uncharge() routines because page_cgroup for *page*
731 * has extra one reference by mem_cgroup_prepare_migration.
732 */
ae41be37
KH
733void mem_cgroup_page_migration(struct page *page, struct page *newpage)
734{
735 struct page_cgroup *pc;
072c56c1 736 struct mem_cgroup_per_zone *mz;
d5b69e38 737 unsigned long flags;
8869b8f6 738
b9c565d5 739 lock_page_cgroup(page);
ae41be37 740 pc = page_get_page_cgroup(page);
b9c565d5
HD
741 if (!pc) {
742 unlock_page_cgroup(page);
ae41be37 743 return;
b9c565d5 744 }
8869b8f6 745
b9c565d5 746 mz = page_cgroup_zoneinfo(pc);
8869b8f6 747 spin_lock_irqsave(&mz->lru_lock, flags);
3eae90c3 748 __mem_cgroup_remove_list(mz, pc);
072c56c1
KH
749 spin_unlock_irqrestore(&mz->lru_lock, flags);
750
fb59e9f1
HD
751 page_assign_page_cgroup(page, NULL);
752 unlock_page_cgroup(page);
753
ae41be37
KH
754 pc->page = newpage;
755 lock_page_cgroup(newpage);
756 page_assign_page_cgroup(newpage, pc);
6d12e2d8 757
072c56c1
KH
758 mz = page_cgroup_zoneinfo(pc);
759 spin_lock_irqsave(&mz->lru_lock, flags);
3eae90c3 760 __mem_cgroup_add_list(mz, pc);
072c56c1 761 spin_unlock_irqrestore(&mz->lru_lock, flags);
fb59e9f1
HD
762
763 unlock_page_cgroup(newpage);
ae41be37 764}
78fb7466 765
cc847582
KH
766/*
767 * This routine traverse page_cgroup in given list and drop them all.
768 * This routine ignores page_cgroup->ref_cnt.
769 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
770 */
771#define FORCE_UNCHARGE_BATCH (128)
8869b8f6 772static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
072c56c1
KH
773 struct mem_cgroup_per_zone *mz,
774 int active)
cc847582
KH
775{
776 struct page_cgroup *pc;
777 struct page *page;
9b3c0a07 778 int count = FORCE_UNCHARGE_BATCH;
cc847582 779 unsigned long flags;
072c56c1
KH
780 struct list_head *list;
781
782 if (active)
783 list = &mz->active_list;
784 else
785 list = &mz->inactive_list;
cc847582 786
072c56c1 787 spin_lock_irqsave(&mz->lru_lock, flags);
9b3c0a07 788 while (!list_empty(list)) {
cc847582
KH
789 pc = list_entry(list->prev, struct page_cgroup, lru);
790 page = pc->page;
9b3c0a07
HT
791 get_page(page);
792 spin_unlock_irqrestore(&mz->lru_lock, flags);
793 mem_cgroup_uncharge_page(page);
794 put_page(page);
795 if (--count <= 0) {
796 count = FORCE_UNCHARGE_BATCH;
797 cond_resched();
b9c565d5 798 }
9b3c0a07 799 spin_lock_irqsave(&mz->lru_lock, flags);
cc847582 800 }
072c56c1 801 spin_unlock_irqrestore(&mz->lru_lock, flags);
cc847582
KH
802}
803
804/*
805 * make mem_cgroup's charge to be 0 if there is no task.
806 * This enables deleting this mem_cgroup.
807 */
d5b69e38 808static int mem_cgroup_force_empty(struct mem_cgroup *mem)
cc847582
KH
809{
810 int ret = -EBUSY;
1ecaab2b 811 int node, zid;
8869b8f6 812
4077960e
BS
813 if (mem_cgroup_subsys.disabled)
814 return 0;
815
cc847582
KH
816 css_get(&mem->css);
817 /*
818 * page reclaim code (kswapd etc..) will move pages between
8869b8f6 819 * active_list <-> inactive_list while we don't take a lock.
cc847582
KH
820 * So, we have to do loop here until all lists are empty.
821 */
1ecaab2b 822 while (mem->res.usage > 0) {
cc847582
KH
823 if (atomic_read(&mem->css.cgroup->count) > 0)
824 goto out;
1ecaab2b
KH
825 for_each_node_state(node, N_POSSIBLE)
826 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
827 struct mem_cgroup_per_zone *mz;
828 mz = mem_cgroup_zoneinfo(mem, node, zid);
829 /* drop all page_cgroup in active_list */
072c56c1 830 mem_cgroup_force_empty_list(mem, mz, 1);
1ecaab2b 831 /* drop all page_cgroup in inactive_list */
072c56c1 832 mem_cgroup_force_empty_list(mem, mz, 0);
1ecaab2b 833 }
cc847582
KH
834 }
835 ret = 0;
836out:
837 css_put(&mem->css);
838 return ret;
839}
840
2c3daa72 841static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
8cdea7c0 842{
2c3daa72
PM
843 return res_counter_read_u64(&mem_cgroup_from_cont(cont)->res,
844 cft->private);
8cdea7c0
BS
845}
846
856c13aa
PM
847static int mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
848 const char *buffer)
8cdea7c0
BS
849{
850 return res_counter_write(&mem_cgroup_from_cont(cont)->res,
856c13aa
PM
851 cft->private, buffer,
852 res_counter_memparse_write_strategy);
8cdea7c0
BS
853}
854
29f2a4da 855static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
c84872e1
PE
856{
857 struct mem_cgroup *mem;
858
859 mem = mem_cgroup_from_cont(cont);
29f2a4da
PE
860 switch (event) {
861 case RES_MAX_USAGE:
862 res_counter_reset_max(&mem->res);
863 break;
864 case RES_FAILCNT:
865 res_counter_reset_failcnt(&mem->res);
866 break;
867 }
85cc59db 868 return 0;
c84872e1
PE
869}
870
85cc59db 871static int mem_force_empty_write(struct cgroup *cont, unsigned int event)
cc847582 872{
85cc59db 873 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont));
cc847582
KH
874}
875
d2ceb9b7
KH
876static const struct mem_cgroup_stat_desc {
877 const char *msg;
878 u64 unit;
879} mem_cgroup_stat_desc[] = {
880 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
881 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
55e462b0
BR
882 [MEM_CGROUP_STAT_PGPGIN_COUNT] = {"pgpgin", 1, },
883 [MEM_CGROUP_STAT_PGPGOUT_COUNT] = {"pgpgout", 1, },
d2ceb9b7
KH
884};
885
c64745cf
PM
886static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
887 struct cgroup_map_cb *cb)
d2ceb9b7 888{
d2ceb9b7
KH
889 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
890 struct mem_cgroup_stat *stat = &mem_cont->stat;
891 int i;
892
893 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
894 s64 val;
895
896 val = mem_cgroup_read_stat(stat, i);
897 val *= mem_cgroup_stat_desc[i].unit;
c64745cf 898 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
d2ceb9b7 899 }
6d12e2d8
KH
900 /* showing # of active pages */
901 {
902 unsigned long active, inactive;
903
904 inactive = mem_cgroup_get_all_zonestat(mem_cont,
905 MEM_CGROUP_ZSTAT_INACTIVE);
906 active = mem_cgroup_get_all_zonestat(mem_cont,
907 MEM_CGROUP_ZSTAT_ACTIVE);
c64745cf
PM
908 cb->fill(cb, "active", (active) * PAGE_SIZE);
909 cb->fill(cb, "inactive", (inactive) * PAGE_SIZE);
6d12e2d8 910 }
d2ceb9b7
KH
911 return 0;
912}
913
8cdea7c0
BS
914static struct cftype mem_cgroup_files[] = {
915 {
0eea1030 916 .name = "usage_in_bytes",
8cdea7c0 917 .private = RES_USAGE,
2c3daa72 918 .read_u64 = mem_cgroup_read,
8cdea7c0 919 },
c84872e1
PE
920 {
921 .name = "max_usage_in_bytes",
922 .private = RES_MAX_USAGE,
29f2a4da 923 .trigger = mem_cgroup_reset,
c84872e1
PE
924 .read_u64 = mem_cgroup_read,
925 },
8cdea7c0 926 {
0eea1030 927 .name = "limit_in_bytes",
8cdea7c0 928 .private = RES_LIMIT,
856c13aa 929 .write_string = mem_cgroup_write,
2c3daa72 930 .read_u64 = mem_cgroup_read,
8cdea7c0
BS
931 },
932 {
933 .name = "failcnt",
934 .private = RES_FAILCNT,
29f2a4da 935 .trigger = mem_cgroup_reset,
2c3daa72 936 .read_u64 = mem_cgroup_read,
8cdea7c0 937 },
cc847582
KH
938 {
939 .name = "force_empty",
85cc59db 940 .trigger = mem_force_empty_write,
cc847582 941 },
d2ceb9b7
KH
942 {
943 .name = "stat",
c64745cf 944 .read_map = mem_control_stat_show,
d2ceb9b7 945 },
8cdea7c0
BS
946};
947
6d12e2d8
KH
948static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
949{
950 struct mem_cgroup_per_node *pn;
1ecaab2b 951 struct mem_cgroup_per_zone *mz;
41e3355d 952 int zone, tmp = node;
1ecaab2b
KH
953 /*
954 * This routine is called against possible nodes.
955 * But it's BUG to call kmalloc() against offline node.
956 *
957 * TODO: this routine can waste much memory for nodes which will
958 * never be onlined. It's better to use memory hotplug callback
959 * function.
960 */
41e3355d
KH
961 if (!node_state(node, N_NORMAL_MEMORY))
962 tmp = -1;
963 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
6d12e2d8
KH
964 if (!pn)
965 return 1;
1ecaab2b 966
6d12e2d8
KH
967 mem->info.nodeinfo[node] = pn;
968 memset(pn, 0, sizeof(*pn));
1ecaab2b
KH
969
970 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
971 mz = &pn->zoneinfo[zone];
972 INIT_LIST_HEAD(&mz->active_list);
973 INIT_LIST_HEAD(&mz->inactive_list);
072c56c1 974 spin_lock_init(&mz->lru_lock);
1ecaab2b 975 }
6d12e2d8
KH
976 return 0;
977}
978
1ecaab2b
KH
979static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
980{
981 kfree(mem->info.nodeinfo[node]);
982}
983
33327948
KH
984static struct mem_cgroup *mem_cgroup_alloc(void)
985{
986 struct mem_cgroup *mem;
987
988 if (sizeof(*mem) < PAGE_SIZE)
989 mem = kmalloc(sizeof(*mem), GFP_KERNEL);
990 else
991 mem = vmalloc(sizeof(*mem));
992
993 if (mem)
994 memset(mem, 0, sizeof(*mem));
995 return mem;
996}
997
998static void mem_cgroup_free(struct mem_cgroup *mem)
999{
1000 if (sizeof(*mem) < PAGE_SIZE)
1001 kfree(mem);
1002 else
1003 vfree(mem);
1004}
1005
1006
8cdea7c0
BS
1007static struct cgroup_subsys_state *
1008mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
1009{
1010 struct mem_cgroup *mem;
6d12e2d8 1011 int node;
8cdea7c0 1012
b6ac57d5 1013 if (unlikely((cont->parent) == NULL)) {
78fb7466 1014 mem = &init_mem_cgroup;
b6ac57d5
BS
1015 page_cgroup_cache = KMEM_CACHE(page_cgroup, SLAB_PANIC);
1016 } else {
33327948
KH
1017 mem = mem_cgroup_alloc();
1018 if (!mem)
1019 return ERR_PTR(-ENOMEM);
b6ac57d5 1020 }
78fb7466 1021
8cdea7c0 1022 res_counter_init(&mem->res);
1ecaab2b 1023
6d12e2d8
KH
1024 for_each_node_state(node, N_POSSIBLE)
1025 if (alloc_mem_cgroup_per_zone_info(mem, node))
1026 goto free_out;
1027
8cdea7c0 1028 return &mem->css;
6d12e2d8
KH
1029free_out:
1030 for_each_node_state(node, N_POSSIBLE)
1ecaab2b 1031 free_mem_cgroup_per_zone_info(mem, node);
6d12e2d8 1032 if (cont->parent != NULL)
33327948 1033 mem_cgroup_free(mem);
2dda81ca 1034 return ERR_PTR(-ENOMEM);
8cdea7c0
BS
1035}
1036
df878fb0
KH
1037static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1038 struct cgroup *cont)
1039{
1040 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1041 mem_cgroup_force_empty(mem);
1042}
1043
8cdea7c0
BS
1044static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1045 struct cgroup *cont)
1046{
6d12e2d8
KH
1047 int node;
1048 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1049
1050 for_each_node_state(node, N_POSSIBLE)
1ecaab2b 1051 free_mem_cgroup_per_zone_info(mem, node);
6d12e2d8 1052
33327948 1053 mem_cgroup_free(mem_cgroup_from_cont(cont));
8cdea7c0
BS
1054}
1055
1056static int mem_cgroup_populate(struct cgroup_subsys *ss,
1057 struct cgroup *cont)
1058{
4077960e
BS
1059 if (mem_cgroup_subsys.disabled)
1060 return 0;
8cdea7c0
BS
1061 return cgroup_add_files(cont, ss, mem_cgroup_files,
1062 ARRAY_SIZE(mem_cgroup_files));
1063}
1064
67e465a7
BS
1065static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1066 struct cgroup *cont,
1067 struct cgroup *old_cont,
1068 struct task_struct *p)
1069{
1070 struct mm_struct *mm;
1071 struct mem_cgroup *mem, *old_mem;
1072
4077960e
BS
1073 if (mem_cgroup_subsys.disabled)
1074 return;
1075
67e465a7
BS
1076 mm = get_task_mm(p);
1077 if (mm == NULL)
1078 return;
1079
1080 mem = mem_cgroup_from_cont(cont);
1081 old_mem = mem_cgroup_from_cont(old_cont);
1082
1083 if (mem == old_mem)
1084 goto out;
1085
1086 /*
1087 * Only thread group leaders are allowed to migrate, the mm_struct is
1088 * in effect owned by the leader
1089 */
52ea27eb 1090 if (!thread_group_leader(p))
67e465a7
BS
1091 goto out;
1092
67e465a7
BS
1093out:
1094 mmput(mm);
67e465a7
BS
1095}
1096
8cdea7c0
BS
1097struct cgroup_subsys mem_cgroup_subsys = {
1098 .name = "memory",
1099 .subsys_id = mem_cgroup_subsys_id,
1100 .create = mem_cgroup_create,
df878fb0 1101 .pre_destroy = mem_cgroup_pre_destroy,
8cdea7c0
BS
1102 .destroy = mem_cgroup_destroy,
1103 .populate = mem_cgroup_populate,
67e465a7 1104 .attach = mem_cgroup_move_task,
6d12e2d8 1105 .early_init = 0,
8cdea7c0 1106};