]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/linux/memcontrol.h
net: tcp_memcontrol: remove dead per-memcg count of allocated sockets
[karo-tx-linux.git] / include / linux / memcontrol.h
1 /* memcontrol.h - Memory Controller
2  *
3  * Copyright IBM Corporation, 2007
4  * Author Balbir Singh <balbir@linux.vnet.ibm.com>
5  *
6  * Copyright 2007 OpenVZ SWsoft Inc
7  * Author: Pavel Emelianov <xemul@openvz.org>
8  *
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
22 #include <linux/cgroup.h>
23 #include <linux/vm_event_item.h>
24 #include <linux/hardirq.h>
25 #include <linux/jump_label.h>
26 #include <linux/page_counter.h>
27 #include <linux/vmpressure.h>
28 #include <linux/eventfd.h>
29 #include <linux/mmzone.h>
30 #include <linux/writeback.h>
31
32 struct mem_cgroup;
33 struct page;
34 struct mm_struct;
35 struct kmem_cache;
36
37 /*
38  * The corresponding mem_cgroup_stat_names is defined in mm/memcontrol.c,
39  * These two lists should keep in accord with each other.
40  */
41 enum mem_cgroup_stat_index {
42         /*
43          * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
44          */
45         MEM_CGROUP_STAT_CACHE,          /* # of pages charged as cache */
46         MEM_CGROUP_STAT_RSS,            /* # of pages charged as anon rss */
47         MEM_CGROUP_STAT_RSS_HUGE,       /* # of pages charged as anon huge */
48         MEM_CGROUP_STAT_FILE_MAPPED,    /* # of pages charged as file rss */
49         MEM_CGROUP_STAT_DIRTY,          /* # of dirty pages in page cache */
50         MEM_CGROUP_STAT_WRITEBACK,      /* # of pages under writeback */
51         MEM_CGROUP_STAT_SWAP,           /* # of pages, swapped out */
52         MEM_CGROUP_STAT_NSTATS,
53 };
54
55 struct mem_cgroup_reclaim_cookie {
56         struct zone *zone;
57         int priority;
58         unsigned int generation;
59 };
60
61 enum mem_cgroup_events_index {
62         MEM_CGROUP_EVENTS_PGPGIN,       /* # of pages paged in */
63         MEM_CGROUP_EVENTS_PGPGOUT,      /* # of pages paged out */
64         MEM_CGROUP_EVENTS_PGFAULT,      /* # of page-faults */
65         MEM_CGROUP_EVENTS_PGMAJFAULT,   /* # of major page-faults */
66         MEM_CGROUP_EVENTS_NSTATS,
67         /* default hierarchy events */
68         MEMCG_LOW = MEM_CGROUP_EVENTS_NSTATS,
69         MEMCG_HIGH,
70         MEMCG_MAX,
71         MEMCG_OOM,
72         MEMCG_NR_EVENTS,
73 };
74
75 /*
76  * Per memcg event counter is incremented at every pagein/pageout. With THP,
77  * it will be incremated by the number of pages. This counter is used for
78  * for trigger some periodic events. This is straightforward and better
79  * than using jiffies etc. to handle periodic memcg event.
80  */
81 enum mem_cgroup_events_target {
82         MEM_CGROUP_TARGET_THRESH,
83         MEM_CGROUP_TARGET_SOFTLIMIT,
84         MEM_CGROUP_TARGET_NUMAINFO,
85         MEM_CGROUP_NTARGETS,
86 };
87
88 struct cg_proto {
89         struct page_counter     memory_allocated;       /* Current allocated memory. */
90         int                     memory_pressure;
91         bool                    active;
92         long                    sysctl_mem[3];
93         /*
94          * memcg field is used to find which memcg we belong directly
95          * Each memcg struct can hold more than one cg_proto, so container_of
96          * won't really cut.
97          *
98          * The elegant solution would be having an inverse function to
99          * proto_cgroup in struct proto, but that means polluting the structure
100          * for everybody, instead of just for memcg users.
101          */
102         struct mem_cgroup       *memcg;
103 };
104
105 #ifdef CONFIG_MEMCG
106 struct mem_cgroup_stat_cpu {
107         long count[MEM_CGROUP_STAT_NSTATS];
108         unsigned long events[MEMCG_NR_EVENTS];
109         unsigned long nr_page_events;
110         unsigned long targets[MEM_CGROUP_NTARGETS];
111 };
112
113 struct mem_cgroup_reclaim_iter {
114         struct mem_cgroup *position;
115         /* scan generation, increased every round-trip */
116         unsigned int generation;
117 };
118
119 /*
120  * per-zone information in memory controller.
121  */
122 struct mem_cgroup_per_zone {
123         struct lruvec           lruvec;
124         unsigned long           lru_size[NR_LRU_LISTS];
125
126         struct mem_cgroup_reclaim_iter  iter[DEF_PRIORITY + 1];
127
128         struct rb_node          tree_node;      /* RB tree node */
129         unsigned long           usage_in_excess;/* Set to the value by which */
130                                                 /* the soft limit is exceeded*/
131         bool                    on_tree;
132         struct mem_cgroup       *memcg;         /* Back pointer, we cannot */
133                                                 /* use container_of        */
134 };
135
136 struct mem_cgroup_per_node {
137         struct mem_cgroup_per_zone zoneinfo[MAX_NR_ZONES];
138 };
139
140 struct mem_cgroup_threshold {
141         struct eventfd_ctx *eventfd;
142         unsigned long threshold;
143 };
144
145 /* For threshold */
146 struct mem_cgroup_threshold_ary {
147         /* An array index points to threshold just below or equal to usage. */
148         int current_threshold;
149         /* Size of entries[] */
150         unsigned int size;
151         /* Array of thresholds */
152         struct mem_cgroup_threshold entries[0];
153 };
154
155 struct mem_cgroup_thresholds {
156         /* Primary thresholds array */
157         struct mem_cgroup_threshold_ary *primary;
158         /*
159          * Spare threshold array.
160          * This is needed to make mem_cgroup_unregister_event() "never fail".
161          * It must be able to store at least primary->size - 1 entries.
162          */
163         struct mem_cgroup_threshold_ary *spare;
164 };
165
166 /*
167  * The memory controller data structure. The memory controller controls both
168  * page cache and RSS per cgroup. We would eventually like to provide
169  * statistics based on the statistics developed by Rik Van Riel for clock-pro,
170  * to help the administrator determine what knobs to tune.
171  */
172 struct mem_cgroup {
173         struct cgroup_subsys_state css;
174
175         /* Accounted resources */
176         struct page_counter memory;
177         struct page_counter memsw;
178         struct page_counter kmem;
179
180         /* Normal memory consumption range */
181         unsigned long low;
182         unsigned long high;
183
184         unsigned long soft_limit;
185
186         /* vmpressure notifications */
187         struct vmpressure vmpressure;
188
189         /* css_online() has been completed */
190         int initialized;
191
192         /*
193          * Should the accounting and control be hierarchical, per subtree?
194          */
195         bool use_hierarchy;
196
197         /* protected by memcg_oom_lock */
198         bool            oom_lock;
199         int             under_oom;
200
201         int     swappiness;
202         /* OOM-Killer disable */
203         int             oom_kill_disable;
204
205         /* handle for "memory.events" */
206         struct cgroup_file events_file;
207
208         /* protect arrays of thresholds */
209         struct mutex thresholds_lock;
210
211         /* thresholds for memory usage. RCU-protected */
212         struct mem_cgroup_thresholds thresholds;
213
214         /* thresholds for mem+swap usage. RCU-protected */
215         struct mem_cgroup_thresholds memsw_thresholds;
216
217         /* For oom notifier event fd */
218         struct list_head oom_notify;
219
220         /*
221          * Should we move charges of a task when a task is moved into this
222          * mem_cgroup ? And what type of charges should we move ?
223          */
224         unsigned long move_charge_at_immigrate;
225         /*
226          * set > 0 if pages under this cgroup are moving to other cgroup.
227          */
228         atomic_t                moving_account;
229         /* taken only while moving_account > 0 */
230         spinlock_t              move_lock;
231         struct task_struct      *move_lock_task;
232         unsigned long           move_lock_flags;
233         /*
234          * percpu counter.
235          */
236         struct mem_cgroup_stat_cpu __percpu *stat;
237
238 #if defined(CONFIG_MEMCG_KMEM) && defined(CONFIG_INET)
239         struct cg_proto tcp_mem;
240 #endif
241 #if defined(CONFIG_MEMCG_KMEM)
242         /* Index in the kmem_cache->memcg_params.memcg_caches array */
243         int kmemcg_id;
244         bool kmem_acct_activated;
245         bool kmem_acct_active;
246 #endif
247
248         int last_scanned_node;
249 #if MAX_NUMNODES > 1
250         nodemask_t      scan_nodes;
251         atomic_t        numainfo_events;
252         atomic_t        numainfo_updating;
253 #endif
254
255 #ifdef CONFIG_CGROUP_WRITEBACK
256         struct list_head cgwb_list;
257         struct wb_domain cgwb_domain;
258 #endif
259
260         /* List of events which userspace want to receive */
261         struct list_head event_list;
262         spinlock_t event_list_lock;
263
264         struct mem_cgroup_per_node *nodeinfo[0];
265         /* WARNING: nodeinfo must be the last member here */
266 };
267
268 extern struct mem_cgroup *root_mem_cgroup;
269
270 /**
271  * mem_cgroup_events - count memory events against a cgroup
272  * @memcg: the memory cgroup
273  * @idx: the event index
274  * @nr: the number of events to account for
275  */
276 static inline void mem_cgroup_events(struct mem_cgroup *memcg,
277                        enum mem_cgroup_events_index idx,
278                        unsigned int nr)
279 {
280         this_cpu_add(memcg->stat->events[idx], nr);
281         cgroup_file_notify(&memcg->events_file);
282 }
283
284 bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg);
285
286 int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
287                           gfp_t gfp_mask, struct mem_cgroup **memcgp);
288 void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
289                               bool lrucare);
290 void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg);
291 void mem_cgroup_uncharge(struct page *page);
292 void mem_cgroup_uncharge_list(struct list_head *page_list);
293
294 void mem_cgroup_replace_page(struct page *oldpage, struct page *newpage);
295
296 struct lruvec *mem_cgroup_zone_lruvec(struct zone *, struct mem_cgroup *);
297 struct lruvec *mem_cgroup_page_lruvec(struct page *, struct zone *);
298
299 bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
300 struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
301 struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg);
302
303 static inline
304 struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css){
305         return css ? container_of(css, struct mem_cgroup, css) : NULL;
306 }
307
308 struct mem_cgroup *mem_cgroup_iter(struct mem_cgroup *,
309                                    struct mem_cgroup *,
310                                    struct mem_cgroup_reclaim_cookie *);
311 void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *);
312
313 static inline bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
314                               struct mem_cgroup *root)
315 {
316         if (root == memcg)
317                 return true;
318         if (!root->use_hierarchy)
319                 return false;
320         return cgroup_is_descendant(memcg->css.cgroup, root->css.cgroup);
321 }
322
323 static inline bool mm_match_cgroup(struct mm_struct *mm,
324                                    struct mem_cgroup *memcg)
325 {
326         struct mem_cgroup *task_memcg;
327         bool match = false;
328
329         rcu_read_lock();
330         task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
331         if (task_memcg)
332                 match = mem_cgroup_is_descendant(task_memcg, memcg);
333         rcu_read_unlock();
334         return match;
335 }
336
337 struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page);
338 ino_t page_cgroup_ino(struct page *page);
339
340 static inline bool mem_cgroup_disabled(void)
341 {
342         return !cgroup_subsys_enabled(memory_cgrp_subsys);
343 }
344
345 /*
346  * For memory reclaim.
347  */
348 int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
349
350 void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
351                 int nr_pages);
352
353 static inline bool mem_cgroup_lruvec_online(struct lruvec *lruvec)
354 {
355         struct mem_cgroup_per_zone *mz;
356         struct mem_cgroup *memcg;
357
358         if (mem_cgroup_disabled())
359                 return true;
360
361         mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
362         memcg = mz->memcg;
363
364         return !!(memcg->css.flags & CSS_ONLINE);
365 }
366
367 static inline
368 unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
369 {
370         struct mem_cgroup_per_zone *mz;
371
372         mz = container_of(lruvec, struct mem_cgroup_per_zone, lruvec);
373         return mz->lru_size[lru];
374 }
375
376 static inline bool mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
377 {
378         unsigned long inactive_ratio;
379         unsigned long inactive;
380         unsigned long active;
381         unsigned long gb;
382
383         inactive = mem_cgroup_get_lru_size(lruvec, LRU_INACTIVE_ANON);
384         active = mem_cgroup_get_lru_size(lruvec, LRU_ACTIVE_ANON);
385
386         gb = (inactive + active) >> (30 - PAGE_SHIFT);
387         if (gb)
388                 inactive_ratio = int_sqrt(10 * gb);
389         else
390                 inactive_ratio = 1;
391
392         return inactive * inactive_ratio < active;
393 }
394
395 void mem_cgroup_handle_over_high(void);
396
397 void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
398                                 struct task_struct *p);
399
400 static inline void mem_cgroup_oom_enable(void)
401 {
402         WARN_ON(current->memcg_may_oom);
403         current->memcg_may_oom = 1;
404 }
405
406 static inline void mem_cgroup_oom_disable(void)
407 {
408         WARN_ON(!current->memcg_may_oom);
409         current->memcg_may_oom = 0;
410 }
411
412 static inline bool task_in_memcg_oom(struct task_struct *p)
413 {
414         return p->memcg_in_oom;
415 }
416
417 bool mem_cgroup_oom_synchronize(bool wait);
418
419 #ifdef CONFIG_MEMCG_SWAP
420 extern int do_swap_account;
421 #endif
422
423 struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page);
424 void mem_cgroup_end_page_stat(struct mem_cgroup *memcg);
425
426 /**
427  * mem_cgroup_update_page_stat - update page state statistics
428  * @memcg: memcg to account against
429  * @idx: page state item to account
430  * @val: number of pages (positive or negative)
431  *
432  * See mem_cgroup_begin_page_stat() for locking requirements.
433  */
434 static inline void mem_cgroup_update_page_stat(struct mem_cgroup *memcg,
435                                  enum mem_cgroup_stat_index idx, int val)
436 {
437         VM_BUG_ON(!rcu_read_lock_held());
438
439         if (memcg)
440                 this_cpu_add(memcg->stat->count[idx], val);
441 }
442
443 static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
444                                             enum mem_cgroup_stat_index idx)
445 {
446         mem_cgroup_update_page_stat(memcg, idx, 1);
447 }
448
449 static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
450                                             enum mem_cgroup_stat_index idx)
451 {
452         mem_cgroup_update_page_stat(memcg, idx, -1);
453 }
454
455 unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
456                                                 gfp_t gfp_mask,
457                                                 unsigned long *total_scanned);
458
459 static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
460                                              enum vm_event_item idx)
461 {
462         struct mem_cgroup *memcg;
463
464         if (mem_cgroup_disabled())
465                 return;
466
467         rcu_read_lock();
468         memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
469         if (unlikely(!memcg))
470                 goto out;
471
472         switch (idx) {
473         case PGFAULT:
474                 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
475                 break;
476         case PGMAJFAULT:
477                 this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
478                 break;
479         default:
480                 BUG();
481         }
482 out:
483         rcu_read_unlock();
484 }
485 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
486 void mem_cgroup_split_huge_fixup(struct page *head);
487 #endif
488
489 #else /* CONFIG_MEMCG */
490 struct mem_cgroup;
491
492 static inline void mem_cgroup_events(struct mem_cgroup *memcg,
493                                      enum mem_cgroup_events_index idx,
494                                      unsigned int nr)
495 {
496 }
497
498 static inline bool mem_cgroup_low(struct mem_cgroup *root,
499                                   struct mem_cgroup *memcg)
500 {
501         return false;
502 }
503
504 static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
505                                         gfp_t gfp_mask,
506                                         struct mem_cgroup **memcgp)
507 {
508         *memcgp = NULL;
509         return 0;
510 }
511
512 static inline void mem_cgroup_commit_charge(struct page *page,
513                                             struct mem_cgroup *memcg,
514                                             bool lrucare)
515 {
516 }
517
518 static inline void mem_cgroup_cancel_charge(struct page *page,
519                                             struct mem_cgroup *memcg)
520 {
521 }
522
523 static inline void mem_cgroup_uncharge(struct page *page)
524 {
525 }
526
527 static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
528 {
529 }
530
531 static inline void mem_cgroup_replace_page(struct page *old, struct page *new)
532 {
533 }
534
535 static inline struct lruvec *mem_cgroup_zone_lruvec(struct zone *zone,
536                                                     struct mem_cgroup *memcg)
537 {
538         return &zone->lruvec;
539 }
540
541 static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
542                                                     struct zone *zone)
543 {
544         return &zone->lruvec;
545 }
546
547 static inline bool mm_match_cgroup(struct mm_struct *mm,
548                 struct mem_cgroup *memcg)
549 {
550         return true;
551 }
552
553 static inline bool task_in_mem_cgroup(struct task_struct *task,
554                                       const struct mem_cgroup *memcg)
555 {
556         return true;
557 }
558
559 static inline struct mem_cgroup *
560 mem_cgroup_iter(struct mem_cgroup *root,
561                 struct mem_cgroup *prev,
562                 struct mem_cgroup_reclaim_cookie *reclaim)
563 {
564         return NULL;
565 }
566
567 static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
568                                          struct mem_cgroup *prev)
569 {
570 }
571
572 static inline bool mem_cgroup_disabled(void)
573 {
574         return true;
575 }
576
577 static inline bool
578 mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec)
579 {
580         return true;
581 }
582
583 static inline bool mem_cgroup_lruvec_online(struct lruvec *lruvec)
584 {
585         return true;
586 }
587
588 static inline unsigned long
589 mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
590 {
591         return 0;
592 }
593
594 static inline void
595 mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
596                               int increment)
597 {
598 }
599
600 static inline void
601 mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
602 {
603 }
604
605 static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page)
606 {
607         return NULL;
608 }
609
610 static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg)
611 {
612 }
613
614 static inline void mem_cgroup_handle_over_high(void)
615 {
616 }
617
618 static inline void mem_cgroup_oom_enable(void)
619 {
620 }
621
622 static inline void mem_cgroup_oom_disable(void)
623 {
624 }
625
626 static inline bool task_in_memcg_oom(struct task_struct *p)
627 {
628         return false;
629 }
630
631 static inline bool mem_cgroup_oom_synchronize(bool wait)
632 {
633         return false;
634 }
635
636 static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg,
637                                             enum mem_cgroup_stat_index idx)
638 {
639 }
640
641 static inline void mem_cgroup_dec_page_stat(struct mem_cgroup *memcg,
642                                             enum mem_cgroup_stat_index idx)
643 {
644 }
645
646 static inline
647 unsigned long mem_cgroup_soft_limit_reclaim(struct zone *zone, int order,
648                                             gfp_t gfp_mask,
649                                             unsigned long *total_scanned)
650 {
651         return 0;
652 }
653
654 static inline void mem_cgroup_split_huge_fixup(struct page *head)
655 {
656 }
657
658 static inline
659 void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
660 {
661 }
662 #endif /* CONFIG_MEMCG */
663
664 enum {
665         UNDER_LIMIT,
666         SOFT_LIMIT,
667         OVER_LIMIT,
668 };
669
670 #ifdef CONFIG_CGROUP_WRITEBACK
671
672 struct list_head *mem_cgroup_cgwb_list(struct mem_cgroup *memcg);
673 struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb);
674 void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
675                          unsigned long *pheadroom, unsigned long *pdirty,
676                          unsigned long *pwriteback);
677
678 #else   /* CONFIG_CGROUP_WRITEBACK */
679
680 static inline struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
681 {
682         return NULL;
683 }
684
685 static inline void mem_cgroup_wb_stats(struct bdi_writeback *wb,
686                                        unsigned long *pfilepages,
687                                        unsigned long *pheadroom,
688                                        unsigned long *pdirty,
689                                        unsigned long *pwriteback)
690 {
691 }
692
693 #endif  /* CONFIG_CGROUP_WRITEBACK */
694
695 struct sock;
696 void sock_update_memcg(struct sock *sk);
697 void sock_release_memcg(struct sock *sk);
698
699 #ifdef CONFIG_MEMCG_KMEM
700 extern struct static_key memcg_kmem_enabled_key;
701
702 extern int memcg_nr_cache_ids;
703 void memcg_get_cache_ids(void);
704 void memcg_put_cache_ids(void);
705
706 /*
707  * Helper macro to loop through all memcg-specific caches. Callers must still
708  * check if the cache is valid (it is either valid or NULL).
709  * the slab_mutex must be held when looping through those caches
710  */
711 #define for_each_memcg_cache_index(_idx)        \
712         for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++)
713
714 static inline bool memcg_kmem_enabled(void)
715 {
716         return static_key_false(&memcg_kmem_enabled_key);
717 }
718
719 static inline bool memcg_kmem_is_active(struct mem_cgroup *memcg)
720 {
721         return memcg->kmem_acct_active;
722 }
723
724 /*
725  * In general, we'll do everything in our power to not incur in any overhead
726  * for non-memcg users for the kmem functions. Not even a function call, if we
727  * can avoid it.
728  *
729  * Therefore, we'll inline all those functions so that in the best case, we'll
730  * see that kmemcg is off for everybody and proceed quickly.  If it is on,
731  * we'll still do most of the flag checking inline. We check a lot of
732  * conditions, but because they are pretty simple, they are expected to be
733  * fast.
734  */
735 int __memcg_kmem_charge_memcg(struct page *page, gfp_t gfp, int order,
736                               struct mem_cgroup *memcg);
737 int __memcg_kmem_charge(struct page *page, gfp_t gfp, int order);
738 void __memcg_kmem_uncharge(struct page *page, int order);
739
740 /*
741  * helper for acessing a memcg's index. It will be used as an index in the
742  * child cache array in kmem_cache, and also to derive its name. This function
743  * will return -1 when this is not a kmem-limited memcg.
744  */
745 static inline int memcg_cache_id(struct mem_cgroup *memcg)
746 {
747         return memcg ? memcg->kmemcg_id : -1;
748 }
749
750 struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp);
751 void __memcg_kmem_put_cache(struct kmem_cache *cachep);
752
753 static inline bool __memcg_kmem_bypass(void)
754 {
755         if (!memcg_kmem_enabled())
756                 return true;
757         if (in_interrupt() || (!current->mm) || (current->flags & PF_KTHREAD))
758                 return true;
759         return false;
760 }
761
762 /**
763  * memcg_kmem_charge: charge a kmem page
764  * @page: page to charge
765  * @gfp: reclaim mode
766  * @order: allocation order
767  *
768  * Returns 0 on success, an error code on failure.
769  */
770 static __always_inline int memcg_kmem_charge(struct page *page,
771                                              gfp_t gfp, int order)
772 {
773         if (__memcg_kmem_bypass())
774                 return 0;
775         if (!(gfp & __GFP_ACCOUNT))
776                 return 0;
777         return __memcg_kmem_charge(page, gfp, order);
778 }
779
780 /**
781  * memcg_kmem_uncharge: uncharge a kmem page
782  * @page: page to uncharge
783  * @order: allocation order
784  */
785 static __always_inline void memcg_kmem_uncharge(struct page *page, int order)
786 {
787         if (memcg_kmem_enabled())
788                 __memcg_kmem_uncharge(page, order);
789 }
790
791 /**
792  * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
793  * @cachep: the original global kmem cache
794  *
795  * All memory allocated from a per-memcg cache is charged to the owner memcg.
796  */
797 static __always_inline struct kmem_cache *
798 memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
799 {
800         if (__memcg_kmem_bypass())
801                 return cachep;
802         return __memcg_kmem_get_cache(cachep, gfp);
803 }
804
805 static __always_inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
806 {
807         if (memcg_kmem_enabled())
808                 __memcg_kmem_put_cache(cachep);
809 }
810 #else
811 #define for_each_memcg_cache_index(_idx)        \
812         for (; NULL; )
813
814 static inline bool memcg_kmem_enabled(void)
815 {
816         return false;
817 }
818
819 static inline bool memcg_kmem_is_active(struct mem_cgroup *memcg)
820 {
821         return false;
822 }
823
824 static inline int memcg_kmem_charge(struct page *page, gfp_t gfp, int order)
825 {
826         return 0;
827 }
828
829 static inline void memcg_kmem_uncharge(struct page *page, int order)
830 {
831 }
832
833 static inline int memcg_cache_id(struct mem_cgroup *memcg)
834 {
835         return -1;
836 }
837
838 static inline void memcg_get_cache_ids(void)
839 {
840 }
841
842 static inline void memcg_put_cache_ids(void)
843 {
844 }
845
846 static inline struct kmem_cache *
847 memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp)
848 {
849         return cachep;
850 }
851
852 static inline void memcg_kmem_put_cache(struct kmem_cache *cachep)
853 {
854 }
855 #endif /* CONFIG_MEMCG_KMEM */
856 #endif /* _LINUX_MEMCONTROL_H */