drivers/net/ipg: Remove invalid IPG_DDEBUG_MSG uses, neaten
[linux-2.6/x86.git] / mm / page_cgroup.c
blob3dd88539a0e6b47876ec87a91ee093533e1392c9
1 #include <linux/mm.h>
2 #include <linux/mmzone.h>
3 #include <linux/bootmem.h>
4 #include <linux/bit_spinlock.h>
5 #include <linux/page_cgroup.h>
6 #include <linux/hash.h>
7 #include <linux/slab.h>
8 #include <linux/memory.h>
9 #include <linux/vmalloc.h>
10 #include <linux/cgroup.h>
11 #include <linux/swapops.h>
13 static void __meminit
14 __init_page_cgroup(struct page_cgroup *pc, unsigned long pfn)
16 pc->flags = 0;
17 pc->mem_cgroup = NULL;
18 pc->page = pfn_to_page(pfn);
19 INIT_LIST_HEAD(&pc->lru);
21 static unsigned long total_usage;
23 #if !defined(CONFIG_SPARSEMEM)
26 void __meminit pgdat_page_cgroup_init(struct pglist_data *pgdat)
28 pgdat->node_page_cgroup = NULL;
31 struct page_cgroup *lookup_page_cgroup(struct page *page)
33 unsigned long pfn = page_to_pfn(page);
34 unsigned long offset;
35 struct page_cgroup *base;
37 base = NODE_DATA(page_to_nid(page))->node_page_cgroup;
38 if (unlikely(!base))
39 return NULL;
41 offset = pfn - NODE_DATA(page_to_nid(page))->node_start_pfn;
42 return base + offset;
45 static int __init alloc_node_page_cgroup(int nid)
47 struct page_cgroup *base, *pc;
48 unsigned long table_size;
49 unsigned long start_pfn, nr_pages, index;
51 start_pfn = NODE_DATA(nid)->node_start_pfn;
52 nr_pages = NODE_DATA(nid)->node_spanned_pages;
54 if (!nr_pages)
55 return 0;
57 table_size = sizeof(struct page_cgroup) * nr_pages;
59 base = __alloc_bootmem_node_nopanic(NODE_DATA(nid),
60 table_size, PAGE_SIZE, __pa(MAX_DMA_ADDRESS));
61 if (!base)
62 return -ENOMEM;
63 for (index = 0; index < nr_pages; index++) {
64 pc = base + index;
65 __init_page_cgroup(pc, start_pfn + index);
67 NODE_DATA(nid)->node_page_cgroup = base;
68 total_usage += table_size;
69 return 0;
72 void __init page_cgroup_init_flatmem(void)
75 int nid, fail;
77 if (mem_cgroup_disabled())
78 return;
80 for_each_online_node(nid) {
81 fail = alloc_node_page_cgroup(nid);
82 if (fail)
83 goto fail;
85 printk(KERN_INFO "allocated %ld bytes of page_cgroup\n", total_usage);
86 printk(KERN_INFO "please try 'cgroup_disable=memory' option if you"
87 " don't want memory cgroups\n");
88 return;
89 fail:
90 printk(KERN_CRIT "allocation of page_cgroup failed.\n");
91 printk(KERN_CRIT "please try 'cgroup_disable=memory' boot option\n");
92 panic("Out of memory");
95 #else /* CONFIG_FLAT_NODE_MEM_MAP */
97 struct page_cgroup *lookup_page_cgroup(struct page *page)
99 unsigned long pfn = page_to_pfn(page);
100 struct mem_section *section = __pfn_to_section(pfn);
102 if (!section->page_cgroup)
103 return NULL;
104 return section->page_cgroup + pfn;
107 /* __alloc_bootmem...() is protected by !slab_available() */
108 static int __init_refok init_section_page_cgroup(unsigned long pfn)
110 struct mem_section *section = __pfn_to_section(pfn);
111 struct page_cgroup *base, *pc;
112 unsigned long table_size;
113 int nid, index;
115 if (!section->page_cgroup) {
116 nid = page_to_nid(pfn_to_page(pfn));
117 table_size = sizeof(struct page_cgroup) * PAGES_PER_SECTION;
118 VM_BUG_ON(!slab_is_available());
119 if (node_state(nid, N_HIGH_MEMORY)) {
120 base = kmalloc_node(table_size,
121 GFP_KERNEL | __GFP_NOWARN, nid);
122 if (!base)
123 base = vmalloc_node(table_size, nid);
124 } else {
125 base = kmalloc(table_size, GFP_KERNEL | __GFP_NOWARN);
126 if (!base)
127 base = vmalloc(table_size);
129 } else {
131 * We don't have to allocate page_cgroup again, but
132 * address of memmap may be changed. So, we have to initialize
133 * again.
135 base = section->page_cgroup + pfn;
136 table_size = 0;
137 /* check address of memmap is changed or not. */
138 if (base->page == pfn_to_page(pfn))
139 return 0;
142 if (!base) {
143 printk(KERN_ERR "page cgroup allocation failure\n");
144 return -ENOMEM;
147 for (index = 0; index < PAGES_PER_SECTION; index++) {
148 pc = base + index;
149 __init_page_cgroup(pc, pfn + index);
152 section->page_cgroup = base - pfn;
153 total_usage += table_size;
154 return 0;
156 #ifdef CONFIG_MEMORY_HOTPLUG
157 void __free_page_cgroup(unsigned long pfn)
159 struct mem_section *ms;
160 struct page_cgroup *base;
162 ms = __pfn_to_section(pfn);
163 if (!ms || !ms->page_cgroup)
164 return;
165 base = ms->page_cgroup + pfn;
166 if (is_vmalloc_addr(base)) {
167 vfree(base);
168 ms->page_cgroup = NULL;
169 } else {
170 struct page *page = virt_to_page(base);
171 if (!PageReserved(page)) { /* Is bootmem ? */
172 kfree(base);
173 ms->page_cgroup = NULL;
178 int __meminit online_page_cgroup(unsigned long start_pfn,
179 unsigned long nr_pages,
180 int nid)
182 unsigned long start, end, pfn;
183 int fail = 0;
185 start = start_pfn & ~(PAGES_PER_SECTION - 1);
186 end = ALIGN(start_pfn + nr_pages, PAGES_PER_SECTION);
188 for (pfn = start; !fail && pfn < end; pfn += PAGES_PER_SECTION) {
189 if (!pfn_present(pfn))
190 continue;
191 fail = init_section_page_cgroup(pfn);
193 if (!fail)
194 return 0;
196 /* rollback */
197 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION)
198 __free_page_cgroup(pfn);
200 return -ENOMEM;
203 int __meminit offline_page_cgroup(unsigned long start_pfn,
204 unsigned long nr_pages, int nid)
206 unsigned long start, end, pfn;
208 start = start_pfn & ~(PAGES_PER_SECTION - 1);
209 end = ALIGN(start_pfn + nr_pages, PAGES_PER_SECTION);
211 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION)
212 __free_page_cgroup(pfn);
213 return 0;
217 static int __meminit page_cgroup_callback(struct notifier_block *self,
218 unsigned long action, void *arg)
220 struct memory_notify *mn = arg;
221 int ret = 0;
222 switch (action) {
223 case MEM_GOING_ONLINE:
224 ret = online_page_cgroup(mn->start_pfn,
225 mn->nr_pages, mn->status_change_nid);
226 break;
227 case MEM_OFFLINE:
228 offline_page_cgroup(mn->start_pfn,
229 mn->nr_pages, mn->status_change_nid);
230 break;
231 case MEM_CANCEL_ONLINE:
232 case MEM_GOING_OFFLINE:
233 break;
234 case MEM_ONLINE:
235 case MEM_CANCEL_OFFLINE:
236 break;
239 if (ret)
240 ret = notifier_from_errno(ret);
241 else
242 ret = NOTIFY_OK;
244 return ret;
247 #endif
249 void __init page_cgroup_init(void)
251 unsigned long pfn;
252 int fail = 0;
254 if (mem_cgroup_disabled())
255 return;
257 for (pfn = 0; !fail && pfn < max_pfn; pfn += PAGES_PER_SECTION) {
258 if (!pfn_present(pfn))
259 continue;
260 fail = init_section_page_cgroup(pfn);
262 if (fail) {
263 printk(KERN_CRIT "try 'cgroup_disable=memory' boot option\n");
264 panic("Out of memory");
265 } else {
266 hotplug_memory_notifier(page_cgroup_callback, 0);
268 printk(KERN_INFO "allocated %ld bytes of page_cgroup\n", total_usage);
269 printk(KERN_INFO "please try 'cgroup_disable=memory' option if you don't"
270 " want memory cgroups\n");
273 void __meminit pgdat_page_cgroup_init(struct pglist_data *pgdat)
275 return;
278 #endif
281 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
283 static DEFINE_MUTEX(swap_cgroup_mutex);
284 struct swap_cgroup_ctrl {
285 struct page **map;
286 unsigned long length;
289 struct swap_cgroup_ctrl swap_cgroup_ctrl[MAX_SWAPFILES];
291 struct swap_cgroup {
292 unsigned short id;
294 #define SC_PER_PAGE (PAGE_SIZE/sizeof(struct swap_cgroup))
295 #define SC_POS_MASK (SC_PER_PAGE - 1)
298 * SwapCgroup implements "lookup" and "exchange" operations.
299 * In typical usage, this swap_cgroup is accessed via memcg's charge/uncharge
300 * against SwapCache. At swap_free(), this is accessed directly from swap.
302 * This means,
303 * - we have no race in "exchange" when we're accessed via SwapCache because
304 * SwapCache(and its swp_entry) is under lock.
305 * - When called via swap_free(), there is no user of this entry and no race.
306 * Then, we don't need lock around "exchange".
308 * TODO: we can push these buffers out to HIGHMEM.
312 * allocate buffer for swap_cgroup.
314 static int swap_cgroup_prepare(int type)
316 struct page *page;
317 struct swap_cgroup_ctrl *ctrl;
318 unsigned long idx, max;
320 ctrl = &swap_cgroup_ctrl[type];
322 for (idx = 0; idx < ctrl->length; idx++) {
323 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
324 if (!page)
325 goto not_enough_page;
326 ctrl->map[idx] = page;
328 return 0;
329 not_enough_page:
330 max = idx;
331 for (idx = 0; idx < max; idx++)
332 __free_page(ctrl->map[idx]);
334 return -ENOMEM;
338 * swap_cgroup_cmpxchg - cmpxchg mem_cgroup's id for this swp_entry.
339 * @end: swap entry to be cmpxchged
340 * @old: old id
341 * @new: new id
343 * Returns old id at success, 0 at failure.
344 * (There is no mem_cgroup useing 0 as its id)
346 unsigned short swap_cgroup_cmpxchg(swp_entry_t ent,
347 unsigned short old, unsigned short new)
349 int type = swp_type(ent);
350 unsigned long offset = swp_offset(ent);
351 unsigned long idx = offset / SC_PER_PAGE;
352 unsigned long pos = offset & SC_POS_MASK;
353 struct swap_cgroup_ctrl *ctrl;
354 struct page *mappage;
355 struct swap_cgroup *sc;
357 ctrl = &swap_cgroup_ctrl[type];
359 mappage = ctrl->map[idx];
360 sc = page_address(mappage);
361 sc += pos;
362 if (cmpxchg(&sc->id, old, new) == old)
363 return old;
364 else
365 return 0;
369 * swap_cgroup_record - record mem_cgroup for this swp_entry.
370 * @ent: swap entry to be recorded into
371 * @mem: mem_cgroup to be recorded
373 * Returns old value at success, 0 at failure.
374 * (Of course, old value can be 0.)
376 unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id)
378 int type = swp_type(ent);
379 unsigned long offset = swp_offset(ent);
380 unsigned long idx = offset / SC_PER_PAGE;
381 unsigned long pos = offset & SC_POS_MASK;
382 struct swap_cgroup_ctrl *ctrl;
383 struct page *mappage;
384 struct swap_cgroup *sc;
385 unsigned short old;
387 ctrl = &swap_cgroup_ctrl[type];
389 mappage = ctrl->map[idx];
390 sc = page_address(mappage);
391 sc += pos;
392 old = xchg(&sc->id, id);
394 return old;
398 * lookup_swap_cgroup - lookup mem_cgroup tied to swap entry
399 * @ent: swap entry to be looked up.
401 * Returns CSS ID of mem_cgroup at success. 0 at failure. (0 is invalid ID)
403 unsigned short lookup_swap_cgroup(swp_entry_t ent)
405 int type = swp_type(ent);
406 unsigned long offset = swp_offset(ent);
407 unsigned long idx = offset / SC_PER_PAGE;
408 unsigned long pos = offset & SC_POS_MASK;
409 struct swap_cgroup_ctrl *ctrl;
410 struct page *mappage;
411 struct swap_cgroup *sc;
412 unsigned short ret;
414 ctrl = &swap_cgroup_ctrl[type];
415 mappage = ctrl->map[idx];
416 sc = page_address(mappage);
417 sc += pos;
418 ret = sc->id;
419 return ret;
422 int swap_cgroup_swapon(int type, unsigned long max_pages)
424 void *array;
425 unsigned long array_size;
426 unsigned long length;
427 struct swap_cgroup_ctrl *ctrl;
429 if (!do_swap_account)
430 return 0;
432 length = ((max_pages/SC_PER_PAGE) + 1);
433 array_size = length * sizeof(void *);
435 array = vmalloc(array_size);
436 if (!array)
437 goto nomem;
439 memset(array, 0, array_size);
440 ctrl = &swap_cgroup_ctrl[type];
441 mutex_lock(&swap_cgroup_mutex);
442 ctrl->length = length;
443 ctrl->map = array;
444 if (swap_cgroup_prepare(type)) {
445 /* memory shortage */
446 ctrl->map = NULL;
447 ctrl->length = 0;
448 vfree(array);
449 mutex_unlock(&swap_cgroup_mutex);
450 goto nomem;
452 mutex_unlock(&swap_cgroup_mutex);
454 return 0;
455 nomem:
456 printk(KERN_INFO "couldn't allocate enough memory for swap_cgroup.\n");
457 printk(KERN_INFO
458 "swap_cgroup can be disabled by noswapaccount boot option\n");
459 return -ENOMEM;
462 void swap_cgroup_swapoff(int type)
464 int i;
465 struct swap_cgroup_ctrl *ctrl;
467 if (!do_swap_account)
468 return;
470 mutex_lock(&swap_cgroup_mutex);
471 ctrl = &swap_cgroup_ctrl[type];
472 if (ctrl->map) {
473 for (i = 0; i < ctrl->length; i++) {
474 struct page *page = ctrl->map[i];
475 if (page)
476 __free_page(page);
478 vfree(ctrl->map);
479 ctrl->map = NULL;
480 ctrl->length = 0;
482 mutex_unlock(&swap_cgroup_mutex);
485 #endif