memcontrol.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  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. #ifndef _LINUX_MEMCONTROL_H
  20. #define _LINUX_MEMCONTROL_H
  21. #include <linux/cgroup.h>
  22. #include <linux/vm_event_item.h>
  23. #include <linux/hardirq.h>
  24. #include <linux/jump_label.h>
  25. #include <linux/page_counter.h>
  26. #include <linux/vmpressure.h>
  27. #include <linux/eventfd.h>
  28. #include <linux/mmzone.h>
  29. #include <linux/writeback.h>
  30. #include <linux/page-flags.h>
  31. struct mem_cgroup;
  32. struct page;
  33. struct mm_struct;
  34. struct kmem_cache;
  35. /*
  36. * The corresponding mem_cgroup_stat_names is defined in mm/memcontrol.c,
  37. * These two lists should keep in accord with each other.
  38. */
  39. enum mem_cgroup_stat_index {
  40. /*
  41. * For MEM_CONTAINER_TYPE_ALL, usage = pagecache + rss.
  42. */
  43. MEM_CGROUP_STAT_CACHE, /* # of pages charged as cache */
  44. MEM_CGROUP_STAT_RSS, /* # of pages charged as anon rss */
  45. MEM_CGROUP_STAT_RSS_HUGE, /* # of pages charged as anon huge */
  46. MEM_CGROUP_STAT_FILE_MAPPED, /* # of pages charged as file rss */
  47. MEM_CGROUP_STAT_DIRTY, /* # of dirty pages in page cache */
  48. MEM_CGROUP_STAT_WRITEBACK, /* # of pages under writeback */
  49. MEM_CGROUP_STAT_SWAP, /* # of pages, swapped out */
  50. MEM_CGROUP_STAT_NSTATS,
  51. /* default hierarchy stats */
  52. MEMCG_KERNEL_STACK_KB = MEM_CGROUP_STAT_NSTATS,
  53. MEMCG_SLAB_RECLAIMABLE,
  54. MEMCG_SLAB_UNRECLAIMABLE,
  55. MEMCG_SOCK,
  56. MEMCG_NR_STAT,
  57. };
  58. struct mem_cgroup_reclaim_cookie {
  59. pg_data_t *pgdat;
  60. int priority;
  61. unsigned int generation;
  62. };
  63. enum mem_cgroup_events_index {
  64. MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */
  65. MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */
  66. MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */
  67. MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */
  68. MEM_CGROUP_EVENTS_NSTATS,
  69. /* default hierarchy events */
  70. MEMCG_LOW = MEM_CGROUP_EVENTS_NSTATS,
  71. MEMCG_HIGH,
  72. MEMCG_MAX,
  73. MEMCG_OOM,
  74. MEMCG_NR_EVENTS,
  75. };
  76. /*
  77. * Per memcg event counter is incremented at every pagein/pageout. With THP,
  78. * it will be incremated by the number of pages. This counter is used for
  79. * for trigger some periodic events. This is straightforward and better
  80. * than using jiffies etc. to handle periodic memcg event.
  81. */
  82. enum mem_cgroup_events_target {
  83. MEM_CGROUP_TARGET_THRESH,
  84. MEM_CGROUP_TARGET_SOFTLIMIT,
  85. MEM_CGROUP_TARGET_NUMAINFO,
  86. MEM_CGROUP_NTARGETS,
  87. };
  88. #ifdef CONFIG_MEMCG
  89. #define MEM_CGROUP_ID_SHIFT 16
  90. #define MEM_CGROUP_ID_MAX USHRT_MAX
  91. struct mem_cgroup_id {
  92. int id;
  93. atomic_t ref;
  94. };
  95. struct mem_cgroup_stat_cpu {
  96. long count[MEMCG_NR_STAT];
  97. unsigned long events[MEMCG_NR_EVENTS];
  98. unsigned long nr_page_events;
  99. unsigned long targets[MEM_CGROUP_NTARGETS];
  100. };
  101. struct mem_cgroup_reclaim_iter {
  102. struct mem_cgroup *position;
  103. /* scan generation, increased every round-trip */
  104. unsigned int generation;
  105. };
  106. /*
  107. * per-zone information in memory controller.
  108. */
  109. struct mem_cgroup_per_node {
  110. struct lruvec lruvec;
  111. unsigned long lru_zone_size[MAX_NR_ZONES][NR_LRU_LISTS];
  112. struct mem_cgroup_reclaim_iter iter[DEF_PRIORITY + 1];
  113. struct rb_node tree_node; /* RB tree node */
  114. unsigned long usage_in_excess;/* Set to the value by which */
  115. /* the soft limit is exceeded*/
  116. bool on_tree;
  117. struct mem_cgroup *memcg; /* Back pointer, we cannot */
  118. /* use container_of */
  119. };
  120. struct mem_cgroup_threshold {
  121. struct eventfd_ctx *eventfd;
  122. unsigned long threshold;
  123. };
  124. /* For threshold */
  125. struct mem_cgroup_threshold_ary {
  126. /* An array index points to threshold just below or equal to usage. */
  127. int current_threshold;
  128. /* Size of entries[] */
  129. unsigned int size;
  130. /* Array of thresholds */
  131. struct mem_cgroup_threshold entries[0];
  132. };
  133. struct mem_cgroup_thresholds {
  134. /* Primary thresholds array */
  135. struct mem_cgroup_threshold_ary *primary;
  136. /*
  137. * Spare threshold array.
  138. * This is needed to make mem_cgroup_unregister_event() "never fail".
  139. * It must be able to store at least primary->size - 1 entries.
  140. */
  141. struct mem_cgroup_threshold_ary *spare;
  142. };
  143. enum memcg_kmem_state {
  144. KMEM_NONE,
  145. KMEM_ALLOCATED,
  146. KMEM_ONLINE,
  147. };
  148. /*
  149. * The memory controller data structure. The memory controller controls both
  150. * page cache and RSS per cgroup. We would eventually like to provide
  151. * statistics based on the statistics developed by Rik Van Riel for clock-pro,
  152. * to help the administrator determine what knobs to tune.
  153. */
  154. struct mem_cgroup {
  155. struct cgroup_subsys_state css;
  156. /* Private memcg ID. Used to ID objects that outlive the cgroup */
  157. struct mem_cgroup_id id;
  158. /* Accounted resources */
  159. struct page_counter memory;
  160. struct page_counter swap;
  161. /* Legacy consumer-oriented counters */
  162. struct page_counter memsw;
  163. struct page_counter kmem;
  164. struct page_counter tcpmem;
  165. /* Normal memory consumption range */
  166. unsigned long low;
  167. unsigned long high;
  168. /* Range enforcement for interrupt charges */
  169. struct work_struct high_work;
  170. unsigned long soft_limit;
  171. /* vmpressure notifications */
  172. struct vmpressure vmpressure;
  173. /*
  174. * Should the accounting and control be hierarchical, per subtree?
  175. */
  176. bool use_hierarchy;
  177. /* protected by memcg_oom_lock */
  178. bool oom_lock;
  179. int under_oom;
  180. int swappiness;
  181. /* OOM-Killer disable */
  182. int oom_kill_disable;
  183. /* handle for "memory.events" */
  184. struct cgroup_file events_file;
  185. /* protect arrays of thresholds */
  186. struct mutex thresholds_lock;
  187. /* thresholds for memory usage. RCU-protected */
  188. struct mem_cgroup_thresholds thresholds;
  189. /* thresholds for mem+swap usage. RCU-protected */
  190. struct mem_cgroup_thresholds memsw_thresholds;
  191. /* For oom notifier event fd */
  192. struct list_head oom_notify;
  193. /*
  194. * Should we move charges of a task when a task is moved into this
  195. * mem_cgroup ? And what type of charges should we move ?
  196. */
  197. unsigned long move_charge_at_immigrate;
  198. /*
  199. * set > 0 if pages under this cgroup are moving to other cgroup.
  200. */
  201. atomic_t moving_account;
  202. /* taken only while moving_account > 0 */
  203. spinlock_t move_lock;
  204. struct task_struct *move_lock_task;
  205. unsigned long move_lock_flags;
  206. /*
  207. * percpu counter.
  208. */
  209. struct mem_cgroup_stat_cpu __percpu *stat;
  210. unsigned long socket_pressure;
  211. /* Legacy tcp memory accounting */
  212. bool tcpmem_active;
  213. int tcpmem_pressure;
  214. #ifndef CONFIG_SLOB
  215. /* Index in the kmem_cache->memcg_params.memcg_caches array */
  216. int kmemcg_id;
  217. enum memcg_kmem_state kmem_state;
  218. #endif
  219. int last_scanned_node;
  220. #if MAX_NUMNODES > 1
  221. nodemask_t scan_nodes;
  222. atomic_t numainfo_events;
  223. atomic_t numainfo_updating;
  224. #endif
  225. #ifdef CONFIG_CGROUP_WRITEBACK
  226. struct list_head cgwb_list;
  227. struct wb_domain cgwb_domain;
  228. #endif
  229. /* List of events which userspace want to receive */
  230. struct list_head event_list;
  231. spinlock_t event_list_lock;
  232. struct mem_cgroup_per_node *nodeinfo[0];
  233. /* WARNING: nodeinfo must be the last member here */
  234. };
  235. extern struct mem_cgroup *root_mem_cgroup;
  236. static inline bool mem_cgroup_disabled(void)
  237. {
  238. return !cgroup_subsys_enabled(memory_cgrp_subsys);
  239. }
  240. /**
  241. * mem_cgroup_events - count memory events against a cgroup
  242. * @memcg: the memory cgroup
  243. * @idx: the event index
  244. * @nr: the number of events to account for
  245. */
  246. static inline void mem_cgroup_events(struct mem_cgroup *memcg,
  247. enum mem_cgroup_events_index idx,
  248. unsigned int nr)
  249. {
  250. this_cpu_add(memcg->stat->events[idx], nr);
  251. cgroup_file_notify(&memcg->events_file);
  252. }
  253. bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg);
  254. int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
  255. gfp_t gfp_mask, struct mem_cgroup **memcgp,
  256. bool compound);
  257. void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg,
  258. bool lrucare, bool compound);
  259. void mem_cgroup_cancel_charge(struct page *page, struct mem_cgroup *memcg,
  260. bool compound);
  261. void mem_cgroup_uncharge(struct page *page);
  262. void mem_cgroup_uncharge_list(struct list_head *page_list);
  263. void mem_cgroup_migrate(struct page *oldpage, struct page *newpage);
  264. static struct mem_cgroup_per_node *
  265. mem_cgroup_nodeinfo(struct mem_cgroup *memcg, int nid)
  266. {
  267. return memcg->nodeinfo[nid];
  268. }
  269. /**
  270. * mem_cgroup_lruvec - get the lru list vector for a node or a memcg zone
  271. * @node: node of the wanted lruvec
  272. * @memcg: memcg of the wanted lruvec
  273. *
  274. * Returns the lru list vector holding pages for a given @node or a given
  275. * @memcg and @zone. This can be the node lruvec, if the memory controller
  276. * is disabled.
  277. */
  278. static inline struct lruvec *mem_cgroup_lruvec(struct pglist_data *pgdat,
  279. struct mem_cgroup *memcg)
  280. {
  281. struct mem_cgroup_per_node *mz;
  282. struct lruvec *lruvec;
  283. if (mem_cgroup_disabled()) {
  284. lruvec = node_lruvec(pgdat);
  285. goto out;
  286. }
  287. mz = mem_cgroup_nodeinfo(memcg, pgdat->node_id);
  288. lruvec = &mz->lruvec;
  289. out:
  290. /*
  291. * Since a node can be onlined after the mem_cgroup was created,
  292. * we have to be prepared to initialize lruvec->pgdat here;
  293. * and if offlined then reonlined, we need to reinitialize it.
  294. */
  295. if (unlikely(lruvec->pgdat != pgdat))
  296. lruvec->pgdat = pgdat;
  297. return lruvec;
  298. }
  299. struct lruvec *mem_cgroup_page_lruvec(struct page *, struct pglist_data *);
  300. bool task_in_mem_cgroup(struct task_struct *task, struct mem_cgroup *memcg);
  301. struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p);
  302. static inline
  303. struct mem_cgroup *mem_cgroup_from_css(struct cgroup_subsys_state *css){
  304. return css ? container_of(css, struct mem_cgroup, css) : NULL;
  305. }
  306. #define mem_cgroup_from_counter(counter, member) \
  307. container_of(counter, struct mem_cgroup, member)
  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. int mem_cgroup_scan_tasks(struct mem_cgroup *,
  313. int (*)(struct task_struct *, void *), void *);
  314. static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
  315. {
  316. if (mem_cgroup_disabled())
  317. return 0;
  318. return memcg->id.id;
  319. }
  320. struct mem_cgroup *mem_cgroup_from_id(unsigned short id);
  321. /**
  322. * parent_mem_cgroup - find the accounting parent of a memcg
  323. * @memcg: memcg whose parent to find
  324. *
  325. * Returns the parent memcg, or NULL if this is the root or the memory
  326. * controller is in legacy no-hierarchy mode.
  327. */
  328. static inline struct mem_cgroup *parent_mem_cgroup(struct mem_cgroup *memcg)
  329. {
  330. if (!memcg->memory.parent)
  331. return NULL;
  332. return mem_cgroup_from_counter(memcg->memory.parent, memory);
  333. }
  334. static inline bool mem_cgroup_is_descendant(struct mem_cgroup *memcg,
  335. struct mem_cgroup *root)
  336. {
  337. if (root == memcg)
  338. return true;
  339. if (!root->use_hierarchy)
  340. return false;
  341. return cgroup_is_descendant(memcg->css.cgroup, root->css.cgroup);
  342. }
  343. static inline bool mm_match_cgroup(struct mm_struct *mm,
  344. struct mem_cgroup *memcg)
  345. {
  346. struct mem_cgroup *task_memcg;
  347. bool match = false;
  348. rcu_read_lock();
  349. task_memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
  350. if (task_memcg)
  351. match = mem_cgroup_is_descendant(task_memcg, memcg);
  352. rcu_read_unlock();
  353. return match;
  354. }
  355. struct cgroup_subsys_state *mem_cgroup_css_from_page(struct page *page);
  356. ino_t page_cgroup_ino(struct page *page);
  357. static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
  358. {
  359. if (mem_cgroup_disabled())
  360. return true;
  361. return !!(memcg->css.flags & CSS_ONLINE);
  362. }
  363. /*
  364. * For memory reclaim.
  365. */
  366. int mem_cgroup_select_victim_node(struct mem_cgroup *memcg);
  367. void mem_cgroup_update_lru_size(struct lruvec *lruvec, enum lru_list lru,
  368. int zid, int nr_pages);
  369. unsigned long mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
  370. int nid, unsigned int lru_mask);
  371. static inline
  372. unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
  373. {
  374. struct mem_cgroup_per_node *mz;
  375. unsigned long nr_pages = 0;
  376. int zid;
  377. mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
  378. for (zid = 0; zid < MAX_NR_ZONES; zid++)
  379. nr_pages += mz->lru_zone_size[zid][lru];
  380. return nr_pages;
  381. }
  382. static inline
  383. unsigned long mem_cgroup_get_zone_lru_size(struct lruvec *lruvec,
  384. enum lru_list lru, int zone_idx)
  385. {
  386. struct mem_cgroup_per_node *mz;
  387. mz = container_of(lruvec, struct mem_cgroup_per_node, lruvec);
  388. return mz->lru_zone_size[zone_idx][lru];
  389. }
  390. void mem_cgroup_handle_over_high(void);
  391. unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg);
  392. void mem_cgroup_print_oom_info(struct mem_cgroup *memcg,
  393. struct task_struct *p);
  394. static inline void mem_cgroup_oom_enable(void)
  395. {
  396. WARN_ON(current->memcg_may_oom);
  397. current->memcg_may_oom = 1;
  398. }
  399. static inline void mem_cgroup_oom_disable(void)
  400. {
  401. WARN_ON(!current->memcg_may_oom);
  402. current->memcg_may_oom = 0;
  403. }
  404. static inline bool task_in_memcg_oom(struct task_struct *p)
  405. {
  406. return p->memcg_in_oom;
  407. }
  408. bool mem_cgroup_oom_synchronize(bool wait);
  409. #ifdef CONFIG_MEMCG_SWAP
  410. extern int do_swap_account;
  411. #endif
  412. void lock_page_memcg(struct page *page);
  413. void unlock_page_memcg(struct page *page);
  414. /**
  415. * mem_cgroup_update_page_stat - update page state statistics
  416. * @page: the page
  417. * @idx: page state item to account
  418. * @val: number of pages (positive or negative)
  419. *
  420. * The @page must be locked or the caller must use lock_page_memcg()
  421. * to prevent double accounting when the page is concurrently being
  422. * moved to another memcg:
  423. *
  424. * lock_page(page) or lock_page_memcg(page)
  425. * if (TestClearPageState(page))
  426. * mem_cgroup_update_page_stat(page, state, -1);
  427. * unlock_page(page) or unlock_page_memcg(page)
  428. */
  429. static inline void mem_cgroup_update_page_stat(struct page *page,
  430. enum mem_cgroup_stat_index idx, int val)
  431. {
  432. VM_BUG_ON(!(rcu_read_lock_held() || PageLocked(page)));
  433. if (page->mem_cgroup)
  434. this_cpu_add(page->mem_cgroup->stat->count[idx], val);
  435. }
  436. static inline void mem_cgroup_inc_page_stat(struct page *page,
  437. enum mem_cgroup_stat_index idx)
  438. {
  439. mem_cgroup_update_page_stat(page, idx, 1);
  440. }
  441. static inline void mem_cgroup_dec_page_stat(struct page *page,
  442. enum mem_cgroup_stat_index idx)
  443. {
  444. mem_cgroup_update_page_stat(page, idx, -1);
  445. }
  446. unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
  447. gfp_t gfp_mask,
  448. unsigned long *total_scanned);
  449. static inline void mem_cgroup_count_vm_event(struct mm_struct *mm,
  450. enum vm_event_item idx)
  451. {
  452. struct mem_cgroup *memcg;
  453. if (mem_cgroup_disabled())
  454. return;
  455. rcu_read_lock();
  456. memcg = mem_cgroup_from_task(rcu_dereference(mm->owner));
  457. if (unlikely(!memcg))
  458. goto out;
  459. switch (idx) {
  460. case PGFAULT:
  461. this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGFAULT]);
  462. break;
  463. case PGMAJFAULT:
  464. this_cpu_inc(memcg->stat->events[MEM_CGROUP_EVENTS_PGMAJFAULT]);
  465. break;
  466. default:
  467. BUG();
  468. }
  469. out:
  470. rcu_read_unlock();
  471. }
  472. #ifdef CONFIG_TRANSPARENT_HUGEPAGE
  473. void mem_cgroup_split_huge_fixup(struct page *head);
  474. #endif
  475. #else /* CONFIG_MEMCG */
  476. #define MEM_CGROUP_ID_SHIFT 0
  477. #define MEM_CGROUP_ID_MAX 0
  478. struct mem_cgroup;
  479. static inline bool mem_cgroup_disabled(void)
  480. {
  481. return true;
  482. }
  483. static inline void mem_cgroup_events(struct mem_cgroup *memcg,
  484. enum mem_cgroup_events_index idx,
  485. unsigned int nr)
  486. {
  487. }
  488. static inline bool mem_cgroup_low(struct mem_cgroup *root,
  489. struct mem_cgroup *memcg)
  490. {
  491. return false;
  492. }
  493. static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm,
  494. gfp_t gfp_mask,
  495. struct mem_cgroup **memcgp,
  496. bool compound)
  497. {
  498. *memcgp = NULL;
  499. return 0;
  500. }
  501. static inline void mem_cgroup_commit_charge(struct page *page,
  502. struct mem_cgroup *memcg,
  503. bool lrucare, bool compound)
  504. {
  505. }
  506. static inline void mem_cgroup_cancel_charge(struct page *page,
  507. struct mem_cgroup *memcg,
  508. bool compound)
  509. {
  510. }
  511. static inline void mem_cgroup_uncharge(struct page *page)
  512. {
  513. }
  514. static inline void mem_cgroup_uncharge_list(struct list_head *page_list)
  515. {
  516. }
  517. static inline void mem_cgroup_migrate(struct page *old, struct page *new)
  518. {
  519. }
  520. static inline struct lruvec *mem_cgroup_lruvec(struct pglist_data *pgdat,
  521. struct mem_cgroup *memcg)
  522. {
  523. return node_lruvec(pgdat);
  524. }
  525. static inline struct lruvec *mem_cgroup_page_lruvec(struct page *page,
  526. struct pglist_data *pgdat)
  527. {
  528. return &pgdat->lruvec;
  529. }
  530. static inline bool mm_match_cgroup(struct mm_struct *mm,
  531. struct mem_cgroup *memcg)
  532. {
  533. return true;
  534. }
  535. static inline bool task_in_mem_cgroup(struct task_struct *task,
  536. const struct mem_cgroup *memcg)
  537. {
  538. return true;
  539. }
  540. static inline struct mem_cgroup *
  541. mem_cgroup_iter(struct mem_cgroup *root,
  542. struct mem_cgroup *prev,
  543. struct mem_cgroup_reclaim_cookie *reclaim)
  544. {
  545. return NULL;
  546. }
  547. static inline void mem_cgroup_iter_break(struct mem_cgroup *root,
  548. struct mem_cgroup *prev)
  549. {
  550. }
  551. static inline int mem_cgroup_scan_tasks(struct mem_cgroup *memcg,
  552. int (*fn)(struct task_struct *, void *), void *arg)
  553. {
  554. return 0;
  555. }
  556. static inline unsigned short mem_cgroup_id(struct mem_cgroup *memcg)
  557. {
  558. return 0;
  559. }
  560. static inline struct mem_cgroup *mem_cgroup_from_id(unsigned short id)
  561. {
  562. WARN_ON_ONCE(id);
  563. /* XXX: This should always return root_mem_cgroup */
  564. return NULL;
  565. }
  566. static inline bool mem_cgroup_online(struct mem_cgroup *memcg)
  567. {
  568. return true;
  569. }
  570. static inline unsigned long
  571. mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru)
  572. {
  573. return 0;
  574. }
  575. static inline
  576. unsigned long mem_cgroup_get_zone_lru_size(struct lruvec *lruvec,
  577. enum lru_list lru, int zone_idx)
  578. {
  579. return 0;
  580. }
  581. static inline unsigned long
  582. mem_cgroup_node_nr_lru_pages(struct mem_cgroup *memcg,
  583. int nid, unsigned int lru_mask)
  584. {
  585. return 0;
  586. }
  587. static inline unsigned long mem_cgroup_get_limit(struct mem_cgroup *memcg)
  588. {
  589. return 0;
  590. }
  591. static inline void
  592. mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
  593. {
  594. }
  595. static inline void lock_page_memcg(struct page *page)
  596. {
  597. }
  598. static inline void unlock_page_memcg(struct page *page)
  599. {
  600. }
  601. static inline void mem_cgroup_handle_over_high(void)
  602. {
  603. }
  604. static inline void mem_cgroup_oom_enable(void)
  605. {
  606. }
  607. static inline void mem_cgroup_oom_disable(void)
  608. {
  609. }
  610. static inline bool task_in_memcg_oom(struct task_struct *p)
  611. {
  612. return false;
  613. }
  614. static inline bool mem_cgroup_oom_synchronize(bool wait)
  615. {
  616. return false;
  617. }
  618. static inline void mem_cgroup_update_page_stat(struct page *page,
  619. enum mem_cgroup_stat_index idx,
  620. int nr)
  621. {
  622. }
  623. static inline void mem_cgroup_inc_page_stat(struct page *page,
  624. enum mem_cgroup_stat_index idx)
  625. {
  626. }
  627. static inline void mem_cgroup_dec_page_stat(struct page *page,
  628. enum mem_cgroup_stat_index idx)
  629. {
  630. }
  631. static inline
  632. unsigned long mem_cgroup_soft_limit_reclaim(pg_data_t *pgdat, int order,
  633. gfp_t gfp_mask,
  634. unsigned long *total_scanned)
  635. {
  636. return 0;
  637. }
  638. static inline void mem_cgroup_split_huge_fixup(struct page *head)
  639. {
  640. }
  641. static inline
  642. void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx)
  643. {
  644. }
  645. #endif /* CONFIG_MEMCG */
  646. #ifdef CONFIG_CGROUP_WRITEBACK
  647. struct list_head *mem_cgroup_cgwb_list(struct mem_cgroup *memcg);
  648. struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb);
  649. void mem_cgroup_wb_stats(struct bdi_writeback *wb, unsigned long *pfilepages,
  650. unsigned long *pheadroom, unsigned long *pdirty,
  651. unsigned long *pwriteback);
  652. #else /* CONFIG_CGROUP_WRITEBACK */
  653. static inline struct wb_domain *mem_cgroup_wb_domain(struct bdi_writeback *wb)
  654. {
  655. return NULL;
  656. }
  657. static inline void mem_cgroup_wb_stats(struct bdi_writeback *wb,
  658. unsigned long *pfilepages,
  659. unsigned long *pheadroom,
  660. unsigned long *pdirty,
  661. unsigned long *pwriteback)
  662. {
  663. }
  664. #endif /* CONFIG_CGROUP_WRITEBACK */
  665. struct sock;
  666. bool mem_cgroup_charge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
  667. void mem_cgroup_uncharge_skmem(struct mem_cgroup *memcg, unsigned int nr_pages);
  668. #ifdef CONFIG_MEMCG
  669. extern struct static_key_false memcg_sockets_enabled_key;
  670. #define mem_cgroup_sockets_enabled static_branch_unlikely(&memcg_sockets_enabled_key)
  671. void mem_cgroup_sk_alloc(struct sock *sk);
  672. void mem_cgroup_sk_free(struct sock *sk);
  673. static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
  674. {
  675. if (!cgroup_subsys_on_dfl(memory_cgrp_subsys) && memcg->tcpmem_pressure)
  676. return true;
  677. do {
  678. if (time_before(jiffies, memcg->socket_pressure))
  679. return true;
  680. } while ((memcg = parent_mem_cgroup(memcg)));
  681. return false;
  682. }
  683. #else
  684. #define mem_cgroup_sockets_enabled 0
  685. static inline void mem_cgroup_sk_alloc(struct sock *sk) { };
  686. static inline void mem_cgroup_sk_free(struct sock *sk) { };
  687. static inline bool mem_cgroup_under_socket_pressure(struct mem_cgroup *memcg)
  688. {
  689. return false;
  690. }
  691. #endif
  692. struct kmem_cache *memcg_kmem_get_cache(struct kmem_cache *cachep);
  693. void memcg_kmem_put_cache(struct kmem_cache *cachep);
  694. int memcg_kmem_charge_memcg(struct page *page, gfp_t gfp, int order,
  695. struct mem_cgroup *memcg);
  696. int memcg_kmem_charge(struct page *page, gfp_t gfp, int order);
  697. void memcg_kmem_uncharge(struct page *page, int order);
  698. #if defined(CONFIG_MEMCG) && !defined(CONFIG_SLOB)
  699. extern struct static_key_false memcg_kmem_enabled_key;
  700. extern int memcg_nr_cache_ids;
  701. void memcg_get_cache_ids(void);
  702. void memcg_put_cache_ids(void);
  703. /*
  704. * Helper macro to loop through all memcg-specific caches. Callers must still
  705. * check if the cache is valid (it is either valid or NULL).
  706. * the slab_mutex must be held when looping through those caches
  707. */
  708. #define for_each_memcg_cache_index(_idx) \
  709. for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++)
  710. static inline bool memcg_kmem_enabled(void)
  711. {
  712. return static_branch_unlikely(&memcg_kmem_enabled_key);
  713. }
  714. /*
  715. * helper for accessing a memcg's index. It will be used as an index in the
  716. * child cache array in kmem_cache, and also to derive its name. This function
  717. * will return -1 when this is not a kmem-limited memcg.
  718. */
  719. static inline int memcg_cache_id(struct mem_cgroup *memcg)
  720. {
  721. return memcg ? memcg->kmemcg_id : -1;
  722. }
  723. /**
  724. * memcg_kmem_update_page_stat - update kmem page state statistics
  725. * @page: the page
  726. * @idx: page state item to account
  727. * @val: number of pages (positive or negative)
  728. */
  729. static inline void memcg_kmem_update_page_stat(struct page *page,
  730. enum mem_cgroup_stat_index idx, int val)
  731. {
  732. if (memcg_kmem_enabled() && page->mem_cgroup)
  733. this_cpu_add(page->mem_cgroup->stat->count[idx], val);
  734. }
  735. #else
  736. #define for_each_memcg_cache_index(_idx) \
  737. for (; NULL; )
  738. static inline bool memcg_kmem_enabled(void)
  739. {
  740. return false;
  741. }
  742. static inline int memcg_cache_id(struct mem_cgroup *memcg)
  743. {
  744. return -1;
  745. }
  746. static inline void memcg_get_cache_ids(void)
  747. {
  748. }
  749. static inline void memcg_put_cache_ids(void)
  750. {
  751. }
  752. static inline void memcg_kmem_update_page_stat(struct page *page,
  753. enum mem_cgroup_stat_index idx, int val)
  754. {
  755. }
  756. #endif /* CONFIG_MEMCG && !CONFIG_SLOB */
  757. #endif /* _LINUX_MEMCONTROL_H */