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>
12 #include <linux/kmemleak.h>
14 static unsigned long total_usage
;
16 #if !defined(CONFIG_SPARSEMEM)
19 void __meminit
pgdat_page_cgroup_init(struct pglist_data
*pgdat
)
21 pgdat
->node_page_cgroup
= NULL
;
24 struct page_cgroup
*lookup_page_cgroup(struct page
*page
)
26 unsigned long pfn
= page_to_pfn(page
);
28 struct page_cgroup
*base
;
30 base
= NODE_DATA(page_to_nid(page
))->node_page_cgroup
;
31 #ifdef CONFIG_DEBUG_VM
33 * The sanity checks the page allocator does upon freeing a
34 * page can reach here before the page_cgroup arrays are
35 * allocated when feeding a range of pages to the allocator
36 * for the first time during bootup or memory hotplug.
41 offset
= pfn
- NODE_DATA(page_to_nid(page
))->node_start_pfn
;
45 static int __init
alloc_node_page_cgroup(int nid
)
47 struct page_cgroup
*base
;
48 unsigned long table_size
;
49 unsigned long nr_pages
;
51 nr_pages
= NODE_DATA(nid
)->node_spanned_pages
;
55 table_size
= sizeof(struct page_cgroup
) * nr_pages
;
57 base
= memblock_virt_alloc_try_nid_nopanic(
58 table_size
, PAGE_SIZE
, __pa(MAX_DMA_ADDRESS
),
59 BOOTMEM_ALLOC_ACCESSIBLE
, nid
);
62 NODE_DATA(nid
)->node_page_cgroup
= base
;
63 total_usage
+= table_size
;
67 void __init
page_cgroup_init_flatmem(void)
72 if (mem_cgroup_disabled())
75 for_each_online_node(nid
) {
76 fail
= alloc_node_page_cgroup(nid
);
80 printk(KERN_INFO
"allocated %ld bytes of page_cgroup\n", total_usage
);
81 printk(KERN_INFO
"please try 'cgroup_disable=memory' option if you"
82 " don't want memory cgroups\n");
85 printk(KERN_CRIT
"allocation of page_cgroup failed.\n");
86 printk(KERN_CRIT
"please try 'cgroup_disable=memory' boot option\n");
87 panic("Out of memory");
90 #else /* CONFIG_FLAT_NODE_MEM_MAP */
92 struct page_cgroup
*lookup_page_cgroup(struct page
*page
)
94 unsigned long pfn
= page_to_pfn(page
);
95 struct mem_section
*section
= __pfn_to_section(pfn
);
96 #ifdef CONFIG_DEBUG_VM
98 * The sanity checks the page allocator does upon freeing a
99 * page can reach here before the page_cgroup arrays are
100 * allocated when feeding a range of pages to the allocator
101 * for the first time during bootup or memory hotplug.
103 if (!section
->page_cgroup
)
106 return section
->page_cgroup
+ pfn
;
109 static void *__meminit
alloc_page_cgroup(size_t size
, int nid
)
111 gfp_t flags
= GFP_KERNEL
| __GFP_ZERO
| __GFP_NOWARN
;
114 addr
= alloc_pages_exact_nid(nid
, size
, flags
);
116 kmemleak_alloc(addr
, size
, 1, flags
);
120 if (node_state(nid
, N_HIGH_MEMORY
))
121 addr
= vzalloc_node(size
, nid
);
123 addr
= vzalloc(size
);
128 static int __meminit
init_section_page_cgroup(unsigned long pfn
, int nid
)
130 struct mem_section
*section
;
131 struct page_cgroup
*base
;
132 unsigned long table_size
;
134 section
= __pfn_to_section(pfn
);
136 if (section
->page_cgroup
)
139 table_size
= sizeof(struct page_cgroup
) * PAGES_PER_SECTION
;
140 base
= alloc_page_cgroup(table_size
, nid
);
143 * The value stored in section->page_cgroup is (base - pfn)
144 * and it does not point to the memory block allocated above,
145 * causing kmemleak false positives.
147 kmemleak_not_leak(base
);
150 printk(KERN_ERR
"page cgroup allocation failure\n");
155 * The passed "pfn" may not be aligned to SECTION. For the calculation
156 * we need to apply a mask.
158 pfn
&= PAGE_SECTION_MASK
;
159 section
->page_cgroup
= base
- pfn
;
160 total_usage
+= table_size
;
163 #ifdef CONFIG_MEMORY_HOTPLUG
164 static void free_page_cgroup(void *addr
)
166 if (is_vmalloc_addr(addr
)) {
169 struct page
*page
= virt_to_page(addr
);
171 sizeof(struct page_cgroup
) * PAGES_PER_SECTION
;
173 BUG_ON(PageReserved(page
));
175 free_pages_exact(addr
, table_size
);
179 void __free_page_cgroup(unsigned long pfn
)
181 struct mem_section
*ms
;
182 struct page_cgroup
*base
;
184 ms
= __pfn_to_section(pfn
);
185 if (!ms
|| !ms
->page_cgroup
)
187 base
= ms
->page_cgroup
+ pfn
;
188 free_page_cgroup(base
);
189 ms
->page_cgroup
= NULL
;
192 int __meminit
online_page_cgroup(unsigned long start_pfn
,
193 unsigned long nr_pages
,
196 unsigned long start
, end
, pfn
;
199 start
= SECTION_ALIGN_DOWN(start_pfn
);
200 end
= SECTION_ALIGN_UP(start_pfn
+ nr_pages
);
204 * In this case, "nid" already exists and contains valid memory.
205 * "start_pfn" passed to us is a pfn which is an arg for
206 * online__pages(), and start_pfn should exist.
208 nid
= pfn_to_nid(start_pfn
);
209 VM_BUG_ON(!node_state(nid
, N_ONLINE
));
212 for (pfn
= start
; !fail
&& pfn
< end
; pfn
+= PAGES_PER_SECTION
) {
213 if (!pfn_present(pfn
))
215 fail
= init_section_page_cgroup(pfn
, nid
);
221 for (pfn
= start
; pfn
< end
; pfn
+= PAGES_PER_SECTION
)
222 __free_page_cgroup(pfn
);
227 int __meminit
offline_page_cgroup(unsigned long start_pfn
,
228 unsigned long nr_pages
, int nid
)
230 unsigned long start
, end
, pfn
;
232 start
= SECTION_ALIGN_DOWN(start_pfn
);
233 end
= SECTION_ALIGN_UP(start_pfn
+ nr_pages
);
235 for (pfn
= start
; pfn
< end
; pfn
+= PAGES_PER_SECTION
)
236 __free_page_cgroup(pfn
);
241 static int __meminit
page_cgroup_callback(struct notifier_block
*self
,
242 unsigned long action
, void *arg
)
244 struct memory_notify
*mn
= arg
;
247 case MEM_GOING_ONLINE
:
248 ret
= online_page_cgroup(mn
->start_pfn
,
249 mn
->nr_pages
, mn
->status_change_nid
);
252 offline_page_cgroup(mn
->start_pfn
,
253 mn
->nr_pages
, mn
->status_change_nid
);
255 case MEM_CANCEL_ONLINE
:
256 offline_page_cgroup(mn
->start_pfn
,
257 mn
->nr_pages
, mn
->status_change_nid
);
259 case MEM_GOING_OFFLINE
:
262 case MEM_CANCEL_OFFLINE
:
266 return notifier_from_errno(ret
);
271 void __init
page_cgroup_init(void)
276 if (mem_cgroup_disabled())
279 for_each_node_state(nid
, N_MEMORY
) {
280 unsigned long start_pfn
, end_pfn
;
282 start_pfn
= node_start_pfn(nid
);
283 end_pfn
= node_end_pfn(nid
);
285 * start_pfn and end_pfn may not be aligned to SECTION and the
286 * page->flags of out of node pages are not initialized. So we
287 * scan [start_pfn, the biggest section's pfn < end_pfn) here.
289 for (pfn
= start_pfn
;
291 pfn
= ALIGN(pfn
+ 1, PAGES_PER_SECTION
)) {
296 * Nodes's pfns can be overlapping.
297 * We know some arch can have a nodes layout such as
298 * -------------pfn-------------->
299 * N0 | N1 | N2 | N0 | N1 | N2|....
301 if (pfn_to_nid(pfn
) != nid
)
303 if (init_section_page_cgroup(pfn
, nid
))
307 hotplug_memory_notifier(page_cgroup_callback
, 0);
308 printk(KERN_INFO
"allocated %ld bytes of page_cgroup\n", total_usage
);
309 printk(KERN_INFO
"please try 'cgroup_disable=memory' option if you "
310 "don't want memory cgroups\n");
313 printk(KERN_CRIT
"try 'cgroup_disable=memory' boot option\n");
314 panic("Out of memory");
317 void __meminit
pgdat_page_cgroup_init(struct pglist_data
*pgdat
)
325 #ifdef CONFIG_MEMCG_SWAP
327 static DEFINE_MUTEX(swap_cgroup_mutex
);
328 struct swap_cgroup_ctrl
{
330 unsigned long length
;
334 static struct swap_cgroup_ctrl swap_cgroup_ctrl
[MAX_SWAPFILES
];
339 #define SC_PER_PAGE (PAGE_SIZE/sizeof(struct swap_cgroup))
342 * SwapCgroup implements "lookup" and "exchange" operations.
343 * In typical usage, this swap_cgroup is accessed via memcg's charge/uncharge
344 * against SwapCache. At swap_free(), this is accessed directly from swap.
347 * - we have no race in "exchange" when we're accessed via SwapCache because
348 * SwapCache(and its swp_entry) is under lock.
349 * - When called via swap_free(), there is no user of this entry and no race.
350 * Then, we don't need lock around "exchange".
352 * TODO: we can push these buffers out to HIGHMEM.
356 * allocate buffer for swap_cgroup.
358 static int swap_cgroup_prepare(int type
)
361 struct swap_cgroup_ctrl
*ctrl
;
362 unsigned long idx
, max
;
364 ctrl
= &swap_cgroup_ctrl
[type
];
366 for (idx
= 0; idx
< ctrl
->length
; idx
++) {
367 page
= alloc_page(GFP_KERNEL
| __GFP_ZERO
);
369 goto not_enough_page
;
370 ctrl
->map
[idx
] = page
;
375 for (idx
= 0; idx
< max
; idx
++)
376 __free_page(ctrl
->map
[idx
]);
381 static struct swap_cgroup
*lookup_swap_cgroup(swp_entry_t ent
,
382 struct swap_cgroup_ctrl
**ctrlp
)
384 pgoff_t offset
= swp_offset(ent
);
385 struct swap_cgroup_ctrl
*ctrl
;
386 struct page
*mappage
;
387 struct swap_cgroup
*sc
;
389 ctrl
= &swap_cgroup_ctrl
[swp_type(ent
)];
393 mappage
= ctrl
->map
[offset
/ SC_PER_PAGE
];
394 sc
= page_address(mappage
);
395 return sc
+ offset
% SC_PER_PAGE
;
399 * swap_cgroup_cmpxchg - cmpxchg mem_cgroup's id for this swp_entry.
400 * @ent: swap entry to be cmpxchged
404 * Returns old id at success, 0 at failure.
405 * (There is no mem_cgroup using 0 as its id)
407 unsigned short swap_cgroup_cmpxchg(swp_entry_t ent
,
408 unsigned short old
, unsigned short new)
410 struct swap_cgroup_ctrl
*ctrl
;
411 struct swap_cgroup
*sc
;
413 unsigned short retval
;
415 sc
= lookup_swap_cgroup(ent
, &ctrl
);
417 spin_lock_irqsave(&ctrl
->lock
, flags
);
423 spin_unlock_irqrestore(&ctrl
->lock
, flags
);
428 * swap_cgroup_record - record mem_cgroup for this swp_entry.
429 * @ent: swap entry to be recorded into
430 * @id: mem_cgroup to be recorded
432 * Returns old value at success, 0 at failure.
433 * (Of course, old value can be 0.)
435 unsigned short swap_cgroup_record(swp_entry_t ent
, unsigned short id
)
437 struct swap_cgroup_ctrl
*ctrl
;
438 struct swap_cgroup
*sc
;
442 sc
= lookup_swap_cgroup(ent
, &ctrl
);
444 spin_lock_irqsave(&ctrl
->lock
, flags
);
447 spin_unlock_irqrestore(&ctrl
->lock
, flags
);
453 * lookup_swap_cgroup_id - lookup mem_cgroup id tied to swap entry
454 * @ent: swap entry to be looked up.
456 * Returns ID of mem_cgroup at success. 0 at failure. (0 is invalid ID)
458 unsigned short lookup_swap_cgroup_id(swp_entry_t ent
)
460 return lookup_swap_cgroup(ent
, NULL
)->id
;
463 int swap_cgroup_swapon(int type
, unsigned long max_pages
)
466 unsigned long array_size
;
467 unsigned long length
;
468 struct swap_cgroup_ctrl
*ctrl
;
470 if (!do_swap_account
)
473 length
= DIV_ROUND_UP(max_pages
, SC_PER_PAGE
);
474 array_size
= length
* sizeof(void *);
476 array
= vzalloc(array_size
);
480 ctrl
= &swap_cgroup_ctrl
[type
];
481 mutex_lock(&swap_cgroup_mutex
);
482 ctrl
->length
= length
;
484 spin_lock_init(&ctrl
->lock
);
485 if (swap_cgroup_prepare(type
)) {
486 /* memory shortage */
489 mutex_unlock(&swap_cgroup_mutex
);
493 mutex_unlock(&swap_cgroup_mutex
);
497 printk(KERN_INFO
"couldn't allocate enough memory for swap_cgroup.\n");
499 "swap_cgroup can be disabled by swapaccount=0 boot option\n");
503 void swap_cgroup_swapoff(int type
)
506 unsigned long i
, length
;
507 struct swap_cgroup_ctrl
*ctrl
;
509 if (!do_swap_account
)
512 mutex_lock(&swap_cgroup_mutex
);
513 ctrl
= &swap_cgroup_ctrl
[type
];
515 length
= ctrl
->length
;
518 mutex_unlock(&swap_cgroup_mutex
);
521 for (i
= 0; i
< length
; i
++) {
522 struct page
*page
= map
[i
];