1 /* memcontrol.h - Memory Controller
3 * Copyright IBM Corporation, 2007
4 * Author Balbir Singh <balbir@linux.vnet.ibm.com>
6 * Copyright 2007 OpenVZ SWsoft Inc
7 * Author: Pavel Emelianov <xemul@openvz.org>
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.
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.
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 #include <linux/page-flags.h>
39 * The corresponding mem_cgroup_stat_names is defined in mm/memcontrol.c,
40 * These two lists should keep in accord with each other.
42 enum mem_cgroup_stat_index
{
44 * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
46 MEM_CGROUP_STAT_CACHE
, /* # of pages charged as cache */
47 MEM_CGROUP_STAT_RSS
, /* # of pages charged as anon rss */
48 MEM_CGROUP_STAT_RSS_HUGE
, /* # of pages charged as anon huge */
49 MEM_CGROUP_STAT_FILE_MAPPED
, /* # of pages charged as file rss */
50 MEM_CGROUP_STAT_DIRTY
, /* # of dirty pages in page cache */
51 MEM_CGROUP_STAT_WRITEBACK
, /* # of pages under writeback */
52 MEM_CGROUP_STAT_SWAP
, /* # of pages, swapped out */
53 MEM_CGROUP_STAT_NSTATS
,
54 /* default hierarchy stats */
55 MEMCG_KERNEL_STACK
= MEM_CGROUP_STAT_NSTATS
,
56 MEMCG_SLAB_RECLAIMABLE
,
57 MEMCG_SLAB_UNRECLAIMABLE
,
62 struct mem_cgroup_reclaim_cookie
{
65 unsigned int generation
;
68 enum mem_cgroup_events_index
{
69 MEM_CGROUP_EVENTS_PGPGIN
, /* # of pages paged in */
70 MEM_CGROUP_EVENTS_PGPGOUT
, /* # of pages paged out */
71 MEM_CGROUP_EVENTS_PGFAULT
, /* # of page-faults */
72 MEM_CGROUP_EVENTS_PGMAJFAULT
, /* # of major page-faults */
73 MEM_CGROUP_EVENTS_NSTATS
,
74 /* default hierarchy events */
75 MEMCG_LOW
= MEM_CGROUP_EVENTS_NSTATS
,
83 * Per memcg event counter is incremented at every pagein/pageout. With THP,
84 * it will be incremated by the number of pages. This counter is used for
85 * for trigger some periodic events. This is straightforward and better
86 * than using jiffies etc. to handle periodic memcg event.
88 enum mem_cgroup_events_target
{
89 MEM_CGROUP_TARGET_THRESH
,
90 MEM_CGROUP_TARGET_SOFTLIMIT
,
91 MEM_CGROUP_TARGET_NUMAINFO
,
97 #define MEM_CGROUP_ID_SHIFT 16
98 #define MEM_CGROUP_ID_MAX USHRT_MAX
100 struct mem_cgroup_stat_cpu
{
101 long count
[MEMCG_NR_STAT
];
102 unsigned long events
[MEMCG_NR_EVENTS
];
103 unsigned long nr_page_events
;
104 unsigned long targets
[MEM_CGROUP_NTARGETS
];
107 struct mem_cgroup_reclaim_iter
{
108 struct mem_cgroup
*position
;
109 /* scan generation, increased every round-trip */
110 unsigned int generation
;
114 * per-zone information in memory controller.
116 struct mem_cgroup_per_zone
{
117 struct lruvec lruvec
;
118 unsigned long lru_size
[NR_LRU_LISTS
];
120 struct mem_cgroup_reclaim_iter iter
[DEF_PRIORITY
+ 1];
122 struct rb_node tree_node
; /* RB tree node */
123 unsigned long usage_in_excess
;/* Set to the value by which */
124 /* the soft limit is exceeded*/
126 struct mem_cgroup
*memcg
; /* Back pointer, we cannot */
127 /* use container_of */
130 struct mem_cgroup_per_node
{
131 struct mem_cgroup_per_zone zoneinfo
[MAX_NR_ZONES
];
134 struct mem_cgroup_threshold
{
135 struct eventfd_ctx
*eventfd
;
136 unsigned long threshold
;
140 struct mem_cgroup_threshold_ary
{
141 /* An array index points to threshold just below or equal to usage. */
142 int current_threshold
;
143 /* Size of entries[] */
145 /* Array of thresholds */
146 struct mem_cgroup_threshold entries
[0];
149 struct mem_cgroup_thresholds
{
150 /* Primary thresholds array */
151 struct mem_cgroup_threshold_ary
*primary
;
153 * Spare threshold array.
154 * This is needed to make mem_cgroup_unregister_event() "never fail".
155 * It must be able to store at least primary->size - 1 entries.
157 struct mem_cgroup_threshold_ary
*spare
;
160 enum memcg_kmem_state
{
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.
173 struct cgroup_subsys_state css
;
175 /* Accounted resources */
176 struct page_counter memory
;
177 struct page_counter swap
;
179 /* Legacy consumer-oriented counters */
180 struct page_counter memsw
;
181 struct page_counter kmem
;
182 struct page_counter tcpmem
;
184 /* Normal memory consumption range */
188 /* Range enforcement for interrupt charges */
189 struct work_struct high_work
;
191 unsigned long soft_limit
;
193 /* vmpressure notifications */
194 struct vmpressure vmpressure
;
197 * Should the accounting and control be hierarchical, per subtree?
201 /* protected by memcg_oom_lock */
206 /* OOM-Killer disable */
207 int oom_kill_disable
;
209 /* handle for "memory.events" */
210 struct cgroup_file events_file
;
212 /* protect arrays of thresholds */
213 struct mutex thresholds_lock
;
215 /* thresholds for memory usage. RCU-protected */
216 struct mem_cgroup_thresholds thresholds
;
218 /* thresholds for mem+swap usage. RCU-protected */
219 struct mem_cgroup_thresholds memsw_thresholds
;
221 /* For oom notifier event fd */
222 struct list_head oom_notify
;
225 * Should we move charges of a task when a task is moved into this
226 * mem_cgroup ? And what type of charges should we move ?
228 unsigned long move_charge_at_immigrate
;
230 * set > 0 if pages under this cgroup are moving to other cgroup.
232 atomic_t moving_account
;
233 /* taken only while moving_account > 0 */
234 spinlock_t move_lock
;
235 struct task_struct
*move_lock_task
;
236 unsigned long move_lock_flags
;
240 struct mem_cgroup_stat_cpu __percpu
*stat
;
242 unsigned long socket_pressure
;
244 /* Legacy tcp memory accounting */
249 /* Index in the kmem_cache->memcg_params.memcg_caches array */
251 enum memcg_kmem_state kmem_state
;
254 int last_scanned_node
;
256 nodemask_t scan_nodes
;
257 atomic_t numainfo_events
;
258 atomic_t numainfo_updating
;
261 #ifdef CONFIG_CGROUP_WRITEBACK
262 struct list_head cgwb_list
;
263 struct wb_domain cgwb_domain
;
266 /* List of events which userspace want to receive */
267 struct list_head event_list
;
268 spinlock_t event_list_lock
;
270 struct mem_cgroup_per_node
*nodeinfo
[0];
271 /* WARNING: nodeinfo must be the last member here */
274 extern struct mem_cgroup
*root_mem_cgroup
;
276 static inline bool mem_cgroup_disabled(void)
278 return !cgroup_subsys_enabled(memory_cgrp_subsys
);
282 * mem_cgroup_events - count memory events against a cgroup
283 * @memcg: the memory cgroup
284 * @idx: the event index
285 * @nr: the number of events to account for
287 static inline void mem_cgroup_events(struct mem_cgroup
*memcg
,
288 enum mem_cgroup_events_index idx
,
291 this_cpu_add(memcg
->stat
->events
[idx
], nr
);
292 cgroup_file_notify(&memcg
->events_file
);
295 bool mem_cgroup_low(struct mem_cgroup
*root
, struct mem_cgroup
*memcg
);
297 int mem_cgroup_try_charge(struct page
*page
, struct mm_struct
*mm
,
298 gfp_t gfp_mask
, struct mem_cgroup
**memcgp
,
300 void mem_cgroup_commit_charge(struct page
*page
, struct mem_cgroup
*memcg
,
301 bool lrucare
, bool compound
);
302 void mem_cgroup_cancel_charge(struct page
*page
, struct mem_cgroup
*memcg
,
304 void mem_cgroup_uncharge(struct page
*page
);
305 void mem_cgroup_uncharge_list(struct list_head
*page_list
);
307 void mem_cgroup_migrate(struct page
*oldpage
, struct page
*newpage
);
309 struct lruvec
*mem_cgroup_zone_lruvec(struct zone
*, struct mem_cgroup
*);
310 struct lruvec
*mem_cgroup_page_lruvec(struct page
*, struct zone
*);
312 bool task_in_mem_cgroup(struct task_struct
*task
, struct mem_cgroup
*memcg
);
313 struct mem_cgroup
*mem_cgroup_from_task(struct task_struct
*p
);
316 struct mem_cgroup
*mem_cgroup_from_css(struct cgroup_subsys_state
*css
){
317 return css
? container_of(css
, struct mem_cgroup
, css
) : NULL
;
320 #define mem_cgroup_from_counter(counter, member) \
321 container_of(counter, struct mem_cgroup, member)
323 struct mem_cgroup
*mem_cgroup_iter(struct mem_cgroup
*,
325 struct mem_cgroup_reclaim_cookie
*);
326 void mem_cgroup_iter_break(struct mem_cgroup
*, struct mem_cgroup
*);
328 static inline unsigned short mem_cgroup_id(struct mem_cgroup
*memcg
)
330 if (mem_cgroup_disabled())
333 return memcg
->css
.id
;
337 * mem_cgroup_from_id - look up a memcg from an id
338 * @id: the id to look up
340 * Caller must hold rcu_read_lock() and use css_tryget() as necessary.
342 static inline struct mem_cgroup
*mem_cgroup_from_id(unsigned short id
)
344 struct cgroup_subsys_state
*css
;
346 css
= css_from_id(id
, &memory_cgrp_subsys
);
347 return mem_cgroup_from_css(css
);
351 * parent_mem_cgroup - find the accounting parent of a memcg
352 * @memcg: memcg whose parent to find
354 * Returns the parent memcg, or NULL if this is the root or the memory
355 * controller is in legacy no-hierarchy mode.
357 static inline struct mem_cgroup
*parent_mem_cgroup(struct mem_cgroup
*memcg
)
359 if (!memcg
->memory
.parent
)
361 return mem_cgroup_from_counter(memcg
->memory
.parent
, memory
);
364 static inline bool mem_cgroup_is_descendant(struct mem_cgroup
*memcg
,
365 struct mem_cgroup
*root
)
369 if (!root
->use_hierarchy
)
371 return cgroup_is_descendant(memcg
->css
.cgroup
, root
->css
.cgroup
);
374 static inline bool mm_match_cgroup(struct mm_struct
*mm
,
375 struct mem_cgroup
*memcg
)
377 struct mem_cgroup
*task_memcg
;
381 task_memcg
= mem_cgroup_from_task(rcu_dereference(mm
->owner
));
383 match
= mem_cgroup_is_descendant(task_memcg
, memcg
);
388 struct cgroup_subsys_state
*mem_cgroup_css_from_page(struct page
*page
);
389 ino_t
page_cgroup_ino(struct page
*page
);
391 static inline bool mem_cgroup_online(struct mem_cgroup
*memcg
)
393 if (mem_cgroup_disabled())
395 return !!(memcg
->css
.flags
& CSS_ONLINE
);
399 * For memory reclaim.
401 int mem_cgroup_select_victim_node(struct mem_cgroup
*memcg
);
403 void mem_cgroup_update_lru_size(struct lruvec
*lruvec
, enum lru_list lru
,
406 unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup
*memcg
,
407 int nid
, unsigned int lru_mask
);
410 unsigned long mem_cgroup_get_lru_size(struct lruvec
*lruvec
, enum lru_list lru
)
412 struct mem_cgroup_per_zone
*mz
;
414 mz
= container_of(lruvec
, struct mem_cgroup_per_zone
, lruvec
);
415 return mz
->lru_size
[lru
];
418 void mem_cgroup_handle_over_high(void);
420 void mem_cgroup_print_oom_info(struct mem_cgroup
*memcg
,
421 struct task_struct
*p
);
423 static inline void mem_cgroup_oom_enable(void)
425 WARN_ON(current
->memcg_may_oom
);
426 current
->memcg_may_oom
= 1;
429 static inline void mem_cgroup_oom_disable(void)
431 WARN_ON(!current
->memcg_may_oom
);
432 current
->memcg_may_oom
= 0;
435 static inline bool task_in_memcg_oom(struct task_struct
*p
)
437 return p
->memcg_in_oom
;
440 bool mem_cgroup_oom_synchronize(bool wait
);
442 #ifdef CONFIG_MEMCG_SWAP
443 extern int do_swap_account
;
446 void lock_page_memcg(struct page
*page
);
447 void unlock_page_memcg(struct page
*page
);
450 * mem_cgroup_update_page_stat - update page state statistics
452 * @idx: page state item to account
453 * @val: number of pages (positive or negative)
455 * The @page must be locked or the caller must use lock_page_memcg()
456 * to prevent double accounting when the page is concurrently being
457 * moved to another memcg:
459 * lock_page(page) or lock_page_memcg(page)
460 * if (TestClearPageState(page))
461 * mem_cgroup_update_page_stat(page, state, -1);
462 * unlock_page(page) or unlock_page_memcg(page)
464 static inline void mem_cgroup_update_page_stat(struct page
*page
,
465 enum mem_cgroup_stat_index idx
, int val
)
467 VM_BUG_ON(!(rcu_read_lock_held() || PageLocked(page
)));
469 if (page
->mem_cgroup
)
470 this_cpu_add(page
->mem_cgroup
->stat
->count
[idx
], val
);
473 static inline void mem_cgroup_inc_page_stat(struct page
*page
,
474 enum mem_cgroup_stat_index idx
)
476 mem_cgroup_update_page_stat(page
, idx
, 1);
479 static inline void mem_cgroup_dec_page_stat(struct page
*page
,
480 enum mem_cgroup_stat_index idx
)
482 mem_cgroup_update_page_stat(page
, idx
, -1);
485 unsigned long mem_cgroup_soft_limit_reclaim(struct zone
*zone
, int order
,
487 unsigned long *total_scanned
);
489 static inline void mem_cgroup_count_vm_event(struct mm_struct
*mm
,
490 enum vm_event_item idx
)
492 struct mem_cgroup
*memcg
;
494 if (mem_cgroup_disabled())
498 memcg
= mem_cgroup_from_task(rcu_dereference(mm
->owner
));
499 if (unlikely(!memcg
))
504 this_cpu_inc(memcg
->stat
->events
[MEM_CGROUP_EVENTS_PGFAULT
]);
507 this_cpu_inc(memcg
->stat
->events
[MEM_CGROUP_EVENTS_PGMAJFAULT
]);
515 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
516 void mem_cgroup_split_huge_fixup(struct page
*head
);
519 #else /* CONFIG_MEMCG */
521 #define MEM_CGROUP_ID_SHIFT 0
522 #define MEM_CGROUP_ID_MAX 0
526 static inline bool mem_cgroup_disabled(void)
531 static inline void mem_cgroup_events(struct mem_cgroup
*memcg
,
532 enum mem_cgroup_events_index idx
,
537 static inline bool mem_cgroup_low(struct mem_cgroup
*root
,
538 struct mem_cgroup
*memcg
)
543 static inline int mem_cgroup_try_charge(struct page
*page
, struct mm_struct
*mm
,
545 struct mem_cgroup
**memcgp
,
552 static inline void mem_cgroup_commit_charge(struct page
*page
,
553 struct mem_cgroup
*memcg
,
554 bool lrucare
, bool compound
)
558 static inline void mem_cgroup_cancel_charge(struct page
*page
,
559 struct mem_cgroup
*memcg
,
564 static inline void mem_cgroup_uncharge(struct page
*page
)
568 static inline void mem_cgroup_uncharge_list(struct list_head
*page_list
)
572 static inline void mem_cgroup_migrate(struct page
*old
, struct page
*new)
576 static inline struct lruvec
*mem_cgroup_zone_lruvec(struct zone
*zone
,
577 struct mem_cgroup
*memcg
)
579 return &zone
->lruvec
;
582 static inline struct lruvec
*mem_cgroup_page_lruvec(struct page
*page
,
585 return &zone
->lruvec
;
588 static inline bool mm_match_cgroup(struct mm_struct
*mm
,
589 struct mem_cgroup
*memcg
)
594 static inline bool task_in_mem_cgroup(struct task_struct
*task
,
595 const struct mem_cgroup
*memcg
)
600 static inline struct mem_cgroup
*
601 mem_cgroup_iter(struct mem_cgroup
*root
,
602 struct mem_cgroup
*prev
,
603 struct mem_cgroup_reclaim_cookie
*reclaim
)
608 static inline void mem_cgroup_iter_break(struct mem_cgroup
*root
,
609 struct mem_cgroup
*prev
)
613 static inline unsigned short mem_cgroup_id(struct mem_cgroup
*memcg
)
618 static inline struct mem_cgroup
*mem_cgroup_from_id(unsigned short id
)
621 /* XXX: This should always return root_mem_cgroup */
625 static inline bool mem_cgroup_online(struct mem_cgroup
*memcg
)
630 static inline unsigned long
631 mem_cgroup_get_lru_size(struct lruvec
*lruvec
, enum lru_list lru
)
636 static inline unsigned long
637 mem_cgroup_node_nr_lru_pages(struct mem_cgroup
*memcg
,
638 int nid
, unsigned int lru_mask
)
644 mem_cgroup_print_oom_info(struct mem_cgroup
*memcg
, struct task_struct
*p
)
648 static inline void lock_page_memcg(struct page
*page
)
652 static inline void unlock_page_memcg(struct page
*page
)
656 static inline void mem_cgroup_handle_over_high(void)
660 static inline void mem_cgroup_oom_enable(void)
664 static inline void mem_cgroup_oom_disable(void)
668 static inline bool task_in_memcg_oom(struct task_struct
*p
)
673 static inline bool mem_cgroup_oom_synchronize(bool wait
)
678 static inline void mem_cgroup_inc_page_stat(struct page
*page
,
679 enum mem_cgroup_stat_index idx
)
683 static inline void mem_cgroup_dec_page_stat(struct page
*page
,
684 enum mem_cgroup_stat_index idx
)
689 unsigned long mem_cgroup_soft_limit_reclaim(struct zone
*zone
, int order
,
691 unsigned long *total_scanned
)
696 static inline void mem_cgroup_split_huge_fixup(struct page
*head
)
701 void mem_cgroup_count_vm_event(struct mm_struct
*mm
, enum vm_event_item idx
)
704 #endif /* CONFIG_MEMCG */
706 #ifdef CONFIG_CGROUP_WRITEBACK
708 struct list_head
*mem_cgroup_cgwb_list(struct mem_cgroup
*memcg
);
709 struct wb_domain
*mem_cgroup_wb_domain(struct bdi_writeback
*wb
);
710 void mem_cgroup_wb_stats(struct bdi_writeback
*wb
, unsigned long *pfilepages
,
711 unsigned long *pheadroom
, unsigned long *pdirty
,
712 unsigned long *pwriteback
);
714 #else /* CONFIG_CGROUP_WRITEBACK */
716 static inline struct wb_domain
*mem_cgroup_wb_domain(struct bdi_writeback
*wb
)
721 static inline void mem_cgroup_wb_stats(struct bdi_writeback
*wb
,
722 unsigned long *pfilepages
,
723 unsigned long *pheadroom
,
724 unsigned long *pdirty
,
725 unsigned long *pwriteback
)
729 #endif /* CONFIG_CGROUP_WRITEBACK */
732 void sock_update_memcg(struct sock
*sk
);
733 void sock_release_memcg(struct sock
*sk
);
734 bool mem_cgroup_charge_skmem(struct mem_cgroup
*memcg
, unsigned int nr_pages
);
735 void mem_cgroup_uncharge_skmem(struct mem_cgroup
*memcg
, unsigned int nr_pages
);
737 extern struct static_key_false memcg_sockets_enabled_key
;
738 #define mem_cgroup_sockets_enabled static_branch_unlikely(&memcg_sockets_enabled_key)
739 static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup
*memcg
)
741 if (!cgroup_subsys_on_dfl(memory_cgrp_subsys
) && memcg
->tcpmem_pressure
)
744 if (time_before(jiffies
, memcg
->socket_pressure
))
746 } while ((memcg
= parent_mem_cgroup(memcg
)));
750 #define mem_cgroup_sockets_enabled 0
751 static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup
*memcg
)
757 #if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
758 extern struct static_key_false memcg_kmem_enabled_key
;
760 extern int memcg_nr_cache_ids
;
761 void memcg_get_cache_ids(void);
762 void memcg_put_cache_ids(void);
765 * Helper macro to loop through all memcg-specific caches. Callers must still
766 * check if the cache is valid (it is either valid or NULL).
767 * the slab_mutex must be held when looping through those caches
769 #define for_each_memcg_cache_index(_idx) \
770 for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++)
772 static inline bool memcg_kmem_enabled(void)
774 return static_branch_unlikely(&memcg_kmem_enabled_key
);
778 * In general, we'll do everything in our power to not incur in any overhead
779 * for non-memcg users for the kmem functions. Not even a function call, if we
782 * Therefore, we'll inline all those functions so that in the best case, we'll
783 * see that kmemcg is off for everybody and proceed quickly. If it is on,
784 * we'll still do most of the flag checking inline. We check a lot of
785 * conditions, but because they are pretty simple, they are expected to be
788 int __memcg_kmem_charge_memcg(struct page
*page
, gfp_t gfp
, int order
,
789 struct mem_cgroup
*memcg
);
790 int __memcg_kmem_charge(struct page
*page
, gfp_t gfp
, int order
);
791 void __memcg_kmem_uncharge(struct page
*page
, int order
);
794 * helper for accessing a memcg's index. It will be used as an index in the
795 * child cache array in kmem_cache, and also to derive its name. This function
796 * will return -1 when this is not a kmem-limited memcg.
798 static inline int memcg_cache_id(struct mem_cgroup
*memcg
)
800 return memcg
? memcg
->kmemcg_id
: -1;
803 struct kmem_cache
*__memcg_kmem_get_cache(struct kmem_cache
*cachep
, gfp_t gfp
);
804 void __memcg_kmem_put_cache(struct kmem_cache
*cachep
);
806 static inline bool __memcg_kmem_bypass(void)
808 if (!memcg_kmem_enabled())
810 if (in_interrupt() || (!current
->mm
) || (current
->flags
& PF_KTHREAD
))
816 * memcg_kmem_charge: charge a kmem page
817 * @page: page to charge
819 * @order: allocation order
821 * Returns 0 on success, an error code on failure.
823 static __always_inline
int memcg_kmem_charge(struct page
*page
,
824 gfp_t gfp
, int order
)
826 if (__memcg_kmem_bypass())
828 if (!(gfp
& __GFP_ACCOUNT
))
830 return __memcg_kmem_charge(page
, gfp
, order
);
834 * memcg_kmem_uncharge: uncharge a kmem page
835 * @page: page to uncharge
836 * @order: allocation order
838 static __always_inline
void memcg_kmem_uncharge(struct page
*page
, int order
)
840 if (memcg_kmem_enabled())
841 __memcg_kmem_uncharge(page
, order
);
845 * memcg_kmem_get_cache: selects the correct per-memcg cache for allocation
846 * @cachep: the original global kmem cache
848 * All memory allocated from a per-memcg cache is charged to the owner memcg.
850 static __always_inline
struct kmem_cache
*
851 memcg_kmem_get_cache(struct kmem_cache
*cachep
, gfp_t gfp
)
853 if (__memcg_kmem_bypass())
855 return __memcg_kmem_get_cache(cachep
, gfp
);
858 static __always_inline
void memcg_kmem_put_cache(struct kmem_cache
*cachep
)
860 if (memcg_kmem_enabled())
861 __memcg_kmem_put_cache(cachep
);
865 * memcg_kmem_update_page_stat - update kmem page state statistics
867 * @idx: page state item to account
868 * @val: number of pages (positive or negative)
870 static inline void memcg_kmem_update_page_stat(struct page
*page
,
871 enum mem_cgroup_stat_index idx
, int val
)
873 if (memcg_kmem_enabled() && page
->mem_cgroup
)
874 this_cpu_add(page
->mem_cgroup
->stat
->count
[idx
], val
);
878 #define for_each_memcg_cache_index(_idx) \
881 static inline bool memcg_kmem_enabled(void)
886 static inline int memcg_kmem_charge(struct page
*page
, gfp_t gfp
, int order
)
891 static inline void memcg_kmem_uncharge(struct page
*page
, int order
)
895 static inline int memcg_cache_id(struct mem_cgroup
*memcg
)
900 static inline void memcg_get_cache_ids(void)
904 static inline void memcg_put_cache_ids(void)
908 static inline struct kmem_cache
*
909 memcg_kmem_get_cache(struct kmem_cache
*cachep
, gfp_t gfp
)
914 static inline void memcg_kmem_put_cache(struct kmem_cache
*cachep
)
918 static inline void memcg_kmem_update_page_stat(struct page
*page
,
919 enum mem_cgroup_stat_index idx
, int val
)
922 #endif /* CONFIG_MEMCG && !CONFIG_SLOB */
924 #endif /* _LINUX_MEMCONTROL_H */