memcontrol.h 23 KB

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