blob: 66d0e84cefa6533174e08d7c86006953f4bbd68a [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
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800239static struct 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
245void mm_init_cgroup(struct mm_struct *mm, struct task_struct *p)
246{
247 struct mem_cgroup *mem;
248
249 mem = mem_cgroup_from_task(p);
250 css_get(&mem->css);
251 mm->mem_cgroup = mem;
252}
253
254void mm_free_cgroup(struct mm_struct *mm)
255{
256 css_put(&mm->mem_cgroup->css);
257}
258
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800259static inline int page_cgroup_locked(struct page *page)
260{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800261 return bit_spin_is_locked(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800262}
263
Hugh Dickins9442ec92008-03-04 14:29:07 -0800264static void page_assign_page_cgroup(struct page *page, struct page_cgroup *pc)
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800265{
Hugh Dickins9442ec92008-03-04 14:29:07 -0800266 VM_BUG_ON(!page_cgroup_locked(page));
267 page->page_cgroup = ((unsigned long)pc | PAGE_CGROUP_LOCK);
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800268}
269
270struct page_cgroup *page_get_page_cgroup(struct page *page)
271{
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800272 return (struct page_cgroup *) (page->page_cgroup & ~PAGE_CGROUP_LOCK);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800273}
274
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800275static void lock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800276{
277 bit_spin_lock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800278}
279
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800280static void unlock_page_cgroup(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800281{
282 bit_spin_unlock(PAGE_CGROUP_LOCK_BIT, &page->page_cgroup);
283}
284
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800285static void __mem_cgroup_remove_list(struct page_cgroup *pc)
286{
287 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
288 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
289
290 if (from)
291 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
292 else
293 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
294
295 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, false);
296 list_del_init(&pc->lru);
297}
298
299static void __mem_cgroup_add_list(struct page_cgroup *pc)
300{
301 int to = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
302 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
303
304 if (!to) {
305 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800306 list_add(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800307 } else {
308 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800309 list_add(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800310 }
311 mem_cgroup_charge_statistics(pc->mem_cgroup, pc->flags, true);
312}
313
Balbir Singh8697d332008-02-07 00:13:59 -0800314static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800315{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800316 int from = pc->flags & PAGE_CGROUP_FLAG_ACTIVE;
317 struct mem_cgroup_per_zone *mz = page_cgroup_zoneinfo(pc);
318
319 if (from)
320 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) -= 1;
321 else
322 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) -= 1;
323
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800324 if (active) {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800325 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800326 pc->flags |= PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800327 list_move(&pc->lru, &mz->active_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800328 } else {
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800329 MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE) += 1;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800330 pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800331 list_move(&pc->lru, &mz->inactive_list);
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800332 }
Balbir Singh66e17072008-02-07 00:13:56 -0800333}
334
David Rientjes4c4a2212008-02-07 00:14:06 -0800335int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
336{
337 int ret;
338
339 task_lock(task);
Hugh Dickinsbd845e32008-03-04 14:29:01 -0800340 ret = task->mm && mm_match_cgroup(task->mm, mem);
David Rientjes4c4a2212008-02-07 00:14:06 -0800341 task_unlock(task);
342 return ret;
343}
344
Balbir Singh66e17072008-02-07 00:13:56 -0800345/*
346 * This routine assumes that the appropriate zone's lru lock is already held
347 */
Hugh Dickins427d5412008-03-04 14:29:03 -0800348void mem_cgroup_move_lists(struct page *page, bool active)
Balbir Singh66e17072008-02-07 00:13:56 -0800349{
Hugh Dickins427d5412008-03-04 14:29:03 -0800350 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800351 struct mem_cgroup_per_zone *mz;
352 unsigned long flags;
353
Hugh Dickins427d5412008-03-04 14:29:03 -0800354 pc = page_get_page_cgroup(page);
Balbir Singh66e17072008-02-07 00:13:56 -0800355 if (!pc)
356 return;
357
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800358 mz = page_cgroup_zoneinfo(pc);
359 spin_lock_irqsave(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800360 __mem_cgroup_move_lists(pc, active);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800361 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800362}
363
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800364/*
365 * Calculate mapped_ratio under memory controller. This will be used in
366 * vmscan.c for deteremining we have to reclaim mapped pages.
367 */
368int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem)
369{
370 long total, rss;
371
372 /*
373 * usage is recorded in bytes. But, here, we assume the number of
374 * physical pages can be represented by "long" on any arch.
375 */
376 total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L;
377 rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS);
378 return (int)((rss * 100L) / total);
379}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800380
KAMEZAWA Hiroyuki5932f362008-02-07 00:14:33 -0800381/*
382 * This function is called from vmscan.c. In page reclaiming loop. balance
383 * between active and inactive list is calculated. For memory controller
384 * page reclaiming, we should use using mem_cgroup's imbalance rather than
385 * zone's global lru imbalance.
386 */
387long mem_cgroup_reclaim_imbalance(struct mem_cgroup *mem)
388{
389 unsigned long active, inactive;
390 /* active and inactive are the number of pages. 'long' is ok.*/
391 active = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_ACTIVE);
392 inactive = mem_cgroup_get_all_zonestat(mem, MEM_CGROUP_ZSTAT_INACTIVE);
393 return (long) (active / (inactive + 1));
394}
KAMEZAWA Hiroyuki58ae83d2008-02-07 00:14:32 -0800395
KAMEZAWA Hiroyuki6c48a1d2008-02-07 00:14:34 -0800396/*
397 * prev_priority control...this will be used in memory reclaim path.
398 */
399int mem_cgroup_get_reclaim_priority(struct mem_cgroup *mem)
400{
401 return mem->prev_priority;
402}
403
404void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, int priority)
405{
406 if (priority < mem->prev_priority)
407 mem->prev_priority = priority;
408}
409
410void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, int priority)
411{
412 mem->prev_priority = priority;
413}
414
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800415/*
416 * Calculate # of pages to be scanned in this priority/zone.
417 * See also vmscan.c
418 *
419 * priority starts from "DEF_PRIORITY" and decremented in each loop.
420 * (see include/linux/mmzone.h)
421 */
422
423long mem_cgroup_calc_reclaim_active(struct mem_cgroup *mem,
424 struct zone *zone, int priority)
425{
426 long nr_active;
427 int nid = zone->zone_pgdat->node_id;
428 int zid = zone_idx(zone);
429 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
430
431 nr_active = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_ACTIVE);
432 return (nr_active >> priority);
433}
434
435long mem_cgroup_calc_reclaim_inactive(struct mem_cgroup *mem,
436 struct zone *zone, int priority)
437{
438 long nr_inactive;
439 int nid = zone->zone_pgdat->node_id;
440 int zid = zone_idx(zone);
441 struct mem_cgroup_per_zone *mz = mem_cgroup_zoneinfo(mem, nid, zid);
442
443 nr_inactive = MEM_CGROUP_ZSTAT(mz, MEM_CGROUP_ZSTAT_INACTIVE);
KAMEZAWA Hiroyukicc381082008-02-07 00:14:35 -0800444 return (nr_inactive >> priority);
445}
446
Balbir Singh66e17072008-02-07 00:13:56 -0800447unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan,
448 struct list_head *dst,
449 unsigned long *scanned, int order,
450 int mode, struct zone *z,
451 struct mem_cgroup *mem_cont,
452 int active)
453{
454 unsigned long nr_taken = 0;
455 struct page *page;
456 unsigned long scan;
457 LIST_HEAD(pc_list);
458 struct list_head *src;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800459 struct page_cgroup *pc, *tmp;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800460 int nid = z->zone_pgdat->node_id;
461 int zid = zone_idx(z);
462 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800463
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800464 mz = mem_cgroup_zoneinfo(mem_cont, nid, zid);
Balbir Singh66e17072008-02-07 00:13:56 -0800465 if (active)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800466 src = &mz->active_list;
Balbir Singh66e17072008-02-07 00:13:56 -0800467 else
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800468 src = &mz->inactive_list;
469
Balbir Singh66e17072008-02-07 00:13:56 -0800470
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800471 spin_lock(&mz->lru_lock);
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800472 scan = 0;
473 list_for_each_entry_safe_reverse(pc, tmp, src, lru) {
Hugh Dickins436c65412008-02-07 00:14:12 -0800474 if (scan >= nr_to_scan)
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800475 break;
Balbir Singh66e17072008-02-07 00:13:56 -0800476 page = pc->page;
Balbir Singh66e17072008-02-07 00:13:56 -0800477
Hugh Dickins436c65412008-02-07 00:14:12 -0800478 if (unlikely(!PageLRU(page)))
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800479 continue;
KAMEZAWA Hiroyukiff7283f2008-02-07 00:14:11 -0800480
Balbir Singh66e17072008-02-07 00:13:56 -0800481 if (PageActive(page) && !active) {
482 __mem_cgroup_move_lists(pc, true);
Balbir Singh66e17072008-02-07 00:13:56 -0800483 continue;
484 }
485 if (!PageActive(page) && active) {
486 __mem_cgroup_move_lists(pc, false);
Balbir Singh66e17072008-02-07 00:13:56 -0800487 continue;
488 }
489
Hugh Dickins436c65412008-02-07 00:14:12 -0800490 scan++;
491 list_move(&pc->lru, &pc_list);
Balbir Singh66e17072008-02-07 00:13:56 -0800492
493 if (__isolate_lru_page(page, mode) == 0) {
494 list_move(&page->lru, dst);
495 nr_taken++;
496 }
497 }
498
499 list_splice(&pc_list, src);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800500 spin_unlock(&mz->lru_lock);
Balbir Singh66e17072008-02-07 00:13:56 -0800501
502 *scanned = scan;
503 return nr_taken;
504}
505
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800506/*
507 * Charge the memory controller for page usage.
508 * Return
509 * 0 if the charge was successful
510 * < 0 if the cgroup is over its limit
511 */
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800512static int mem_cgroup_charge_common(struct page *page, struct mm_struct *mm,
513 gfp_t gfp_mask, enum charge_type ctype)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800514{
515 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800516 struct page_cgroup *pc;
Balbir Singh66e17072008-02-07 00:13:56 -0800517 unsigned long flags;
518 unsigned long nr_retries = MEM_CGROUP_RECLAIM_RETRIES;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800519 struct mem_cgroup_per_zone *mz;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800520
521 /*
522 * Should page_cgroup's go to their own slab?
523 * One could optimize the performance of the charging routine
524 * by saving a bit in the page_flags and using it as a lock
525 * to see if the cgroup page already has a page_cgroup associated
526 * with it
527 */
Balbir Singh66e17072008-02-07 00:13:56 -0800528retry:
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800529 lock_page_cgroup(page);
530 pc = page_get_page_cgroup(page);
531 /*
532 * The page_cgroup exists and
533 * the page has already been accounted.
534 */
535 if (pc) {
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800536 VM_BUG_ON(pc->page != page);
537 VM_BUG_ON(pc->ref_cnt <= 0);
538
539 pc->ref_cnt++;
540 unlock_page_cgroup(page);
541 goto done;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800542 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800543 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800544
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800545 pc = kzalloc(sizeof(struct page_cgroup), gfp_mask);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800546 if (pc == NULL)
547 goto err;
548
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800549 /*
Hugh Dickins3be912772008-02-07 00:14:19 -0800550 * We always charge the cgroup the mm_struct belongs to.
551 * The mm_struct's mem_cgroup changes on task migration if the
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800552 * thread group leader migrates. It's possible that mm is not
553 * set, if so charge the init_mm (happens for pagecache usage).
554 */
555 if (!mm)
556 mm = &init_mm;
557
Hugh Dickins3be912772008-02-07 00:14:19 -0800558 rcu_read_lock();
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800559 mem = rcu_dereference(mm->mem_cgroup);
560 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800561 * For every charge from the cgroup, increment reference count
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800562 */
563 css_get(&mem->css);
564 rcu_read_unlock();
565
Balbir Singh0eea1032008-02-07 00:13:57 -0800566 while (res_counter_charge(&mem->res, PAGE_SIZE)) {
Hugh Dickins3be912772008-02-07 00:14:19 -0800567 if (!(gfp_mask & __GFP_WAIT))
568 goto out;
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800569
570 if (try_to_free_mem_cgroup_pages(mem, gfp_mask))
Balbir Singh66e17072008-02-07 00:13:56 -0800571 continue;
572
573 /*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800574 * try_to_free_mem_cgroup_pages() might not give us a full
575 * picture of reclaim. Some pages are reclaimed and might be
576 * moved to swap cache or just unmapped from the cgroup.
577 * Check the limit again to see if the reclaim reduced the
578 * current usage of the cgroup before giving up
579 */
Balbir Singh66e17072008-02-07 00:13:56 -0800580 if (res_counter_check_under_limit(&mem->res))
581 continue;
Hugh Dickins3be912772008-02-07 00:14:19 -0800582
583 if (!nr_retries--) {
584 mem_cgroup_out_of_memory(mem, gfp_mask);
585 goto out;
Balbir Singh66e17072008-02-07 00:13:56 -0800586 }
Hugh Dickins3be912772008-02-07 00:14:19 -0800587 congestion_wait(WRITE, HZ/10);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800588 }
589
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800590 pc->ref_cnt = 1;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800591 pc->mem_cgroup = mem;
592 pc->page = page;
KAMEZAWA Hiroyuki3564c7c2008-02-07 00:14:23 -0800593 pc->flags = PAGE_CGROUP_FLAG_ACTIVE;
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800594 if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE)
595 pc->flags |= PAGE_CGROUP_FLAG_CACHE;
Hugh Dickins3be912772008-02-07 00:14:19 -0800596
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800597 lock_page_cgroup(page);
598 if (page_get_page_cgroup(page)) {
599 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800600 /*
Hugh Dickins3be912772008-02-07 00:14:19 -0800601 * Another charge has been added to this page already.
602 * We take lock_page_cgroup(page) again and read
KAMEZAWA Hiroyuki9175e032008-02-07 00:14:08 -0800603 * page->cgroup, increment refcnt.... just retry is OK.
604 */
605 res_counter_uncharge(&mem->res, PAGE_SIZE);
606 css_put(&mem->css);
607 kfree(pc);
608 goto retry;
609 }
Hugh Dickins7e924aa2008-03-04 14:29:08 -0800610 page_assign_page_cgroup(page, pc);
611 unlock_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800612
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800613 mz = page_cgroup_zoneinfo(pc);
614 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800615 __mem_cgroup_add_list(pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800616 spin_unlock_irqrestore(&mz->lru_lock, flags);
Balbir Singh66e17072008-02-07 00:13:56 -0800617
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800618done:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800619 return 0;
Hugh Dickins3be912772008-02-07 00:14:19 -0800620out:
621 css_put(&mem->css);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800622 kfree(pc);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800623err:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800624 return -ENOMEM;
625}
626
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800627int mem_cgroup_charge(struct page *page, struct mm_struct *mm, gfp_t gfp_mask)
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800628{
629 return mem_cgroup_charge_common(page, mm, gfp_mask,
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800630 MEM_CGROUP_CHARGE_TYPE_MAPPED);
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800631}
632
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800633int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
634 gfp_t gfp_mask)
Balbir Singh8697d332008-02-07 00:13:59 -0800635{
Balbir Singh8697d332008-02-07 00:13:59 -0800636 if (!mm)
637 mm = &init_mm;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800638 return mem_cgroup_charge_common(page, mm, gfp_mask,
KAMEZAWA Hiroyuki217bc312008-02-07 00:14:17 -0800639 MEM_CGROUP_CHARGE_TYPE_CACHE);
Balbir Singh8697d332008-02-07 00:13:59 -0800640}
641
642/*
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800643 * Uncharging is always a welcome operation, we never complain, simply
Hugh Dickins82895462008-03-04 14:29:08 -0800644 * uncharge.
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800645 */
Hugh Dickins82895462008-03-04 14:29:08 -0800646void mem_cgroup_uncharge_page(struct page *page)
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800647{
Hugh Dickins82895462008-03-04 14:29:08 -0800648 struct page_cgroup *pc;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800649 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800650 struct mem_cgroup_per_zone *mz;
Balbir Singh66e17072008-02-07 00:13:56 -0800651 unsigned long flags;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800652
Balbir Singh8697d332008-02-07 00:13:59 -0800653 /*
Balbir Singh3c541e12008-02-07 00:14:41 -0800654 * Check if our page_cgroup is valid
Balbir Singh8697d332008-02-07 00:13:59 -0800655 */
Hugh Dickins82895462008-03-04 14:29:08 -0800656 lock_page_cgroup(page);
657 pc = page_get_page_cgroup(page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800658 if (!pc)
Hugh Dickins82895462008-03-04 14:29:08 -0800659 goto unlock;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800660
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800661 VM_BUG_ON(pc->page != page);
662 VM_BUG_ON(pc->ref_cnt <= 0);
663
664 if (--(pc->ref_cnt) == 0) {
665 page_assign_page_cgroup(page, NULL);
Balbir Singh3c541e12008-02-07 00:14:41 -0800666 unlock_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800667
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800668 mz = page_cgroup_zoneinfo(pc);
669 spin_lock_irqsave(&mz->lru_lock, flags);
670 __mem_cgroup_remove_list(pc);
671 spin_unlock_irqrestore(&mz->lru_lock, flags);
672
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800673 mem = pc->mem_cgroup;
674 res_counter_uncharge(&mem->res, PAGE_SIZE);
675 css_put(&mem->css);
676
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800677 kfree(pc);
678 return;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800679 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800680
Hugh Dickins82895462008-03-04 14:29:08 -0800681unlock:
Balbir Singh3c541e12008-02-07 00:14:41 -0800682 unlock_page_cgroup(page);
683}
684
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800685/*
686 * Returns non-zero if a page (under migration) has valid page_cgroup member.
687 * Refcnt of page_cgroup is incremented.
688 */
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800689int mem_cgroup_prepare_migration(struct page *page)
690{
691 struct page_cgroup *pc;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800692
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800693 lock_page_cgroup(page);
694 pc = page_get_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800695 if (pc)
696 pc->ref_cnt++;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800697 unlock_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800698 return pc != NULL;
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800699}
700
701void mem_cgroup_end_migration(struct page *page)
702{
Hugh Dickins82895462008-03-04 14:29:08 -0800703 mem_cgroup_uncharge_page(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800704}
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800705
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800706/*
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800707 * We know both *page* and *newpage* are now not-on-LRU and PG_locked.
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800708 * And no race with uncharge() routines because page_cgroup for *page*
709 * has extra one reference by mem_cgroup_prepare_migration.
710 */
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800711void mem_cgroup_page_migration(struct page *page, struct page *newpage)
712{
713 struct page_cgroup *pc;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800714 struct mem_cgroup_per_zone *mz;
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800715 unsigned long flags;
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800716
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800717 lock_page_cgroup(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800718 pc = page_get_page_cgroup(page);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800719 if (!pc) {
720 unlock_page_cgroup(page);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800721 return;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800722 }
723
724 page_assign_page_cgroup(page, NULL);
725 unlock_page_cgroup(page);
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800726
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800727 mz = page_cgroup_zoneinfo(pc);
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800728 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800729 __mem_cgroup_remove_list(pc);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800730 spin_unlock_irqrestore(&mz->lru_lock, flags);
731
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800732 pc->page = newpage;
733 lock_page_cgroup(newpage);
734 page_assign_page_cgroup(newpage, pc);
735 unlock_page_cgroup(newpage);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800736
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800737 mz = page_cgroup_zoneinfo(pc);
738 spin_lock_irqsave(&mz->lru_lock, flags);
739 __mem_cgroup_add_list(pc);
740 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukiae41be32008-02-07 00:14:10 -0800741}
Pavel Emelianov78fb7462008-02-07 00:13:51 -0800742
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800743/*
744 * This routine traverse page_cgroup in given list and drop them all.
745 * This routine ignores page_cgroup->ref_cnt.
746 * *And* this routine doesn't reclaim page itself, just removes page_cgroup.
747 */
748#define FORCE_UNCHARGE_BATCH (128)
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800749static void mem_cgroup_force_empty_list(struct mem_cgroup *mem,
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800750 struct mem_cgroup_per_zone *mz,
751 int active)
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800752{
753 struct page_cgroup *pc;
754 struct page *page;
755 int count;
756 unsigned long flags;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800757 struct list_head *list;
758
759 if (active)
760 list = &mz->active_list;
761 else
762 list = &mz->inactive_list;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800763
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800764 if (list_empty(list))
765 return;
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800766retry:
767 count = FORCE_UNCHARGE_BATCH;
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800768 spin_lock_irqsave(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800769
770 while (--count && !list_empty(list)) {
771 pc = list_entry(list->prev, struct page_cgroup, lru);
772 page = pc->page;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800773 lock_page_cgroup(page);
774 if (page_get_page_cgroup(page) == pc) {
775 page_assign_page_cgroup(page, NULL);
776 unlock_page_cgroup(page);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800777 __mem_cgroup_remove_list(pc);
Hugh Dickins6d48ff82008-03-04 14:29:12 -0800778 res_counter_uncharge(&mem->res, PAGE_SIZE);
779 css_put(&mem->css);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800780 kfree(pc);
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800781 } else {
782 /* racing uncharge: let page go then retry */
783 unlock_page_cgroup(page);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800784 break;
Hugh Dickinsb9c565d2008-03-04 14:29:11 -0800785 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800786 }
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800787
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800788 spin_unlock_irqrestore(&mz->lru_lock, flags);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800789 if (!list_empty(list)) {
790 cond_resched();
791 goto retry;
792 }
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
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800804 css_get(&mem->css);
805 /*
806 * page reclaim code (kswapd etc..) will move pages between
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800807 * active_list <-> inactive_list while we don't take a lock.
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800808 * So, we have to do loop here until all lists are empty.
809 */
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800810 while (mem->res.usage > 0) {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800811 if (atomic_read(&mem->css.cgroup->count) > 0)
812 goto out;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800813 for_each_node_state(node, N_POSSIBLE)
814 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
815 struct mem_cgroup_per_zone *mz;
816 mz = mem_cgroup_zoneinfo(mem, node, zid);
817 /* drop all page_cgroup in active_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800818 mem_cgroup_force_empty_list(mem, mz, 1);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800819 /* drop all page_cgroup in inactive_list */
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800820 mem_cgroup_force_empty_list(mem, mz, 0);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800821 }
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800822 }
823 ret = 0;
824out:
825 css_put(&mem->css);
826 return ret;
827}
828
Hugh Dickinsd5b69e32008-03-04 14:29:10 -0800829static int mem_cgroup_write_strategy(char *buf, unsigned long long *tmp)
Balbir Singh0eea1032008-02-07 00:13:57 -0800830{
831 *tmp = memparse(buf, &buf);
832 if (*buf != '\0')
833 return -EINVAL;
834
835 /*
836 * Round up the value to the closest page size
837 */
838 *tmp = ((*tmp + PAGE_SIZE - 1) >> PAGE_SHIFT) << PAGE_SHIFT;
839 return 0;
840}
841
842static ssize_t mem_cgroup_read(struct cgroup *cont,
843 struct cftype *cft, struct file *file,
844 char __user *userbuf, size_t nbytes, loff_t *ppos)
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800845{
846 return res_counter_read(&mem_cgroup_from_cont(cont)->res,
Balbir Singh0eea1032008-02-07 00:13:57 -0800847 cft->private, userbuf, nbytes, ppos,
848 NULL);
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
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800860static ssize_t mem_force_empty_write(struct cgroup *cont,
861 struct cftype *cft, struct file *file,
862 const char __user *userbuf,
863 size_t nbytes, loff_t *ppos)
864{
865 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
Hugh Dickins8869b8f2008-03-04 14:29:09 -0800866 int ret = mem_cgroup_force_empty(mem);
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800867 if (!ret)
868 ret = nbytes;
869 return ret;
870}
871
872/*
873 * Note: This should be removed if cgroup supports write-only file.
874 */
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800875static ssize_t mem_force_empty_read(struct cgroup *cont,
876 struct cftype *cft,
877 struct file *file, char __user *userbuf,
878 size_t nbytes, loff_t *ppos)
879{
880 return -EINVAL;
881}
882
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800883static const struct mem_cgroup_stat_desc {
884 const char *msg;
885 u64 unit;
886} mem_cgroup_stat_desc[] = {
887 [MEM_CGROUP_STAT_CACHE] = { "cache", PAGE_SIZE, },
888 [MEM_CGROUP_STAT_RSS] = { "rss", PAGE_SIZE, },
889};
890
891static int mem_control_stat_show(struct seq_file *m, void *arg)
892{
893 struct cgroup *cont = m->private;
894 struct mem_cgroup *mem_cont = mem_cgroup_from_cont(cont);
895 struct mem_cgroup_stat *stat = &mem_cont->stat;
896 int i;
897
898 for (i = 0; i < ARRAY_SIZE(stat->cpustat[0].count); i++) {
899 s64 val;
900
901 val = mem_cgroup_read_stat(stat, i);
902 val *= mem_cgroup_stat_desc[i].unit;
903 seq_printf(m, "%s %lld\n", mem_cgroup_stat_desc[i].msg,
904 (long long)val);
905 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800906 /* showing # of active pages */
907 {
908 unsigned long active, inactive;
909
910 inactive = mem_cgroup_get_all_zonestat(mem_cont,
911 MEM_CGROUP_ZSTAT_INACTIVE);
912 active = mem_cgroup_get_all_zonestat(mem_cont,
913 MEM_CGROUP_ZSTAT_ACTIVE);
914 seq_printf(m, "active %ld\n", (active) * PAGE_SIZE);
915 seq_printf(m, "inactive %ld\n", (inactive) * PAGE_SIZE);
916 }
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800917 return 0;
918}
919
920static const struct file_operations mem_control_stat_file_operations = {
921 .read = seq_read,
922 .llseek = seq_lseek,
923 .release = single_release,
924};
925
926static int mem_control_stat_open(struct inode *unused, struct file *file)
927{
928 /* XXX __d_cont */
929 struct cgroup *cont = file->f_dentry->d_parent->d_fsdata;
930
931 file->f_op = &mem_control_stat_file_operations;
932 return single_open(file, mem_control_stat_show, cont);
933}
934
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800935static struct cftype mem_cgroup_files[] = {
936 {
Balbir Singh0eea1032008-02-07 00:13:57 -0800937 .name = "usage_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800938 .private = RES_USAGE,
939 .read = mem_cgroup_read,
940 },
941 {
Balbir Singh0eea1032008-02-07 00:13:57 -0800942 .name = "limit_in_bytes",
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800943 .private = RES_LIMIT,
944 .write = mem_cgroup_write,
945 .read = mem_cgroup_read,
946 },
947 {
948 .name = "failcnt",
949 .private = RES_FAILCNT,
950 .read = mem_cgroup_read,
951 },
Balbir Singh8697d332008-02-07 00:13:59 -0800952 {
KAMEZAWA Hiroyukicc847582008-02-07 00:14:16 -0800953 .name = "force_empty",
954 .write = mem_force_empty_write,
955 .read = mem_force_empty_read,
956 },
KAMEZAWA Hiroyukid2ceb9b2008-02-07 00:14:25 -0800957 {
958 .name = "stat",
959 .open = mem_control_stat_open,
960 },
Balbir Singh8cdea7c2008-02-07 00:13:50 -0800961};
962
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800963static int alloc_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
964{
965 struct mem_cgroup_per_node *pn;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800966 struct mem_cgroup_per_zone *mz;
967 int zone;
968 /*
969 * This routine is called against possible nodes.
970 * But it's BUG to call kmalloc() against offline node.
971 *
972 * TODO: this routine can waste much memory for nodes which will
973 * never be onlined. It's better to use memory hotplug callback
974 * function.
975 */
976 if (node_state(node, N_HIGH_MEMORY))
977 pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, node);
978 else
979 pn = kmalloc(sizeof(*pn), GFP_KERNEL);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800980 if (!pn)
981 return 1;
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800982
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800983 mem->info.nodeinfo[node] = pn;
984 memset(pn, 0, sizeof(*pn));
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800985
986 for (zone = 0; zone < MAX_NR_ZONES; zone++) {
987 mz = &pn->zoneinfo[zone];
988 INIT_LIST_HEAD(&mz->active_list);
989 INIT_LIST_HEAD(&mz->inactive_list);
KAMEZAWA Hiroyuki072c56c12008-02-07 00:14:39 -0800990 spin_lock_init(&mz->lru_lock);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800991 }
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -0800992 return 0;
993}
994
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -0800995static void free_mem_cgroup_per_zone_info(struct mem_cgroup *mem, int node)
996{
997 kfree(mem->info.nodeinfo[node]);
998}
999
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001000static struct cgroup_subsys_state *
1001mem_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cont)
1002{
1003 struct mem_cgroup *mem;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001004 int node;
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001005
Pavel Emelianov78fb7462008-02-07 00:13:51 -08001006 if (unlikely((cont->parent) == NULL)) {
1007 mem = &init_mem_cgroup;
1008 init_mm.mem_cgroup = mem;
1009 } else
1010 mem = kzalloc(sizeof(struct mem_cgroup), GFP_KERNEL);
1011
1012 if (mem == NULL)
Li Zefan2dda81c2008-02-23 15:24:14 -08001013 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001014
1015 res_counter_init(&mem->res);
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001016
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001017 memset(&mem->info, 0, sizeof(mem->info));
1018
1019 for_each_node_state(node, N_POSSIBLE)
1020 if (alloc_mem_cgroup_per_zone_info(mem, node))
1021 goto free_out;
1022
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001023 return &mem->css;
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001024free_out:
1025 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001026 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001027 if (cont->parent != NULL)
1028 kfree(mem);
Li Zefan2dda81c2008-02-23 15:24:14 -08001029 return ERR_PTR(-ENOMEM);
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001030}
1031
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001032static void mem_cgroup_pre_destroy(struct cgroup_subsys *ss,
1033 struct cgroup *cont)
1034{
1035 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1036 mem_cgroup_force_empty(mem);
1037}
1038
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001039static void mem_cgroup_destroy(struct cgroup_subsys *ss,
1040 struct cgroup *cont)
1041{
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001042 int node;
1043 struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
1044
1045 for_each_node_state(node, N_POSSIBLE)
KAMEZAWA Hiroyuki1ecaab22008-02-07 00:14:38 -08001046 free_mem_cgroup_per_zone_info(mem, node);
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001047
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001048 kfree(mem_cgroup_from_cont(cont));
1049}
1050
1051static int mem_cgroup_populate(struct cgroup_subsys *ss,
1052 struct cgroup *cont)
1053{
1054 return cgroup_add_files(cont, ss, mem_cgroup_files,
1055 ARRAY_SIZE(mem_cgroup_files));
1056}
1057
Balbir Singh67e465a2008-02-07 00:13:54 -08001058static void mem_cgroup_move_task(struct cgroup_subsys *ss,
1059 struct cgroup *cont,
1060 struct cgroup *old_cont,
1061 struct task_struct *p)
1062{
1063 struct mm_struct *mm;
1064 struct mem_cgroup *mem, *old_mem;
1065
1066 mm = get_task_mm(p);
1067 if (mm == NULL)
1068 return;
1069
1070 mem = mem_cgroup_from_cont(cont);
1071 old_mem = mem_cgroup_from_cont(old_cont);
1072
1073 if (mem == old_mem)
1074 goto out;
1075
1076 /*
1077 * Only thread group leaders are allowed to migrate, the mm_struct is
1078 * in effect owned by the leader
1079 */
1080 if (p->tgid != p->pid)
1081 goto out;
1082
1083 css_get(&mem->css);
1084 rcu_assign_pointer(mm->mem_cgroup, mem);
1085 css_put(&old_mem->css);
1086
1087out:
1088 mmput(mm);
Balbir Singh67e465a2008-02-07 00:13:54 -08001089}
1090
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001091struct cgroup_subsys mem_cgroup_subsys = {
1092 .name = "memory",
1093 .subsys_id = mem_cgroup_subsys_id,
1094 .create = mem_cgroup_create,
KAMEZAWA Hiroyukidf878fb2008-02-07 00:14:28 -08001095 .pre_destroy = mem_cgroup_pre_destroy,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001096 .destroy = mem_cgroup_destroy,
1097 .populate = mem_cgroup_populate,
Balbir Singh67e465a2008-02-07 00:13:54 -08001098 .attach = mem_cgroup_move_task,
KAMEZAWA Hiroyuki6d12e2d2008-02-07 00:14:31 -08001099 .early_init = 0,
Balbir Singh8cdea7c2008-02-07 00:13:50 -08001100};