revert "memcg: get rid of soft-limit tree infrastructure"
[deliverable/linux.git] / include / linux / memcontrol.h
CommitLineData
8cdea7c0
BS
1/* memcontrol.h - Memory Controller
2 *
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5 *
78fb7466
PE
6 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 *
8cdea7c0
BS
9 * 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#ifndef _LINUX_MEMCONTROL_H
21#define _LINUX_MEMCONTROL_H
f8d66542 22#include <linux/cgroup.h>
456f998e 23#include <linux/vm_event_item.h>
7ae1e1d0 24#include <linux/hardirq.h>
a8964b9b 25#include <linux/jump_label.h>
456f998e 26
78fb7466
PE
27struct mem_cgroup;
28struct page_cgroup;
8697d331
BS
29struct page;
30struct mm_struct;
2633d7a0 31struct kmem_cache;
78fb7466 32
68b4876d
SZ
33/*
34 * The corresponding mem_cgroup_stat_names is defined in mm/memcontrol.c,
35 * These two lists should keep in accord with each other.
36 */
37enum mem_cgroup_stat_index {
38 /*
39 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
40 */
41 MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
42 MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
43 MEM_CGROUP_STAT_RSS_HUGE, /* # of pages charged as anon huge */
44 MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
3ea67d06 45 MEM_CGROUP_STAT_WRITEBACK, /* # of pages under writeback */
68b4876d
SZ
46 MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
47 MEM_CGROUP_STAT_NSTATS,
2a7106f2
GT
48};
49
5660048c
JW
50struct mem_cgroup_reclaim_cookie {
51 struct zone *zone;
52 int priority;
53 unsigned int generation;
54};
55
c255a458 56#ifdef CONFIG_MEMCG
2c26fdd7
KH
57/*
58 * All "charge" functions with gfp_mask should use GFP_KERNEL or
59 * (gfp_mask & GFP_RECLAIM_MASK). In current implementatin, memcg doesn't
60 * alloc memory but reclaims memory from all available zones. So, "where I want
61 * memory from" bits of gfp_mask has no meaning. So any bits of that field is
62 * available but adding a rule is better. charge functions' gfp_mask should
63 * be set to GFP_KERNEL or gfp_mask & GFP_RECLAIM_MASK for avoiding ambiguous
64 * codes.
65 * (Of course, if memcg does memory allocation in future, GFP_KERNEL is sane.)
66 */
78fb7466 67
7a81b88c 68extern int mem_cgroup_newpage_charge(struct page *page, struct mm_struct *mm,
e1a1cd59 69 gfp_t gfp_mask);
7a81b88c 70/* for swap handling */
8c7c6e34 71extern int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
72835c86 72 struct page *page, gfp_t mask, struct mem_cgroup **memcgp);
7a81b88c 73extern void mem_cgroup_commit_charge_swapin(struct page *page,
72835c86
JW
74 struct mem_cgroup *memcg);
75extern void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg);
7a81b88c 76
8289546e
HD
77extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm,
78 gfp_t gfp_mask);
925b7673
JW
79
80struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
fa9add64 81struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
569b846d
KH
82
83/* For coalescing uncharge for reducing memcg' overhead*/
84extern void mem_cgroup_uncharge_start(void);
85extern void mem_cgroup_uncharge_end(void);
86
3c541e14 87extern void mem_cgroup_uncharge_page(struct page *page);
69029cd5 88extern void mem_cgroup_uncharge_cache_page(struct page *page);
c9b0ed51 89
c3ac9a8a
JW
90bool __mem_cgroup_same_or_subtree(const struct mem_cgroup *root_memcg,
91 struct mem_cgroup *memcg);
ffbdccf5
DR
92bool task_in_mem_cgroup(struct task_struct *task,
93 const struct mem_cgroup *memcg);
3062fc67 94
e42d9d5d 95extern struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page);
cf475ad2 96extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
a433658c 97extern struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm);
cf475ad2 98
e1aab161 99extern struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
182446d0 100extern struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css);
e1aab161 101
2e4d4091 102static inline
587af308 103bool mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *memcg)
2e4d4091 104{
587af308
JW
105 struct mem_cgroup *task_memcg;
106 bool match;
c3ac9a8a 107
2e4d4091 108 rcu_read_lock();
587af308
JW
109 task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
110 match = __mem_cgroup_same_or_subtree(memcg, task_memcg);
2e4d4091 111 rcu_read_unlock();
c3ac9a8a 112 return match;
2e4d4091 113}
8a9f3ccd 114
c0ff4b85 115extern struct cgroup_subsys_state *mem_cgroup_css(struct mem_cgroup *memcg);
d324236b 116
0030f535
JW
117extern void
118mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
119 struct mem_cgroup **memcgp);
c0ff4b85 120extern void mem_cgroup_end_migration(struct mem_cgroup *memcg,
50de1dd9 121 struct page *oldpage, struct page *newpage, bool migration_ok);
ae41be37 122
694fbc0f
AM
123struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
124 struct mem_cgroup *,
125 struct mem_cgroup_reclaim_cookie *);
5660048c
JW
126void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
127
58ae83db
KH
128/*
129 * For memory reclaim.
130 */
c56d5c7d 131int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec);
889976db 132int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
4d7dcca2 133unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list);
fa9add64 134void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int);
e222432b
BS
135extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
136 struct task_struct *p);
ab936cbc
KH
137extern void mem_cgroup_replace_page_cache(struct page *oldpage,
138 struct page *newpage);
58ae83db 139
519e5247
JW
140/**
141 * mem_cgroup_toggle_oom - toggle the memcg OOM killer for the current task
142 * @new: true to enable, false to disable
143 *
144 * Toggle whether a failed memcg charge should invoke the OOM killer
145 * or just return -ENOMEM. Returns the previous toggle state.
3812c8c8
JW
146 *
147 * NOTE: Any path that enables the OOM killer before charging must
148 * call mem_cgroup_oom_synchronize() afterward to finalize the
149 * OOM handling and clean up.
519e5247
JW
150 */
151static inline bool mem_cgroup_toggle_oom(bool new)
152{
153 bool old;
154
155 old = current->memcg_oom.may_oom;
156 current->memcg_oom.may_oom = new;
157
158 return old;
159}
160
161static inline void mem_cgroup_enable_oom(void)
162{
163 bool old = mem_cgroup_toggle_oom(true);
164
165 WARN_ON(old == true);
166}
167
168static inline void mem_cgroup_disable_oom(void)
169{
170 bool old = mem_cgroup_toggle_oom(false);
171
172 WARN_ON(old == false);
173}
174
3812c8c8
JW
175static inline bool task_in_memcg_oom(struct task_struct *p)
176{
177 return p->memcg_oom.in_memcg_oom;
178}
179
180bool mem_cgroup_oom_synchronize(void);
181
c255a458 182#ifdef CONFIG_MEMCG_SWAP
c077719b
KH
183extern int do_swap_account;
184#endif
f8d66542
HT
185
186static inline bool mem_cgroup_disabled(void)
187{
188 if (mem_cgroup_subsys.disabled)
189 return true;
190 return false;
191}
192
89c06bd5
KH
193void __mem_cgroup_begin_update_page_stat(struct page *page, bool *locked,
194 unsigned long *flags);
195
4331f7d3
KH
196extern atomic_t memcg_moving;
197
89c06bd5
KH
198static inline void mem_cgroup_begin_update_page_stat(struct page *page,
199 bool *locked, unsigned long *flags)
200{
201 if (mem_cgroup_disabled())
202 return;
203 rcu_read_lock();
204 *locked = false;
4331f7d3
KH
205 if (atomic_read(&memcg_moving))
206 __mem_cgroup_begin_update_page_stat(page, locked, flags);
89c06bd5
KH
207}
208
209void __mem_cgroup_end_update_page_stat(struct page *page,
210 unsigned long *flags);
211static inline void mem_cgroup_end_update_page_stat(struct page *page,
212 bool *locked, unsigned long *flags)
213{
214 if (mem_cgroup_disabled())
215 return;
216 if (*locked)
217 __mem_cgroup_end_update_page_stat(page, flags);
218 rcu_read_unlock();
219}
220
2a7106f2 221void mem_cgroup_update_page_stat(struct page *page,
68b4876d 222 enum mem_cgroup_stat_index idx,
2a7106f2
GT
223 int val);
224
225static inline void mem_cgroup_inc_page_stat(struct page *page,
68b4876d 226 enum mem_cgroup_stat_index idx)
2a7106f2
GT
227{
228 mem_cgroup_update_page_stat(page, idx, 1);
229}
230
231static inline void mem_cgroup_dec_page_stat(struct page *page,
68b4876d 232 enum mem_cgroup_stat_index idx)
2a7106f2
GT
233{
234 mem_cgroup_update_page_stat(page, idx, -1);
235}
236
b1aff7fc 237bool mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg);
a63d83f4 238
68ae564b
DR
239void __mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx);
240static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
241 enum vm_event_item idx)
242{
243 if (mem_cgroup_disabled())
244 return;
245 __mem_cgroup_count_vm_event(mm, idx);
246}
ca3e0214 247#ifdef CONFIG_TRANSPARENT_HUGEPAGE
e94c8a9c 248void mem_cgroup_split_huge_fixup(struct page *head);
ca3e0214
KH
249#endif
250
f212ad7c
DN
251#ifdef CONFIG_DEBUG_VM
252bool mem_cgroup_bad_page_check(struct page *page);
253void mem_cgroup_print_bad_page(struct page *page);
254#endif
c255a458 255#else /* CONFIG_MEMCG */
7a81b88c
KH
256struct mem_cgroup;
257
258static inline int mem_cgroup_newpage_charge(struct page *page,
8289546e 259 struct mm_struct *mm, gfp_t gfp_mask)
8a9f3ccd
BS
260{
261 return 0;
262}
263
8289546e
HD
264static inline int mem_cgroup_cache_charge(struct page *page,
265 struct mm_struct *mm, gfp_t gfp_mask)
8a9f3ccd 266{
8289546e 267 return 0;
8a9f3ccd
BS
268}
269
8c7c6e34 270static inline int mem_cgroup_try_charge_swapin(struct mm_struct *mm,
72835c86 271 struct page *page, gfp_t gfp_mask, struct mem_cgroup **memcgp)
7a81b88c
KH
272{
273 return 0;
274}
275
276static inline void mem_cgroup_commit_charge_swapin(struct page *page,
72835c86 277 struct mem_cgroup *memcg)
7a81b88c
KH
278{
279}
280
72835c86 281static inline void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *memcg)
7a81b88c
KH
282{
283}
284
569b846d
KH
285static inline void mem_cgroup_uncharge_start(void)
286{
287}
288
289static inline void mem_cgroup_uncharge_end(void)
290{
291}
292
8a9f3ccd
BS
293static inline void mem_cgroup_uncharge_page(struct page *page)
294{
295}
296
69029cd5
KH
297static inline void mem_cgroup_uncharge_cache_page(struct page *page)
298{
299}
300
925b7673
JW
301static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
302 struct mem_cgroup *memcg)
08e552c6 303{
925b7673 304 return &zone->lruvec;
08e552c6
KH
305}
306
fa9add64
HD
307static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
308 struct zone *zone)
66e1707b 309{
925b7673 310 return &zone->lruvec;
66e1707b
BS
311}
312
e42d9d5d
WF
313static inline struct mem_cgroup *try_get_mem_cgroup_from_page(struct page *page)
314{
315 return NULL;
316}
317
a433658c
KM
318static inline struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
319{
320 return NULL;
321}
322
587af308 323static inline bool mm_match_cgroup(struct mm_struct *mm,
c0ff4b85 324 struct mem_cgroup *memcg)
bed7161a 325{
587af308 326 return true;
bed7161a
BS
327}
328
ffbdccf5
DR
329static inline bool task_in_mem_cgroup(struct task_struct *task,
330 const struct mem_cgroup *memcg)
4c4a2214 331{
ffbdccf5 332 return true;
4c4a2214
DR
333}
334
c0ff4b85
R
335static inline struct cgroup_subsys_state
336 *mem_cgroup_css(struct mem_cgroup *memcg)
d324236b
WF
337{
338 return NULL;
339}
340
0030f535 341static inline void
ac39cf8c 342mem_cgroup_prepare_migration(struct page *page, struct page *newpage,
0030f535 343 struct mem_cgroup **memcgp)
ae41be37 344{
ae41be37
KH
345}
346
c0ff4b85 347static inline void mem_cgroup_end_migration(struct mem_cgroup *memcg,
50de1dd9 348 struct page *oldpage, struct page *newpage, bool migration_ok)
ae41be37
KH
349{
350}
351
5660048c
JW
352static inline struct mem_cgroup *
353mem_cgroup_iter(struct mem_cgroup *root,
354 struct mem_cgroup *prev,
355 struct mem_cgroup_reclaim_cookie *reclaim)
356{
357 return NULL;
358}
359
360static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
361 struct mem_cgroup *prev)
362{
363}
364
f8d66542
HT
365static inline bool mem_cgroup_disabled(void)
366{
367 return true;
368}
a636b327 369
14797e23 370static inline int
c56d5c7d 371mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
14797e23
KM
372{
373 return 1;
374}
375
a3d8e054 376static inline unsigned long
4d7dcca2 377mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
a3d8e054
KM
378{
379 return 0;
380}
381
fa9add64
HD
382static inline void
383mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
384 int increment)
3e2f41f1 385{
3e2f41f1
KM
386}
387
e222432b
BS
388static inline void
389mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
390{
391}
392
89c06bd5
KH
393static inline void mem_cgroup_begin_update_page_stat(struct page *page,
394 bool *locked, unsigned long *flags)
395{
396}
397
398static inline void mem_cgroup_end_update_page_stat(struct page *page,
399 bool *locked, unsigned long *flags)
400{
401}
402
519e5247
JW
403static inline bool mem_cgroup_toggle_oom(bool new)
404{
405 return false;
406}
407
408static inline void mem_cgroup_enable_oom(void)
409{
410}
411
412static inline void mem_cgroup_disable_oom(void)
413{
414}
415
3812c8c8
JW
416static inline bool task_in_memcg_oom(struct task_struct *p)
417{
418 return false;
419}
420
421static inline bool mem_cgroup_oom_synchronize(void)
422{
423 return false;
424}
425
2a7106f2 426static inline void mem_cgroup_inc_page_stat(struct page *page,
68b4876d 427 enum mem_cgroup_stat_index idx)
2a7106f2
GT
428{
429}
430
431static inline void mem_cgroup_dec_page_stat(struct page *page,
68b4876d 432 enum mem_cgroup_stat_index idx)
d69b042f
BS
433{
434}
435
4e416953 436static inline
b1aff7fc 437bool mem_cgroup_soft_reclaim_eligible(struct mem_cgroup *memcg)
4e416953 438{
694fbc0f 439 return false;
4e416953
BS
440}
441
e94c8a9c 442static inline void mem_cgroup_split_huge_fixup(struct page *head)
ca3e0214
KH
443{
444}
445
456f998e
YH
446static inline
447void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
448{
449}
ab936cbc
KH
450static inline void mem_cgroup_replace_page_cache(struct page *oldpage,
451 struct page *newpage)
452{
453}
c255a458 454#endif /* CONFIG_MEMCG */
78fb7466 455
c255a458 456#if !defined(CONFIG_MEMCG) || !defined(CONFIG_DEBUG_VM)
f212ad7c
DN
457static inline bool
458mem_cgroup_bad_page_check(struct page *page)
459{
460 return false;
461}
462
463static inline void
464mem_cgroup_print_bad_page(struct page *page)
465{
466}
467#endif
468
e1aab161
GC
469enum {
470 UNDER_LIMIT,
471 SOFT_LIMIT,
472 OVER_LIMIT,
473};
474
475struct sock;
cd59085a 476#if defined(CONFIG_INET) && defined(CONFIG_MEMCG_KMEM)
e1aab161
GC
477void sock_update_memcg(struct sock *sk);
478void sock_release_memcg(struct sock *sk);
479#else
480static inline void sock_update_memcg(struct sock *sk)
481{
482}
483static inline void sock_release_memcg(struct sock *sk)
484{
485}
cd59085a 486#endif /* CONFIG_INET && CONFIG_MEMCG_KMEM */
7ae1e1d0
GC
487
488#ifdef CONFIG_MEMCG_KMEM
a8964b9b 489extern struct static_key memcg_kmem_enabled_key;
749c5415
GC
490
491extern int memcg_limited_groups_array_size;
ebe945c2
GC
492
493/*
494 * Helper macro to loop through all memcg-specific caches. Callers must still
495 * check if the cache is valid (it is either valid or NULL).
496 * the slab_mutex must be held when looping through those caches
497 */
749c5415 498#define for_each_memcg_cache_index(_idx) \
91c777d8 499 for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++)
749c5415 500
7ae1e1d0
GC
501static inline bool memcg_kmem_enabled(void)
502{
a8964b9b 503 return static_key_false(&memcg_kmem_enabled_key);
7ae1e1d0
GC
504}
505
506/*
507 * In general, we'll do everything in our power to not incur in any overhead
508 * for non-memcg users for the kmem functions. Not even a function call, if we
509 * can avoid it.
510 *
511 * Therefore, we'll inline all those functions so that in the best case, we'll
512 * see that kmemcg is off for everybody and proceed quickly. If it is on,
513 * we'll still do most of the flag checking inline. We check a lot of
514 * conditions, but because they are pretty simple, they are expected to be
515 * fast.
516 */
517bool __memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg,
518 int order);
519void __memcg_kmem_commit_charge(struct page *page,
520 struct mem_cgroup *memcg, int order);
521void __memcg_kmem_uncharge_pages(struct page *page, int order);
522
2633d7a0 523int memcg_cache_id(struct mem_cgroup *memcg);
943a451a
GC
524int memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
525 struct kmem_cache *root_cache);
2633d7a0
GC
526void memcg_release_cache(struct kmem_cache *cachep);
527void memcg_cache_list_add(struct mem_cgroup *memcg, struct kmem_cache *cachep);
528
55007d84
GC
529int memcg_update_cache_size(struct kmem_cache *s, int num_groups);
530void memcg_update_array_size(int num_groups);
d7f25f8a
GC
531
532struct kmem_cache *
533__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
534
1f458cbf 535void mem_cgroup_destroy_cache(struct kmem_cache *cachep);
7cf27982 536void kmem_cache_destroy_memcg_children(struct kmem_cache *s);
1f458cbf 537
7ae1e1d0
GC
538/**
539 * memcg_kmem_newpage_charge: verify if a new kmem allocation is allowed.
540 * @gfp: the gfp allocation flags.
541 * @memcg: a pointer to the memcg this was charged against.
542 * @order: allocation order.
543 *
544 * returns true if the memcg where the current task belongs can hold this
545 * allocation.
546 *
547 * We return true automatically if this allocation is not to be accounted to
548 * any memcg.
549 */
550static inline bool
551memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
552{
553 if (!memcg_kmem_enabled())
554 return true;
555
556 /*
557 * __GFP_NOFAIL allocations will move on even if charging is not
558 * possible. Therefore we don't even try, and have this allocation
559 * unaccounted. We could in theory charge it with
560 * res_counter_charge_nofail, but we hope those allocations are rare,
561 * and won't be worth the trouble.
562 */
563 if (!(gfp & __GFP_KMEMCG) || (gfp & __GFP_NOFAIL))
564 return true;
565 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
566 return true;
567
568 /* If the test is dying, just let it go. */
569 if (unlikely(fatal_signal_pending(current)))
570 return true;
571
572 return __memcg_kmem_newpage_charge(gfp, memcg, order);
573}
574
575/**
576 * memcg_kmem_uncharge_pages: uncharge pages from memcg
577 * @page: pointer to struct page being freed
578 * @order: allocation order.
579 *
580 * there is no need to specify memcg here, since it is embedded in page_cgroup
581 */
582static inline void
583memcg_kmem_uncharge_pages(struct page *page, int order)
584{
585 if (memcg_kmem_enabled())
586 __memcg_kmem_uncharge_pages(page, order);
587}
588
589/**
590 * memcg_kmem_commit_charge: embeds correct memcg in a page
591 * @page: pointer to struct page recently allocated
592 * @memcg: the memcg structure we charged against
593 * @order: allocation order.
594 *
595 * Needs to be called after memcg_kmem_newpage_charge, regardless of success or
596 * failure of the allocation. if @page is NULL, this function will revert the
597 * charges. Otherwise, it will commit the memcg given by @memcg to the
598 * corresponding page_cgroup.
599 */
600static inline void
601memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
602{
603 if (memcg_kmem_enabled() && memcg)
604 __memcg_kmem_commit_charge(page, memcg, order);
605}
606
d7f25f8a
GC
607/**
608 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
609 * @cachep: the original global kmem cache
610 * @gfp: allocation flags.
611 *
612 * This function assumes that the task allocating, which determines the memcg
613 * in the page allocator, belongs to the same cgroup throughout the whole
614 * process. Misacounting can happen if the task calls memcg_kmem_get_cache()
615 * while belonging to a cgroup, and later on changes. This is considered
616 * acceptable, and should only happen upon task migration.
617 *
618 * Before the cache is created by the memcg core, there is also a possible
619 * imbalance: the task belongs to a memcg, but the cache being allocated from
620 * is the global cache, since the child cache is not yet guaranteed to be
621 * ready. This case is also fine, since in this case the GFP_KMEMCG will not be
622 * passed and the page allocator will not attempt any cgroup accounting.
623 */
624static __always_inline struct kmem_cache *
625memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
626{
627 if (!memcg_kmem_enabled())
628 return cachep;
629 if (gfp & __GFP_NOFAIL)
630 return cachep;
631 if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
632 return cachep;
633 if (unlikely(fatal_signal_pending(current)))
634 return cachep;
635
636 return __memcg_kmem_get_cache(cachep, gfp);
637}
7ae1e1d0 638#else
749c5415
GC
639#define for_each_memcg_cache_index(_idx) \
640 for (; NULL; )
641
b9ce5ef4
GC
642static inline bool memcg_kmem_enabled(void)
643{
644 return false;
645}
646
7ae1e1d0
GC
647static inline bool
648memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order)
649{
650 return true;
651}
652
653static inline void memcg_kmem_uncharge_pages(struct page *page, int order)
654{
655}
656
657static inline void
658memcg_kmem_commit_charge(struct page *page, struct mem_cgroup *memcg, int order)
659{
660}
2633d7a0
GC
661
662static inline int memcg_cache_id(struct mem_cgroup *memcg)
663{
664 return -1;
665}
666
943a451a
GC
667static inline int
668memcg_register_cache(struct mem_cgroup *memcg, struct kmem_cache *s,
669 struct kmem_cache *root_cache)
2633d7a0
GC
670{
671 return 0;
672}
673
674static inline void memcg_release_cache(struct kmem_cache *cachep)
675{
676}
677
678static inline void memcg_cache_list_add(struct mem_cgroup *memcg,
679 struct kmem_cache *s)
680{
681}
d7f25f8a
GC
682
683static inline struct kmem_cache *
684memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
685{
686 return cachep;
687}
7cf27982
GC
688
689static inline void kmem_cache_destroy_memcg_children(struct kmem_cache *s)
690{
691}
7ae1e1d0 692#endif /* CONFIG_MEMCG_KMEM */
8cdea7c0
BS
693#endif /* _LINUX_MEMCONTROL_H */
694
This page took 0.787341 seconds and 5 git commands to generate.