blob: 350a14da6525d07730e74020ed966d3dbac98f79 [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 Singh66e17072008-02-07 00:13:56 -080029#include <linux/swap.h>
30#include <linux/spinlock.h>
31#include <linux/fs.h>
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -080032#include <linux/seq_file.h>
Balbir Singh8cdea7c2008-02-07 00:13:50 -080033
Balbir Singh8697d332008-02-07 00:13:59 -080034#include <asm/uaccess.h>
35
Balbir Singh8cdea7c2008-02-07 00:13:50 -080036struct cgroup_subsys mem_cgroup_subsys;
Balbir Singh66e17072008-02-07 00:13:56 -080037static const int MEM_CGROUP_RECLAIM_RETRIES = 5;
Balbir Singh8cdea7c2008-02-07 00:13:50 -080038
39/*
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -080040 * Statistics for memory cgroup.
41 */
42enum mem_cgroup_stat_index {
43 /*
44 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
45 */
46 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
47 MEM_CGROUP_STAT_RSS, /* # of pages charged as rss */
48
49 MEM_CGROUP_STAT_NSTATS,
50};
51
52struct mem_cgroup_stat_cpu {
53 s64 count[MEM_CGROUP_STAT_NSTATS];
54} ____cacheline_aligned_in_smp;
55
56struct mem_cgroup_stat {
57 struct mem_cgroup_stat_cpu cpustat[NR_CPUS];
58};
59
60/*
61 * For accounting under irq disable, no need for increment preempt count.
62 */
63static void __mem_cgroup_stat_add_safe(struct mem_cgroup_stat *stat,
64 enum mem_cgroup_stat_index idx, int val)
65{
66 int cpu = smp_processor_id();
67 stat->cpustat[cpu].count[idx] += val;
68}
69
70static s64 mem_cgroup_read_stat(struct mem_cgroup_stat *stat,
71 enum mem_cgroup_stat_index idx)
72{
73 int cpu;
74 s64 ret = 0;
75 for_each_possible_cpu(cpu)
76 ret += stat->cpustat[cpu].count[idx];
77 return ret;
78}
79
80/*
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080081 * per-zone information in memory controller.
82 */
83
84enum mem_cgroup_zstat_index {
85 MEM_CGROUP_ZSTAT_ACTIVE,
86 MEM_CGROUP_ZSTAT_INACTIVE,
87
88 NR_MEM_CGROUP_ZSTAT,
89};
90
91struct mem_cgroup_per_zone {
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -080092 /*
93 * spin_lock to protect the per cgroup LRU
94 */
95 spinlock_t lru_lock;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -080096 struct list_head active_list;
97 struct list_head inactive_list;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -080098 unsigned long count[NR_MEM_CGROUP_ZSTAT];
99};
100/* Macro for accessing counter */
101#define MEM_CGROUP_ZSTAT(mz, idx) ((mz)->count[(idx)])
102
103struct mem_cgroup_per_node {
104 struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
105};
106
107struct mem_cgroup_lru_info {
108 struct mem_cgroup_per_node *nodeinfo[MAX_NUMNODES];
109};
110
111/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800112 * The memory controller data structure. The memory controller controls both
113 * page cache and RSS per cgroup. We would eventually like to provide
114 * statistics based on the statistics developed by Rik Van Riel for clock-pro,
115 * to help the administrator determine what knobs to tune.
116 *
117 * TODO: Add a water mark for the memory controller. Reclaim will begin when
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800118 * we hit the water mark. May be even add a low water mark, such that
119 * no reclaim occurs from a cgroup at it's low water mark, this is
120 * a feature that will be implemented much later in the future.
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800121 */
122struct mem_cgroup {
123 struct cgroup_subsys_state css;
124 /*
125 * the counter to account for memory usage
126 */
127 struct res_counter res;
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800128 /*
129 * Per cgroup active and inactive list, similar to the
130 * per zone LRU lists.
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800131 */
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800132 struct mem_cgroup_lru_info info;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800133
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800134 int prev_priority; /* for recording reclaim priority */
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800135 /*
136 * statistics.
137 */
138 struct mem_cgroup_stat stat;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800139};
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800140static struct mem_cgroup init_mem_cgroup;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800141
142/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800143 * We use the lower bit of the page->page_cgroup pointer as a bit spin
Hugh Dickins9442ec92008-03-04 14:29:07 -0800144 * lock. We need to ensure that page->page_cgroup is at least two
145 * byte aligned (based on comments from Nick Piggin). But since
146 * bit_spin_lock doesn't actually set that lock bit in a non-debug
147 * uniprocessor kernel, we should avoid setting it here too.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800148 */
149#define PAGE_CGROUP_LOCK_BIT 0x0
Hugh Dickins9442ec92008-03-04 14:29:07 -0800150#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
151#define PAGE_CGROUP_LOCK (1 << PAGE_CGROUP_LOCK_BIT)
152#else
153#define PAGE_CGROUP_LOCK 0x0
154#endif
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800155
156/*
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800157 * A page_cgroup page is associated with every page descriptor. The
158 * page_cgroup helps us identify information about the cgroup
159 */
160struct page_cgroup {
161 struct list_head lru; /* per cgroup LRU list */
162 struct page *page;
163 struct mem_cgroup *mem_cgroup;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800164 int ref_cnt; /* cached, mapped, migrating */
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800165 int flags;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800166};
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800167#define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800168#define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* page is active in this cgroup */
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800169
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800170static int page_cgroup_nid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800171{
172 return page_to_nid(pc->page);
173}
174
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800175static enum zone_type page_cgroup_zid(struct page_cgroup *pc)
KAMEZAWA Hiroyukic01495302008-02-07 00:14:30 -0800176{
177 return page_zonenum(pc->page);
178}
179
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800180enum charge_type {
181 MEM_CGROUP_CHARGE_TYPE_CACHE = 0,
182 MEM_CGROUP_CHARGE_TYPE_MAPPED,
183};
184
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800185/*
186 * Always modified under lru lock. Then, not necessary to preempt_disable()
187 */
188static void mem_cgroup_charge_statistics(struct mem_cgroup *mem, int flags,
189 bool charge)
190{
191 int val = (charge)? 1 : -1;
192 struct mem_cgroup_stat *stat = &mem->stat;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800193
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800194 VM_BUG_ON(!irqs_disabled());
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800195 if (flags & PAGE_CGROUP_FLAG_CACHE)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800196 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_CACHE, val);
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800197 else
198 __mem_cgroup_stat_add_safe(stat, MEM_CGROUP_STAT_RSS, val);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800199}
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800200
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800201static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800202mem_cgroup_zoneinfo(struct mem_cgroup *mem, int nid, int zid)
203{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800204 return &mem->info.nodeinfo[nid]->zoneinfo[zid];
205}
206
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800207static struct mem_cgroup_per_zone *
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800208page_cgroup_zoneinfo(struct page_cgroup *pc)
209{
210 struct mem_cgroup *mem = pc->mem_cgroup;
211 int nid = page_cgroup_nid(pc);
212 int zid = page_cgroup_zid(pc);
213
214 return mem_cgroup_zoneinfo(mem, nid, zid);
215}
216
217static unsigned long mem_cgroup_get_all_zonestat(struct mem_cgroup *mem,
218 enum mem_cgroup_zstat_index idx)
219{
220 int nid, zid;
221 struct mem_cgroup_per_zone *mz;
222 u64 total = 0;
223
224 for_each_online_node(nid)
225 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
226 mz = mem_cgroup_zoneinfo(mem, nid, zid);
227 total += MEM_CGROUP_ZSTAT(mz, idx);
228 }
229 return total;
KAMEZAWA Hiroyukid52aa412008-02-07 00:14:24 -0800230}
231
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800232static struct mem_cgroup *mem_cgroup_from_cont(struct cgroup *cont)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800233{
234 return container_of(cgroup_subsys_state(cont,
235 mem_cgroup_subsys_id), struct mem_cgroup,
236 css);
237}
238
Balbir Singhcf475ad2008-04-29 01:00:16 -0700239struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800240{
241 return container_of(task_subsys_state(p, mem_cgroup_subsys_id),
242 struct mem_cgroup, css);
243}
244
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800245static inline int page_cgroup_locked(struct page *page)
246{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800247 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800248}
249
Hugh Dickins9442ec92008-03-04 14:29:07 -0800250static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800251{
Hugh Dickins9442ec92008-03-04 14:29:07 -0800252 VM_BUG_ON(!page_cgroup_locked(page));
253 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800254}
255
256struct page_cgroup *page_get_page_cgroup(struct page *page)
257{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800258 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800259}
260
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800261static void lock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800262{
263 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800264}
265
Hugh Dickins2680eed2008-03-04 14:29:13 -0800266static int try_lock_page_cgroup(struct page *page)
267{
268 return bit_spin_trylock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
269}
270
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800271static void unlock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800272{
273 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
274}
275
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800276static void __mem_cgroup_remove_list(struct page_cgroup *pc)
277{
278 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
279 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
280
281 if (from)
282 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
283 else
284 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
285
286 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
287 list_del_init(&pc->lru);
288}
289
290static void __mem_cgroup_add_list(struct page_cgroup *pc)
291{
292 int to = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
293 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
294
295 if (!to) {
296 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800297 list_add(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800298 } else {
299 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800300 list_add(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800301 }
302 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
303}
304
Balbir Singh8697d332008-02-07 00:13:59 -0800305static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800306{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800307 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
308 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
309
310 if (from)
311 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
312 else
313 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
314
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800315 if (active) {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800316 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800317 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800318 list_move(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800319 } else {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800320 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800321 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800322 list_move(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800323 }
Balbir Singh66e17072008-02-07 00:13:56 -0800324}
325
David Rientjes4c4a2212008-02-07 00:14:06 -0800326int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
327{
328 int ret;
329
330 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800331 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800332 task_unlock(task);
333 return ret;
334}
335
Balbir Singh66e17072008-02-07 00:13:56 -0800336/*
337 * This routine assumes that the appropriate zone's lru lock is already held
338 */
Hugh Dickins427d5412008-03-04 14:29:03 -0800339void mem_cgroup_move_lists(struct page *page, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800340{
Hugh Dickins427d5412008-03-04 14:29:03 -0800341 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800342 struct mem_cgroup_per_zone *mz;
343 unsigned long flags;
344
Hugh Dickins2680eed2008-03-04 14:29:13 -0800345 /*
346 * We cannot lock_page_cgroup while holding zone's lru_lock,
347 * because other holders of lock_page_cgroup can be interrupted
348 * with an attempt to rotate_reclaimable_page. But we cannot
349 * safely get to page_cgroup without it, so just try_lock it:
350 * mem_cgroup_isolate_pages allows for page left on wrong list.
351 */
352 if (!try_lock_page_cgroup(page))
Balbir Singh66e17072008-02-07 00:13:56 -0800353 return;
354
Hugh Dickins2680eed2008-03-04 14:29:13 -0800355 pc = page_get_page_cgroup(page);
356 if (pc) {
Hugh Dickins2680eed2008-03-04 14:29:13 -0800357 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800358 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800359 __mem_cgroup_move_lists(pc, active);
Hugh Dickins2680eed2008-03-04 14:29:13 -0800360 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800361 }
362 unlock_page_cgroup(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800363}
364
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800365/*
366 * Calculate mapped_ratio under memory controller. This will be used in
367 * vmscan.c for deteremining we have to reclaim mapped pages.
368 */
369int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
370{
371 long total, rss;
372
373 /*
374 * usage is recorded in bytes. But, here, we assume the number of
375 * physical pages can be represented by "long" on any arch.
376 */
377 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
378 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
379 return (int)((rss * 100L) / total);
380}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800381
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800382/*
383 * This function is called from vmscan.c. In page reclaiming loop. balance
384 * between active and inactive list is calculated. For memory controller
385 * page reclaiming, we should use using mem_cgroup's imbalance rather than
386 * zone's global lru imbalance.
387 */
388long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
389{
390 unsigned long active, inactive;
391 /* active and inactive are the number of pages. 'long' is ok.*/
392 active = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_ACTIVE);
393 inactive = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_INACTIVE);
394 return (long) (active / (inactive + 1));
395}
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800396
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800397/*
398 * prev_priority control...this will be used in memory reclaim path.
399 */
400int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
401{
402 return mem->prev_priority;
403}
404
405void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
406{
407 if (priority < mem->prev_priority)
408 mem->prev_priority = priority;
409}
410
411void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
412{
413 mem->prev_priority = priority;
414}
415
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800416/*
417 * Calculate # of pages to be scanned in this priority/zone.
418 * See also vmscan.c
419 *
420 * priority starts from "DEF_PRIORITY" and decremented in each loop.
421 * (see include/linux/mmzone.h)
422 */
423
424long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
425 struct zone *zone, int priority)
426{
427 long nr_active;
428 int nid = zone->zone_pgdat->node_id;
429 int zid = zone_idx(zone);
430 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
431
432 nr_active = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE);
433 return (nr_active >> priority);
434}
435
436long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
437 struct zone *zone, int priority)
438{
439 long nr_inactive;
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_inactive = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800445 return (nr_inactive >> priority);
446}
447
Balbir Singh66e17072008-02-07 00:13:56 -0800448unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
449 struct list_head *dst,
450 unsigned long *scanned, int order,
451 int mode, struct zone *z,
452 struct mem_cgroup *mem_cont,
453 int active)
454{
455 unsigned long nr_taken = 0;
456 struct page *page;
457 unsigned long scan;
458 LIST_HEAD(pc_list);
459 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800460 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800461 int nid = z->zone_pgdat->node_id;
462 int zid = zone_idx(z);
463 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800464
Balbir Singhcf475ad2008-04-29 01:00:16 -0700465 BUG_ON(!mem_cont);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800466 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Balbir Singh66e17072008-02-07 00:13:56 -0800467 if (active)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800468 src = &mz->active_list;
Balbir Singh66e17072008-02-07 00:13:56 -0800469 else
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800470 src = &mz->inactive_list;
471
Balbir Singh66e17072008-02-07 00:13:56 -0800472
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800473 spin_lock(&mz->lru_lock);
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800474 scan = 0;
475 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800476 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800477 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800478 page = pc->page;
Balbir Singh66e17072008-02-07 00:13:56 -0800479
Hugh Dickins436c65412008-02-07 00:14:12 -0800480 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800481 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800482
Balbir Singh66e17072008-02-07 00:13:56 -0800483 if (PageActive(page) && !active) {
484 __mem_cgroup_move_lists(pc, true);
Balbir Singh66e17072008-02-07 00:13:56 -0800485 continue;
486 }
487 if (!PageActive(page) && active) {
488 __mem_cgroup_move_lists(pc, false);
Balbir Singh66e17072008-02-07 00:13:56 -0800489 continue;
490 }
491
Hugh Dickins436c65412008-02-07 00:14:12 -0800492 scan++;
493 list_move(&pc->lru, &pc_list);
Balbir Singh66e17072008-02-07 00:13:56 -0800494
495 if (__isolate_lru_page(page, mode) == 0) {
496 list_move(&page->lru, dst);
497 nr_taken++;
498 }
499 }
500
501 list_splice(&pc_list, src);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800502 spin_unlock(&mz->lru_lock);
Balbir Singh66e17072008-02-07 00:13:56 -0800503
504 *scanned = scan;
505 return nr_taken;
506}
507
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800508/*
509 * Charge the memory controller for page usage.
510 * Return
511 * 0 if the charge was successful
512 * < 0 if the cgroup is over its limit
513 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800514static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
515 gfp_t gfp_mask, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800516{
517 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800518 struct page_cgroup *pc;
Balbir Singh66e17072008-02-07 00:13:56 -0800519 unsigned long flags;
520 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800521 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800522
Balbir Singh40779602008-04-04 14:29:59 -0700523 if (mem_cgroup_subsys.disabled)
524 return 0;
525
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800526 /*
527 * Should page_cgroup's go to their own slab?
528 * One could optimize the performance of the charging routine
529 * by saving a bit in the page_flags and using it as a lock
530 * to see if the cgroup page already has a page_cgroup associated
531 * with it
532 */
Balbir Singh66e17072008-02-07 00:13:56 -0800533retry:
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800534 lock_page_cgroup(page);
535 pc = page_get_page_cgroup(page);
536 /*
537 * The page_cgroup exists and
538 * the page has already been accounted.
539 */
540 if (pc) {
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800541 VM_BUG_ON(pc->page != page);
542 VM_BUG_ON(pc->ref_cnt <= 0);
543
544 pc->ref_cnt++;
545 unlock_page_cgroup(page);
546 goto done;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800547 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800548 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800549
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800550 pc = kzalloc(sizeof(struct page_cgroup), gfp_mask);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800551 if (pc == NULL)
552 goto err;
553
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800554 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800555 * We always charge the cgroup the mm_struct belongs to.
556 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800557 * thread group leader migrates. It's possible that mm is not
558 * set, if so charge the init_mm (happens for pagecache usage).
559 */
560 if (!mm)
561 mm = &init_mm;
562
Hugh Dickins3be91272008-02-07 00:14:19 -0800563 rcu_read_lock();
Balbir Singhcf475ad2008-04-29 01:00:16 -0700564 mem = mem_cgroup_from_task(rcu_dereference(mm->owner));
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800565 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800566 * For every charge from the cgroup, increment reference count
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800567 */
568 css_get(&mem->css);
569 rcu_read_unlock();
570
Balbir Singh0eea1032008-02-07 00:13:57 -0800571 while (res_counter_charge(&mem->res, PAGE_SIZE)) {
Hugh Dickins3be91272008-02-07 00:14:19 -0800572 if (!(gfp_mask & __GFP_WAIT))
573 goto out;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800574
575 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
Balbir Singh66e17072008-02-07 00:13:56 -0800576 continue;
577
578 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800579 * try_to_free_mem_cgroup_pages() might not give us a full
580 * picture of reclaim. Some pages are reclaimed and might be
581 * moved to swap cache or just unmapped from the cgroup.
582 * Check the limit again to see if the reclaim reduced the
583 * current usage of the cgroup before giving up
584 */
Balbir Singh66e17072008-02-07 00:13:56 -0800585 if (res_counter_check_under_limit(&mem->res))
586 continue;
Hugh Dickins3be91272008-02-07 00:14:19 -0800587
588 if (!nr_retries--) {
589 mem_cgroup_out_of_memory(mem, gfp_mask);
590 goto out;
Balbir Singh66e17072008-02-07 00:13:56 -0800591 }
Hugh Dickins3be91272008-02-07 00:14:19 -0800592 congestion_wait(WRITE, HZ/10);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800593 }
594
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800595 pc->ref_cnt = 1;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800596 pc->mem_cgroup = mem;
597 pc->page = page;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800598 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800599 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE)
600 pc->flags |= PAGE_CGROUP_FLAG_CACHE;
Hugh Dickins3be91272008-02-07 00:14:19 -0800601
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800602 lock_page_cgroup(page);
603 if (page_get_page_cgroup(page)) {
604 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800605 /*
Hugh Dickins3be91272008-02-07 00:14:19 -0800606 * Another charge has been added to this page already.
607 * We take lock_page_cgroup(page) again and read
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800608 * page->cgroup, increment refcnt.... just retry is OK.
609 */
610 res_counter_uncharge(&mem->res, PAGE_SIZE);
611 css_put(&mem->css);
612 kfree(pc);
613 goto retry;
614 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800615 page_assign_page_cgroup(page, pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800616
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800617 mz = page_cgroup_zoneinfo(pc);
618 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800619 __mem_cgroup_add_list(pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800620 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800621
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800622 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800623done:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800624 return 0;
Hugh Dickins3be91272008-02-07 00:14:19 -0800625out:
626 css_put(&mem->css);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800627 kfree(pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800628err:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800629 return -ENOMEM;
630}
631
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800632int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800633{
634 return mem_cgroup_charge_common(page, mm, gfp_mask,
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800635 MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800636}
637
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800638int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
639 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -0800640{
Balbir Singh8697d332008-02-07 00:13:59 -0800641 if (!mm)
642 mm = &init_mm;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800643 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800644 MEM_CGROUP_CHARGE_TYPE_CACHE);
Balbir Singh8697d332008-02-07 00:13:59 -0800645}
646
647/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800648 * Uncharging is always a welcome operation, we never complain, simply
Hugh Dickins82895462008-03-04 14:29:08 -0800649 * uncharge.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800650 */
Hugh Dickins82895462008-03-04 14:29:08 -0800651void mem_cgroup_uncharge_page(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800652{
Hugh Dickins82895462008-03-04 14:29:08 -0800653 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800654 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800655 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800656 unsigned long flags;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800657
Balbir Singh40779602008-04-04 14:29:59 -0700658 if (mem_cgroup_subsys.disabled)
659 return;
660
Balbir Singh8697d332008-02-07 00:13:59 -0800661 /*
Balbir Singh3c541e12008-02-07 00:14:41 -0800662 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -0800663 */
Hugh Dickins82895462008-03-04 14:29:08 -0800664 lock_page_cgroup(page);
665 pc = page_get_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800666 if (!pc)
Hugh Dickins82895462008-03-04 14:29:08 -0800667 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800668
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800669 VM_BUG_ON(pc->page != page);
670 VM_BUG_ON(pc->ref_cnt <= 0);
671
672 if (--(pc->ref_cnt) == 0) {
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800673 mz = page_cgroup_zoneinfo(pc);
674 spin_lock_irqsave(&mz->lru_lock, flags);
675 __mem_cgroup_remove_list(pc);
676 spin_unlock_irqrestore(&mz->lru_lock, flags);
677
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800678 page_assign_page_cgroup(page, NULL);
679 unlock_page_cgroup(page);
680
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800681 mem = pc->mem_cgroup;
682 res_counter_uncharge(&mem->res, PAGE_SIZE);
683 css_put(&mem->css);
684
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800685 kfree(pc);
686 return;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800687 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800688
Hugh Dickins82895462008-03-04 14:29:08 -0800689unlock:
Balbir Singh3c541e12008-02-07 00:14:41 -0800690 unlock_page_cgroup(page);
691}
692
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800693/*
694 * Returns non-zero if a page (under migration) has valid page_cgroup member.
695 * Refcnt of page_cgroup is incremented.
696 */
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800697int mem_cgroup_prepare_migration(struct page *page)
698{
699 struct page_cgroup *pc;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800700
Balbir Singh40779602008-04-04 14:29:59 -0700701 if (mem_cgroup_subsys.disabled)
702 return 0;
703
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800704 lock_page_cgroup(page);
705 pc = page_get_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800706 if (pc)
707 pc->ref_cnt++;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800708 unlock_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800709 return pc != NULL;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800710}
711
712void mem_cgroup_end_migration(struct page *page)
713{
Hugh Dickins82895462008-03-04 14:29:08 -0800714 mem_cgroup_uncharge_page(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800715}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800716
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800717/*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800718 * We know both *page* and *newpage* are now not-on-LRU and PG_locked.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800719 * And no race with uncharge() routines because page_cgroup for *page*
720 * has extra one reference by mem_cgroup_prepare_migration.
721 */
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800722void mem_cgroup_page_migration(struct page *page, struct page *newpage)
723{
724 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800725 struct mem_cgroup_per_zone *mz;
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800726 unsigned long flags;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800727
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800728 lock_page_cgroup(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800729 pc = page_get_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800730 if (!pc) {
731 unlock_page_cgroup(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800732 return;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800733 }
734
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800735 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800736 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800737 __mem_cgroup_remove_list(pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800738 spin_unlock_irqrestore(&mz->lru_lock, flags);
739
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800740 page_assign_page_cgroup(page, NULL);
741 unlock_page_cgroup(page);
742
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800743 pc->page = newpage;
744 lock_page_cgroup(newpage);
745 page_assign_page_cgroup(newpage, pc);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800746
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800747 mz = page_cgroup_zoneinfo(pc);
748 spin_lock_irqsave(&mz->lru_lock, flags);
749 __mem_cgroup_add_list(pc);
750 spin_unlock_irqrestore(&mz->lru_lock, flags);
Hugh Dickinsfb59e9f2008-03-04 14:29:16 -0800751
752 unlock_page_cgroup(newpage);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800753}
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800754
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800755/*
756 * This routine traverse page_cgroup in given list and drop them all.
757 * This routine ignores page_cgroup->ref_cnt.
758 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
759 */
760#define FORCE_UNCHARGE_BATCH (128)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800761static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800762 struct mem_cgroup_per_zone *mz,
763 int active)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800764{
765 struct page_cgroup *pc;
766 struct page *page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800767 int count = FORCE_UNCHARGE_BATCH;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800768 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800769 struct list_head *list;
770
771 if (active)
772 list = &mz->active_list;
773 else
774 list = &mz->inactive_list;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800775
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800776 spin_lock_irqsave(&mz->lru_lock, flags);
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800777 while (!list_empty(list)) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800778 pc = list_entry(list->prev, struct page_cgroup, lru);
779 page = pc->page;
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800780 get_page(page);
781 spin_unlock_irqrestore(&mz->lru_lock, flags);
782 mem_cgroup_uncharge_page(page);
783 put_page(page);
784 if (--count <= 0) {
785 count = FORCE_UNCHARGE_BATCH;
786 cond_resched();
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800787 }
Hirokazu Takahashi9b3c0a02008-03-04 14:29:15 -0800788 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800789 }
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800790 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800791}
792
793/*
794 * make mem_cgroup's charge to be 0 if there is no task.
795 * This enables deleting this mem_cgroup.
796 */
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800797static int mem_cgroup_force_empty(struct mem_cgroup *mem)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800798{
799 int ret = -EBUSY;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800800 int node, zid;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800801
Balbir Singh40779602008-04-04 14:29:59 -0700802 if (mem_cgroup_subsys.disabled)
803 return 0;
804
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800805 css_get(&mem->css);
806 /*
807 * page reclaim code (kswapd etc..) will move pages between
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800808 * active_list <-> inactive_list while we don't take a lock.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800809 * So, we have to do loop here until all lists are empty.
810 */
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800811 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800812 if (atomic_read(&mem->css.cgroup->count) > 0)
813 goto out;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800814 for_each_node_state(node, N_POSSIBLE)
815 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
816 struct mem_cgroup_per_zone *mz;
817 mz = mem_cgroup_zoneinfo(mem, node, zid);
818 /* drop all page_cgroup in active_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800819 mem_cgroup_force_empty_list(mem, mz, 1);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800820 /* drop all page_cgroup in inactive_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800821 mem_cgroup_force_empty_list(mem, mz, 0);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800822 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800823 }
824 ret = 0;
825out:
826 css_put(&mem->css);
827 return ret;
828}
829
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800830static int mem_cgroup_write_strategy(char *buf, unsigned long long *tmp)
Balbir Singh0eea1032008-02-07 00:13:57 -0800831{
832 *tmp = memparse(buf, &buf);
833 if (*buf != '\0')
834 return -EINVAL;
835
836 /*
837 * Round up the value to the closest page size
838 */
839 *tmp = ((*tmp + PAGE_SIZE - 1) >> PAGE_SHIFT) << PAGE_SHIFT;
840 return 0;
841}
842
Paul Menage2c3daa72008-04-29 00:59:58 -0700843static u64 mem_cgroup_read(struct cgroup *cont, struct cftype *cft)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800844{
Paul Menage2c3daa72008-04-29 00:59:58 -0700845 return res_counter_read_u64(&mem_cgroup_from_cont(cont)->res,
846 cft->private);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800847}
848
849static ssize_t mem_cgroup_write(struct cgroup *cont, struct cftype *cft,
850 struct file *file, const char __user *userbuf,
851 size_t nbytes, loff_t *ppos)
852{
853 return res_counter_write(&mem_cgroup_from_cont(cont)->res,
Balbir Singh0eea1032008-02-07 00:13:57 -0800854 cft->private, userbuf, nbytes, ppos,
855 mem_cgroup_write_strategy);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800856}
857
Pavel Emelyanovc84872e2008-04-29 01:00:17 -0700858static ssize_t mem_cgroup_max_reset(struct cgroup *cont, struct cftype *cft,
859 struct file *file, const char __user *userbuf,
860 size_t nbytes, loff_t *ppos)
861{
862 struct mem_cgroup *mem;
863
864 mem = mem_cgroup_from_cont(cont);
865 res_counter_reset_max(&mem->res);
866 return nbytes;
867}
868
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800869static ssize_t mem_force_empty_write(struct cgroup *cont,
870 struct cftype *cft, struct file *file,
871 const char __user *userbuf,
872 size_t nbytes, loff_t *ppos)
873{
874 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800875 int ret = mem_cgroup_force_empty(mem);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800876 if (!ret)
877 ret = nbytes;
878 return ret;
879}
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,
926 .write = mem_cgroup_max_reset,
927 .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,
Paul Menage2c3daa72008-04-29 00:59:58 -0700938 .read_u64 = mem_cgroup_read,
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800939 },
Balbir Singh8697d332008-02-07 00:13:59 -0800940 {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800941 .name = "force_empty",
942 .write = mem_force_empty_write,
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800943 },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800944 {
945 .name = "stat",
Paul Menagec64745c2008-04-29 01:00:02 -0700946 .read_map = mem_control_stat_show,
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800947 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800948};
949
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800950static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
951{
952 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800953 struct mem_cgroup_per_zone *mz;
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -0700954 int zone, tmp = node;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800955 /*
956 * This routine is called against possible nodes.
957 * But it's BUG to call kmalloc() against offline node.
958 *
959 * TODO: this routine can waste much memory for nodes which will
960 * never be onlined. It's better to use memory hotplug callback
961 * function.
962 */
KAMEZAWA Hiroyuki41e33552008-04-08 17:41:54 -0700963 if (!node_state(node, N_NORMAL_MEMORY))
964 tmp = -1;
965 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, tmp);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800966 if (!pn)
967 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800968
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800969 mem->info.nodeinfo[node] = pn;
970 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800971
972 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
973 mz = &pn->zoneinfo[zone];
974 INIT_LIST_HEAD(&mz->active_list);
975 INIT_LIST_HEAD(&mz->inactive_list);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800976 spin_lock_init(&mz->lru_lock);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800977 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800978 return 0;
979}
980
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800981static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
982{
983 kfree(mem->info.nodeinfo[node]);
984}
985
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800986static struct cgroup_subsys_state *
987mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
988{
989 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800990 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800991
Balbir Singhcf475ad2008-04-29 01:00:16 -0700992 if (unlikely((cont->parent) == NULL))
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800993 mem = &init_mem_cgroup;
Balbir Singhcf475ad2008-04-29 01:00:16 -0700994 else
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800995 mem = kzalloc(sizeof(struct mem_cgroup), GFP_KERNEL);
996
997 if (mem == NULL)
Li Zefan2dda81c2008-02-23 15:24:14 -0800998 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800999
1000 res_counter_init(&mem->res);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001001
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001002 memset(&mem->info, 0, sizeof(mem->info));
1003
1004 for_each_node_state(node, N_POSSIBLE)
1005 if (alloc_mem_cgroup_per_zone_info(mem, node))
1006 goto free_out;
1007
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001008 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001009free_out:
1010 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001011 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001012 if (cont->parent != NULL)
1013 kfree(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08001014 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001015}
1016
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001017static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1018 struct cgroup *cont)
1019{
1020 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1021 mem_cgroup_force_empty(mem);
1022}
1023
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001024static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1025 struct cgroup *cont)
1026{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001027 int node;
1028 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1029
1030 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001031 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001032
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001033 kfree(mem_cgroup_from_cont(cont));
1034}
1035
1036static int mem_cgroup_populate(struct cgroup_subsys *ss,
1037 struct cgroup *cont)
1038{
Balbir Singh40779602008-04-04 14:29:59 -07001039 if (mem_cgroup_subsys.disabled)
1040 return 0;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001041 return cgroup_add_files(cont, ss, mem_cgroup_files,
1042 ARRAY_SIZE(mem_cgroup_files));
1043}
1044
Balbir Singh67e465a2008-02-07 00:13:54 -08001045static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1046 struct cgroup *cont,
1047 struct cgroup *old_cont,
1048 struct task_struct *p)
1049{
1050 struct mm_struct *mm;
1051 struct mem_cgroup *mem, *old_mem;
1052
Balbir Singh40779602008-04-04 14:29:59 -07001053 if (mem_cgroup_subsys.disabled)
1054 return;
1055
Balbir Singh67e465a2008-02-07 00:13:54 -08001056 mm = get_task_mm(p);
1057 if (mm == NULL)
1058 return;
1059
1060 mem = mem_cgroup_from_cont(cont);
1061 old_mem = mem_cgroup_from_cont(old_cont);
1062
1063 if (mem == old_mem)
1064 goto out;
1065
1066 /*
1067 * Only thread group leaders are allowed to migrate, the mm_struct is
1068 * in effect owned by the leader
1069 */
Pavel Emelyanov52ea27e2008-03-19 17:00:45 -07001070 if (!thread_group_leader(p))
Balbir Singh67e465a2008-02-07 00:13:54 -08001071 goto out;
1072
Balbir Singh67e465a2008-02-07 00:13:54 -08001073out:
1074 mmput(mm);
Balbir Singh67e465a2008-02-07 00:13:54 -08001075}
1076
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001077struct cgroup_subsys mem_cgroup_subsys = {
1078 .name = "memory",
1079 .subsys_id = mem_cgroup_subsys_id,
1080 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001081 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001082 .destroy = mem_cgroup_destroy,
1083 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08001084 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001085 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001086};