blob: 15aa34b11e88992b3788abddb1fba25de6fd8c4a [file] [log] [blame]
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001/* memcontrol.c - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
Pavel Emelianov78fb7462008-02-07 00:13:51 -08006 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
Balbir Singh8cdea7c2008-02-07 00:13:50 -08009 * 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>
Pavel Emelianov78fb7462008-02-07 00:13:51 -080023#include <linux/mm.h>
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080024#include <linux/smp.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080025#include <linux/page-flags.h>
Balbir Singh66e17072008-02-07 00:13:56 -080026#include <linux/backing-dev.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080027#include <linux/bit_spinlock.h>
28#include <linux/rcupdate.h>
Balbir Singhb6ac57d2008-04-29 01:00:19 -070029#include <linux/slab.h>
Balbir Singh66e17072008-02-07 00:13:56 -080030#include <linux/swap.h>
31#include <linux/spinlock.h>
32#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080033#include <linux/seq_file.h>
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -070034#include <linux/vmalloc.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080035
Balbir Singh8697d332008-02-07 00:13:59 -080036#include <asm/uaccess.h>
37
Balbir Singh8cdea7c2008-02-07 00:13:50 -080038struct cgroup_subsys mem_cgroup_subsys;
Balbir Singh66e17072008-02-07 00:13:56 -080039static const int MEM_CGROUP_RECLAIM_RETRIES = 5;
Balbir Singhb6ac57d2008-04-29 01:00:19 -070040static struct kmem_cache *page_cgroup_cache;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080041
42/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080043 * 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 */
51
52 MEM_CGROUP_STAT_NSTATS,
53};
54
55struct mem_cgroup_stat_cpu {
56 s64 count[MEM_CGROUP_STAT_NSTATS];
57} ____cacheline_aligned_in_smp;
58
59struct mem_cgroup_stat {
60 struct mem_cgroup_stat_cpu cpustat[NR_CPUS];
61};
62
63/*
64 * For accounting under irq disable, no need for increment preempt count.
65 */
66static void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat *stat,
67 enum mem_cgroup_stat_index idx, int val)
68{
69 int cpu = smp_processor_id();
70 stat->cpustat[cpu].count[idx] += val;
71}
72
73static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
74 enum mem_cgroup_stat_index idx)
75{
76 int cpu;
77 s64 ret = 0;
78 for_each_possible_cpu(cpu)
79 ret += stat->cpustat[cpu].count[idx];
80 return ret;
81}
82
83/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080084 * per-zone information in memory controller.
85 */
86
87enum mem_cgroup_zstat_index {
88 MEM_CGROUP_ZSTAT_ACTIVE,
89 MEM_CGROUP_ZSTAT_INACTIVE,
90
91 NR_MEM_CGROUP_ZSTAT,
92};
93
94struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -080095 /*
96 * spin_lock to protect the per cgroup LRU
97 */
98 spinlock_t lru_lock;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -080099 struct list_head active_list;
100 struct list_head inactive_list;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800101 unsigned long count[NR_MEM_CGROUP_ZSTAT];
102};
103/* Macro for accessing counter */
104#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
105
106struct mem_cgroup_per_node {
107 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
108};
109
110struct mem_cgroup_lru_info {
111 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
112};
113
114/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800115 * The memory controller data structure. The memory controller controls both
116 * page cache and RSS per cgroup. We would eventually like to provide
117 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
118 * to help the administrator determine what knobs to tune.
119 *
120 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800121 * we hit the water mark. May be even add a low water mark, such that
122 * no reclaim occurs from a cgroup at it's low water mark, this is
123 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800124 */
125struct mem_cgroup {
126 struct cgroup_subsys_state css;
127 /*
128 * the counter to account for memory usage
129 */
130 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800131 /*
132 * Per cgroup active and inactive list, similar to the
133 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800134 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800135 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800136
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800137 int prev_priority; /* for recording reclaim priority */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800138 /*
139 * statistics.
140 */
141 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800142};
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800143static struct mem_cgroup init_mem_cgroup;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800144
145/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800146 * We use the lower bit of the page->page_cgroup pointer as a bit spin
Hugh Dickins9442ec92008-03-04 14:29:07 -0800147 * lock. We need to ensure that page->page_cgroup is at least two
148 * byte aligned (based on comments from Nick Piggin). But since
149 * bit_spin_lock doesn't actually set that lock bit in a non-debug
150 * uniprocessor kernel, we should avoid setting it here too.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800151 */
152#define PAGE_CGROUP_LOCK_BIT 0x0
Hugh Dickins9442ec92008-03-04 14:29:07 -0800153#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
154#define PAGE_CGROUP_LOCK (1 << PAGE_CGROUP_LOCK_BIT)
155#else
156#define PAGE_CGROUP_LOCK 0x0
157#endif
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800158
159/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800160 * A page_cgroup page is associated with every page descriptor. The
161 * page_cgroup helps us identify information about the cgroup
162 */
163struct page_cgroup {
164 struct list_head lru; /* per cgroup LRU list */
165 struct page *page;
166 struct mem_cgroup *mem_cgroup;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800167 int ref_cnt; /* cached, mapped, migrating */
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800168 int flags;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800169};
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800170#define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800171#define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* page is active in this cgroup */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800172
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800173static int page_cgroup_nid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800174{
175 return page_to_nid(pc->page);
176}
177
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800178static enum zone_type page_cgroup_zid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800179{
180 return page_zonenum(pc->page);
181}
182
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800183enum charge_type {
184 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
185 MEM_CGROUP_CHARGE_TYPE_MAPPED,
186};
187
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800188/*
189 * Always modified under lru lock. Then, not necessary to preempt_disable()
190 */
191static void mem_cgroup_charge_statistics(struct mem_cgroup *mem, int flags,
192 bool charge)
193{
194 int val = (charge)? 1 : -1;
195 struct mem_cgroup_stat *stat = &mem->stat;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800196
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800197 VM_BUG_ON(!irqs_disabled());
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800198 if (flags & PAGE_CGROUP_FLAG_CACHE)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800199 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800200 else
201 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_RSS, val);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800202}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800203
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800204static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800205mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
206{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800207 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
208}
209
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800210static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800211page_cgroup_zoneinfo(struct page_cgroup *pc)
212{
213 struct mem_cgroup *mem = pc->mem_cgroup;
214 int nid = page_cgroup_nid(pc);
215 int zid = page_cgroup_zid(pc);
216
217 return mem_cgroup_zoneinfo(mem, nid, zid);
218}
219
220static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
221 enum mem_cgroup_zstat_index idx)
222{
223 int nid, zid;
224 struct mem_cgroup_per_zone *mz;
225 u64 total = 0;
226
227 for_each_online_node(nid)
228 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
229 mz = mem_cgroup_zoneinfo(mem, nid, zid);
230 total += MEM_CGROUP_ZSTAT(mz, idx);
231 }
232 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800233}
234
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800235static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800236{
237 return container_of(cgroup_subsys_state(cont,
238 mem_cgroup_subsys_id), struct mem_cgroup,
239 css);
240}
241
Balbir Singhcf475ad2008-04-29 01:00:16 -0700242struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800243{
244 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
245 struct mem_cgroup, css);
246}
247
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800248static inline int page_cgroup_locked(struct page *page)
249{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800250 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800251}
252
Hugh Dickins9442ec92008-03-04 14:29:07 -0800253static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800254{
Hugh Dickins9442ec92008-03-04 14:29:07 -0800255 VM_BUG_ON(!page_cgroup_locked(page));
256 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800257}
258
259struct page_cgroup *page_get_page_cgroup(struct page *page)
260{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800261 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800262}
263
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800264static void lock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800265{
266 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800267}
268
Hugh Dickins2680eed2008-03-04 14:29:13 -0800269static int try_lock_page_cgroup(struct page *page)
270{
271 return bit_spin_trylock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
272}
273
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800274static void unlock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800275{
276 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
277}
278
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700279static void __mem_cgroup_remove_list(struct mem_cgroup_per_zone *mz,
280 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800281{
282 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800283
284 if (from)
285 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
286 else
287 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
288
289 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
290 list_del_init(&pc->lru);
291}
292
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700293static void __mem_cgroup_add_list(struct mem_cgroup_per_zone *mz,
294 struct page_cgroup *pc)
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800295{
296 int to = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800297
298 if (!to) {
299 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800300 list_add(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800301 } else {
302 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800303 list_add(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800304 }
305 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
306}
307
Balbir Singh8697d332008-02-07 00:13:59 -0800308static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800309{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800310 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
311 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
312
313 if (from)
314 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
315 else
316 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
317
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800318 if (active) {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800319 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800320 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800321 list_move(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800322 } else {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800323 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800324 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800325 list_move(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800326 }
Balbir Singh66e17072008-02-07 00:13:56 -0800327}
328
David Rientjes4c4a2212008-02-07 00:14:06 -0800329int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
330{
331 int ret;
332
333 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800334 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800335 task_unlock(task);
336 return ret;
337}
338
Balbir Singh66e17072008-02-07 00:13:56 -0800339/*
340 * This routine assumes that the appropriate zone's lru lock is already held
341 */
Hugh Dickins427d5412008-03-04 14:29:03 -0800342void mem_cgroup_move_lists(struct page *page, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800343{
Hugh Dickins427d5412008-03-04 14:29:03 -0800344 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800345 struct mem_cgroup_per_zone *mz;
346 unsigned long flags;
347
Hugh Dickins2680eed2008-03-04 14:29:13 -0800348 /*
349 * We cannot lock_page_cgroup while holding zone's lru_lock,
350 * because other holders of lock_page_cgroup can be interrupted
351 * with an attempt to rotate_reclaimable_page. But we cannot
352 * safely get to page_cgroup without it, so just try_lock it:
353 * mem_cgroup_isolate_pages allows for page left on wrong list.
354 */
355 if (!try_lock_page_cgroup(page))
Balbir Singh66e17072008-02-07 00:13:56 -0800356 return;
357
Hugh Dickins2680eed2008-03-04 14:29:13 -0800358 pc = page_get_page_cgroup(page);
359 if (pc) {
Hugh Dickins2680eed2008-03-04 14:29:13 -0800360 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800361 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800362 __mem_cgroup_move_lists(pc, active);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800363 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800364 }
365 unlock_page_cgroup(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800366}
367
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800368/*
369 * Calculate mapped_ratio under memory controller. This will be used in
370 * vmscan.c for deteremining we have to reclaim mapped pages.
371 */
372int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
373{
374 long total, rss;
375
376 /*
377 * usage is recorded in bytes. But, here, we assume the number of
378 * physical pages can be represented by "long" on any arch.
379 */
380 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
381 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
382 return (int)((rss * 100L) / total);
383}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800384
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800385/*
386 * This function is called from vmscan.c. In page reclaiming loop. balance
387 * between active and inactive list is calculated. For memory controller
388 * page reclaiming, we should use using mem_cgroup's imbalance rather than
389 * zone's global lru imbalance.
390 */
391long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
392{
393 unsigned long active, inactive;
394 /* active and inactive are the number of pages. 'long' is ok.*/
395 active = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_ACTIVE);
396 inactive = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_INACTIVE);
397 return (long) (active / (inactive + 1));
398}
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800399
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800400/*
401 * prev_priority control...this will be used in memory reclaim path.
402 */
403int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
404{
405 return mem->prev_priority;
406}
407
408void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
409{
410 if (priority < mem->prev_priority)
411 mem->prev_priority = priority;
412}
413
414void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
415{
416 mem->prev_priority = priority;
417}
418
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800419/*
420 * Calculate # of pages to be scanned in this priority/zone.
421 * See also vmscan.c
422 *
423 * priority starts from "DEF_PRIORITY" and decremented in each loop.
424 * (see include/linux/mmzone.h)
425 */
426
427long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
428 struct zone *zone, int priority)
429{
430 long nr_active;
431 int nid = zone->zone_pgdat->node_id;
432 int zid = zone_idx(zone);
433 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
434
435 nr_active = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE);
436 return (nr_active >> priority);
437}
438
439long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
440 struct zone *zone, int priority)
441{
442 long nr_inactive;
443 int nid = zone->zone_pgdat->node_id;
444 int zid = zone_idx(zone);
445 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
446
447 nr_inactive = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800448 return (nr_inactive >> priority);
449}
450
Balbir Singh66e17072008-02-07 00:13:56 -0800451unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
452 struct list_head *dst,
453 unsigned long *scanned, int order,
454 int mode, struct zone *z,
455 struct mem_cgroup *mem_cont,
456 int active)
457{
458 unsigned long nr_taken = 0;
459 struct page *page;
460 unsigned long scan;
461 LIST_HEAD(pc_list);
462 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800463 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800464 int nid = z->zone_pgdat->node_id;
465 int zid = zone_idx(z);
466 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800467
Balbir Singhcf475ad2008-04-29 01:00:16 -0700468 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800469 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Balbir Singh66e17072008-02-07 00:13:56 -0800470 if (active)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800471 src = &mz->active_list;
Balbir Singh66e17072008-02-07 00:13:56 -0800472 else
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800473 src = &mz->inactive_list;
474
Balbir Singh66e17072008-02-07 00:13:56 -0800475
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800476 spin_lock(&mz->lru_lock);
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800477 scan = 0;
478 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800479 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800480 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800481 page = pc->page;
Balbir Singh66e17072008-02-07 00:13:56 -0800482
Hugh Dickins436c65412008-02-07 00:14:12 -0800483 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800484 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800485
Balbir Singh66e17072008-02-07 00:13:56 -0800486 if (PageActive(page) && !active) {
487 __mem_cgroup_move_lists(pc, true);
Balbir Singh66e17072008-02-07 00:13:56 -0800488 continue;
489 }
490 if (!PageActive(page) && active) {
491 __mem_cgroup_move_lists(pc, false);
Balbir Singh66e17072008-02-07 00:13:56 -0800492 continue;
493 }
494
Hugh Dickins436c65412008-02-07 00:14:12 -0800495 scan++;
496 list_move(&pc->lru, &pc_list);
Balbir Singh66e17072008-02-07 00:13:56 -0800497
498 if (__isolate_lru_page(page, mode) == 0) {
499 list_move(&page->lru, dst);
500 nr_taken++;
501 }
502 }
503
504 list_splice(&pc_list, src);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800505 spin_unlock(&mz->lru_lock);
Balbir Singh66e17072008-02-07 00:13:56 -0800506
507 *scanned = scan;
508 return nr_taken;
509}
510
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800511/*
512 * Charge the memory controller for page usage.
513 * Return
514 * 0 if the charge was successful
515 * < 0 if the cgroup is over its limit
516 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800517static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
518 gfp_t gfp_mask, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800519{
520 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800521 struct page_cgroup *pc;
Balbir Singh66e17072008-02-07 00:13:56 -0800522 unsigned long flags;
523 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800524 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800525
Balbir Singh40779602008-04-04 14:29:59 -0700526 if (mem_cgroup_subsys.disabled)
527 return 0;
528
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800529 /*
530 * Should page_cgroup's go to their own slab?
531 * One could optimize the performance of the charging routine
532 * by saving a bit in the page_flags and using it as a lock
533 * to see if the cgroup page already has a page_cgroup associated
534 * with it
535 */
Balbir Singh66e17072008-02-07 00:13:56 -0800536retry:
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800537 lock_page_cgroup(page);
538 pc = page_get_page_cgroup(page);
539 /*
540 * The page_cgroup exists and
541 * the page has already been accounted.
542 */
543 if (pc) {
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800544 VM_BUG_ON(pc->page != page);
545 VM_BUG_ON(pc->ref_cnt <= 0);
546
547 pc->ref_cnt++;
548 unlock_page_cgroup(page);
549 goto done;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800550 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800551 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800552
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700553 pc = kmem_cache_zalloc(page_cgroup_cache, gfp_mask);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800554 if (pc == NULL)
555 goto err;
556
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800557 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800558 * We always charge the cgroup the mm_struct belongs to.
559 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800560 * thread group leader migrates. It's possible that mm is not
561 * set, if so charge the init_mm (happens for pagecache usage).
562 */
563 if (!mm)
564 mm = &init_mm;
565
Hugh Dickins3be91272008-02-07 00:14:19 -0800566 rcu_read_lock();
Balbir Singhcf475ad2008-04-29 01:00:16 -0700567 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800568 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800569 * For every charge from the cgroup, increment reference count
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800570 */
571 css_get(&mem->css);
572 rcu_read_unlock();
573
Balbir Singh0eea1032008-02-07 00:13:57 -0800574 while (res_counter_charge(&mem->res, PAGE_SIZE)) {
Hugh Dickins3be91272008-02-07 00:14:19 -0800575 if (!(gfp_mask & __GFP_WAIT))
576 goto out;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800577
578 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
Balbir Singh66e17072008-02-07 00:13:56 -0800579 continue;
580
581 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800582 * try_to_free_mem_cgroup_pages() might not give us a full
583 * picture of reclaim. Some pages are reclaimed and might be
584 * moved to swap cache or just unmapped from the cgroup.
585 * Check the limit again to see if the reclaim reduced the
586 * current usage of the cgroup before giving up
587 */
Balbir Singh66e17072008-02-07 00:13:56 -0800588 if (res_counter_check_under_limit(&mem->res))
589 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800590
591 if (!nr_retries--) {
592 mem_cgroup_out_of_memory(mem, gfp_mask);
593 goto out;
Balbir Singh66e17072008-02-07 00:13:56 -0800594 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800595 }
596
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800597 pc->ref_cnt = 1;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800598 pc->mem_cgroup = mem;
599 pc->page = page;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800600 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800601 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE)
Balbir Singh4a56d022008-04-29 01:00:23 -0700602 pc->flags = PAGE_CGROUP_FLAG_CACHE;
Hugh Dickins3be91272008-02-07 00:14:19 -0800603
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800604 lock_page_cgroup(page);
605 if (page_get_page_cgroup(page)) {
606 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800607 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800608 * Another charge has been added to this page already.
609 * We take lock_page_cgroup(page) again and read
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800610 * page->cgroup, increment refcnt.... just retry is OK.
611 */
612 res_counter_uncharge(&mem->res, PAGE_SIZE);
613 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700614 kmem_cache_free(page_cgroup_cache, pc);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800615 goto retry;
616 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800617 page_assign_page_cgroup(page, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800618
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800619 mz = page_cgroup_zoneinfo(pc);
620 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700621 __mem_cgroup_add_list(mz, pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800622 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800623
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800624 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800625done:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800626 return 0;
Hugh Dickins3be91272008-02-07 00:14:19 -0800627out:
628 css_put(&mem->css);
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700629 kmem_cache_free(page_cgroup_cache, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800630err:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800631 return -ENOMEM;
632}
633
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800634int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800635{
636 return mem_cgroup_charge_common(page, mm, gfp_mask,
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800637 MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800638}
639
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800640int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
641 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -0800642{
Balbir Singh8697d332008-02-07 00:13:59 -0800643 if (!mm)
644 mm = &init_mm;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800645 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800646 MEM_CGROUP_CHARGE_TYPE_CACHE);
Balbir Singh8697d332008-02-07 00:13:59 -0800647}
648
649/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800650 * Uncharging is always a welcome operation, we never complain, simply
Hugh Dickins82895462008-03-04 14:29:08 -0800651 * uncharge.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800652 */
Hugh Dickins82895462008-03-04 14:29:08 -0800653void mem_cgroup_uncharge_page(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800654{
Hugh Dickins82895462008-03-04 14:29:08 -0800655 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800656 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800657 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800658 unsigned long flags;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800659
Balbir Singh40779602008-04-04 14:29:59 -0700660 if (mem_cgroup_subsys.disabled)
661 return;
662
Balbir Singh8697d332008-02-07 00:13:59 -0800663 /*
Balbir Singh3c541e12008-02-07 00:14:41 -0800664 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -0800665 */
Hugh Dickins82895462008-03-04 14:29:08 -0800666 lock_page_cgroup(page);
667 pc = page_get_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800668 if (!pc)
Hugh Dickins82895462008-03-04 14:29:08 -0800669 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800670
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800671 VM_BUG_ON(pc->page != page);
672 VM_BUG_ON(pc->ref_cnt <= 0);
673
674 if (--(pc->ref_cnt) == 0) {
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800675 mz = page_cgroup_zoneinfo(pc);
676 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700677 __mem_cgroup_remove_list(mz, pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800678 spin_unlock_irqrestore(&mz->lru_lock, flags);
679
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800680 page_assign_page_cgroup(page, NULL);
681 unlock_page_cgroup(page);
682
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800683 mem = pc->mem_cgroup;
684 res_counter_uncharge(&mem->res, PAGE_SIZE);
685 css_put(&mem->css);
686
Balbir Singhb6ac57d2008-04-29 01:00:19 -0700687 kmem_cache_free(page_cgroup_cache, pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800688 return;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800689 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800690
Hugh Dickins82895462008-03-04 14:29:08 -0800691unlock:
Balbir Singh3c541e12008-02-07 00:14:41 -0800692 unlock_page_cgroup(page);
693}
694
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800695/*
696 * Returns non-zero if a page (under migration) has valid page_cgroup member.
697 * Refcnt of page_cgroup is incremented.
698 */
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800699int mem_cgroup_prepare_migration(struct page *page)
700{
701 struct page_cgroup *pc;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800702
Balbir Singh40779602008-04-04 14:29:59 -0700703 if (mem_cgroup_subsys.disabled)
704 return 0;
705
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800706 lock_page_cgroup(page);
707 pc = page_get_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800708 if (pc)
709 pc->ref_cnt++;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800710 unlock_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800711 return pc != NULL;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800712}
713
714void mem_cgroup_end_migration(struct page *page)
715{
Hugh Dickins82895462008-03-04 14:29:08 -0800716 mem_cgroup_uncharge_page(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800717}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800718
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800719/*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800720 * We know both *page* and *newpage* are now not-on-LRU and PG_locked.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800721 * And no race with uncharge() routines because page_cgroup for *page*
722 * has extra one reference by mem_cgroup_prepare_migration.
723 */
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800724void mem_cgroup_page_migration(struct page *page, struct page *newpage)
725{
726 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800727 struct mem_cgroup_per_zone *mz;
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800728 unsigned long flags;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800729
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800730 lock_page_cgroup(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800731 pc = page_get_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800732 if (!pc) {
733 unlock_page_cgroup(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800734 return;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800735 }
736
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800737 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800738 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700739 __mem_cgroup_remove_list(mz, pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800740 spin_unlock_irqrestore(&mz->lru_lock, flags);
741
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800742 page_assign_page_cgroup(page, NULL);
743 unlock_page_cgroup(page);
744
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800745 pc->page = newpage;
746 lock_page_cgroup(newpage);
747 page_assign_page_cgroup(newpage, pc);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800748
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800749 mz = page_cgroup_zoneinfo(pc);
750 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki3eae90c2008-04-29 01:00:22 -0700751 __mem_cgroup_add_list(mz, pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800752 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800753
754 unlock_page_cgroup(newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800755}
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800756
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800757/*
758 * This routine traverse page_cgroup in given list and drop them all.
759 * This routine ignores page_cgroup->ref_cnt.
760 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
761 */
762#define FORCE_UNCHARGE_BATCH (128)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800763static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800764 struct mem_cgroup_per_zone *mz,
765 int active)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800766{
767 struct page_cgroup *pc;
768 struct page *page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800769 int count = FORCE_UNCHARGE_BATCH;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800770 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800771 struct list_head *list;
772
773 if (active)
774 list = &mz->active_list;
775 else
776 list = &mz->inactive_list;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800777
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800778 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800779 while (!list_empty(list)) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800780 pc = list_entry(list->prev, struct page_cgroup, lru);
781 page = pc->page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800782 get_page(page);
783 spin_unlock_irqrestore(&mz->lru_lock, flags);
784 mem_cgroup_uncharge_page(page);
785 put_page(page);
786 if (--count <= 0) {
787 count = FORCE_UNCHARGE_BATCH;
788 cond_resched();
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800789 }
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800790 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800791 }
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800792 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800793}
794
795/*
796 * make mem_cgroup's charge to be 0 if there is no task.
797 * This enables deleting this mem_cgroup.
798 */
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800799static int mem_cgroup_force_empty(struct mem_cgroup *mem)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800800{
801 int ret = -EBUSY;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800802 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800803
Balbir Singh40779602008-04-04 14:29:59 -0700804 if (mem_cgroup_subsys.disabled)
805 return 0;
806
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800807 css_get(&mem->css);
808 /*
809 * page reclaim code (kswapd etc..) will move pages between
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800810 * active_list <-> inactive_list while we don't take a lock.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800811 * So, we have to do loop here until all lists are empty.
812 */
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800813 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800814 if (atomic_read(&mem->css.cgroup->count) > 0)
815 goto out;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800816 for_each_node_state(node, N_POSSIBLE)
817 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
818 struct mem_cgroup_per_zone *mz;
819 mz = mem_cgroup_zoneinfo(mem, node, zid);
820 /* drop all page_cgroup in active_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800821 mem_cgroup_force_empty_list(mem, mz, 1);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800822 /* drop all page_cgroup in inactive_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800823 mem_cgroup_force_empty_list(mem, mz, 0);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800824 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800825 }
826 ret = 0;
827out:
828 css_put(&mem->css);
829 return ret;
830}
831
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800832static int mem_cgroup_write_strategy(char *buf, unsigned long long *tmp)
Balbir Singh0eea1032008-02-07 00:13:57 -0800833{
834 *tmp = memparse(buf, &buf);
835 if (*buf != '\0')
836 return -EINVAL;
837
838 /*
839 * Round up the value to the closest page size
840 */
841 *tmp = ((*tmp + PAGE_SIZE - 1) >> PAGE_SHIFT) << PAGE_SHIFT;
842 return 0;
843}
844
Paul Menage2c3daa72008-04-29 00:59:58 -0700845static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800846{
Paul Menage2c3daa72008-04-29 00:59:58 -0700847 return res_counter_read_u64(&mem_cgroup_from_cont(cont)->res,
848 cft->private);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800849}
850
851static ssize_t mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
852 struct file *file, const char __user *userbuf,
853 size_t nbytes, loff_t *ppos)
854{
855 return res_counter_write(&mem_cgroup_from_cont(cont)->res,
Balbir Singh0eea1032008-02-07 00:13:57 -0800856 cft->private, userbuf, nbytes, ppos,
857 mem_cgroup_write_strategy);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800858}
859
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700860static int mem_cgroup_reset(struct cgroup *cont, unsigned int event)
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700861{
862 struct mem_cgroup *mem;
863
864 mem = mem_cgroup_from_cont(cont);
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700865 switch (event) {
866 case RES_MAX_USAGE:
867 res_counter_reset_max(&mem->res);
868 break;
869 case RES_FAILCNT:
870 res_counter_reset_failcnt(&mem->res);
871 break;
872 }
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700873 return 0;
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700874}
875
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700876static int mem_force_empty_write(struct cgroup *cont, unsigned int event)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800877{
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700878 return mem_cgroup_force_empty(mem_cgroup_from_cont(cont));
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800879}
880
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800881static const struct mem_cgroup_stat_desc {
882 const char *msg;
883 u64 unit;
884} mem_cgroup_stat_desc[] = {
885 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
886 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
887};
888
Paul Menagec64745c2008-04-29 01:00:02 -0700889static int mem_control_stat_show(struct cgroup *cont, struct cftype *cft,
890 struct cgroup_map_cb *cb)
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800891{
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800892 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
893 struct mem_cgroup_stat *stat = &mem_cont->stat;
894 int i;
895
896 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
897 s64 val;
898
899 val = mem_cgroup_read_stat(stat, i);
900 val *= mem_cgroup_stat_desc[i].unit;
Paul Menagec64745c2008-04-29 01:00:02 -0700901 cb->fill(cb, mem_cgroup_stat_desc[i].msg, val);
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800902 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800903 /* showing # of active pages */
904 {
905 unsigned long active, inactive;
906
907 inactive = mem_cgroup_get_all_zonestat(mem_cont,
908 MEM_CGROUP_ZSTAT_INACTIVE);
909 active = mem_cgroup_get_all_zonestat(mem_cont,
910 MEM_CGROUP_ZSTAT_ACTIVE);
Paul Menagec64745c2008-04-29 01:00:02 -0700911 cb->fill(cb, "active", (active) * PAGE_SIZE);
912 cb->fill(cb, "inactive", (inactive) * PAGE_SIZE);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800913 }
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800914 return 0;
915}
916
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800917static struct cftype mem_cgroup_files[] = {
918 {
Balbir Singh0eea1032008-02-07 00:13:57 -0800919 .name = "usage_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800920 .private = RES_USAGE,
Paul Menage2c3daa72008-04-29 00:59:58 -0700921 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800922 },
923 {
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700924 .name = "max_usage_in_bytes",
925 .private = RES_MAX_USAGE,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700926 .trigger = mem_cgroup_reset,
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700927 .read_u64 = mem_cgroup_read,
928 },
929 {
Balbir Singh0eea1032008-02-07 00:13:57 -0800930 .name = "limit_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800931 .private = RES_LIMIT,
932 .write = mem_cgroup_write,
Paul Menage2c3daa72008-04-29 00:59:58 -0700933 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800934 },
935 {
936 .name = "failcnt",
937 .private = RES_FAILCNT,
Pavel Emelyanov29f2a4d2008-04-29 01:00:21 -0700938 .trigger = mem_cgroup_reset,
Paul Menage2c3daa72008-04-29 00:59:58 -0700939 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800940 },
Balbir Singh8697d332008-02-07 00:13:59 -0800941 {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800942 .name = "force_empty",
Pavel Emelyanov85cc59d2008-04-29 01:00:20 -0700943 .trigger = mem_force_empty_write,
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800944 },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800945 {
946 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -0700947 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800948 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800949};
950
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800951static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
952{
953 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800954 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -0700955 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800956 /*
957 * This routine is called against possible nodes.
958 * But it's BUG to call kmalloc() against offline node.
959 *
960 * TODO: this routine can waste much memory for nodes which will
961 * never be onlined. It's better to use memory hotplug callback
962 * function.
963 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -0700964 if (!node_state(node, N_NORMAL_MEMORY))
965 tmp = -1;
966 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800967 if (!pn)
968 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800969
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800970 mem->info.nodeinfo[node] = pn;
971 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800972
973 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
974 mz = &pn->zoneinfo[zone];
975 INIT_LIST_HEAD(&mz->active_list);
976 INIT_LIST_HEAD(&mz->inactive_list);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800977 spin_lock_init(&mz->lru_lock);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800978 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800979 return 0;
980}
981
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800982static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
983{
984 kfree(mem->info.nodeinfo[node]);
985}
986
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -0700987static struct mem_cgroup *mem_cgroup_alloc(void)
988{
989 struct mem_cgroup *mem;
990
991 if (sizeof(*mem) < PAGE_SIZE)
992 mem = kmalloc(sizeof(*mem), GFP_KERNEL);
993 else
994 mem = vmalloc(sizeof(*mem));
995
996 if (mem)
997 memset(mem, 0, sizeof(*mem));
998 return mem;
999}
1000
1001static void mem_cgroup_free(struct mem_cgroup *mem)
1002{
1003 if (sizeof(*mem) < PAGE_SIZE)
1004 kfree(mem);
1005 else
1006 vfree(mem);
1007}
1008
1009
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001010static struct cgroup_subsys_state *
1011mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
1012{
1013 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001014 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001015
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001016 if (unlikely((cont->parent) == NULL)) {
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001017 mem = &init_mem_cgroup;
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001018 page_cgroup_cache = KMEM_CACHE(page_cgroup, SLAB_PANIC);
1019 } else {
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001020 mem = mem_cgroup_alloc();
1021 if (!mem)
1022 return ERR_PTR(-ENOMEM);
Balbir Singhb6ac57d2008-04-29 01:00:19 -07001023 }
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001024
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001025 res_counter_init(&mem->res);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001026
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001027 memset(&mem->info, 0, sizeof(mem->info));
1028
1029 for_each_node_state(node, N_POSSIBLE)
1030 if (alloc_mem_cgroup_per_zone_info(mem, node))
1031 goto free_out;
1032
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001033 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001034free_out:
1035 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001036 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001037 if (cont->parent != NULL)
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001038 mem_cgroup_free(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08001039 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001040}
1041
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001042static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1043 struct cgroup *cont)
1044{
1045 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1046 mem_cgroup_force_empty(mem);
1047}
1048
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001049static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1050 struct cgroup *cont)
1051{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001052 int node;
1053 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1054
1055 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001056 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001057
KAMEZAWA Hiroyuki33327942008-04-29 01:00:24 -07001058 mem_cgroup_free(mem_cgroup_from_cont(cont));
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001059}
1060
1061static int mem_cgroup_populate(struct cgroup_subsys *ss,
1062 struct cgroup *cont)
1063{
Balbir Singh40779602008-04-04 14:29:59 -07001064 if (mem_cgroup_subsys.disabled)
1065 return 0;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001066 return cgroup_add_files(cont, ss, mem_cgroup_files,
1067 ARRAY_SIZE(mem_cgroup_files));
1068}
1069
Balbir Singh67e465a2008-02-07 00:13:54 -08001070static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1071 struct cgroup *cont,
1072 struct cgroup *old_cont,
1073 struct task_struct *p)
1074{
1075 struct mm_struct *mm;
1076 struct mem_cgroup *mem, *old_mem;
1077
Balbir Singh40779602008-04-04 14:29:59 -07001078 if (mem_cgroup_subsys.disabled)
1079 return;
1080
Balbir Singh67e465a2008-02-07 00:13:54 -08001081 mm = get_task_mm(p);
1082 if (mm == NULL)
1083 return;
1084
1085 mem = mem_cgroup_from_cont(cont);
1086 old_mem = mem_cgroup_from_cont(old_cont);
1087
1088 if (mem == old_mem)
1089 goto out;
1090
1091 /*
1092 * Only thread group leaders are allowed to migrate, the mm_struct is
1093 * in effect owned by the leader
1094 */
Pavel Emelyanov52ea27e2008-03-19 17:00:45 -07001095 if (!thread_group_leader(p))
Balbir Singh67e465a2008-02-07 00:13:54 -08001096 goto out;
1097
Balbir Singh67e465a2008-02-07 00:13:54 -08001098out:
1099 mmput(mm);
Balbir Singh67e465a2008-02-07 00:13:54 -08001100}
1101
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001102struct cgroup_subsys mem_cgroup_subsys = {
1103 .name = "memory",
1104 .subsys_id = mem_cgroup_subsys_id,
1105 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001106 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001107 .destroy = mem_cgroup_destroy,
1108 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08001109 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001110 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001111};