blob: 61e6fddfb26fd4c3d6870fd4ee8d451c5e10144c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Anton Vorontsov70ddf632013-04-29 15:08:31 -07002#ifndef __LINUX_VMPRESSURE_H
3#define __LINUX_VMPRESSURE_H
4
5#include <linux/mutex.h>
6#include <linux/list.h>
7#include <linux/workqueue.h>
8#include <linux/gfp.h>
9#include <linux/types.h>
10#include <linux/cgroup.h>
Tejun Heofba94802013-11-22 18:20:43 -050011#include <linux/eventfd.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070012
13struct vmpressure {
14 unsigned long scanned;
15 unsigned long reclaimed;
Johannes Weiner8e8ae642016-01-14 15:21:32 -080016
17 unsigned long tree_scanned;
18 unsigned long tree_reclaimed;
Anton Vorontsov70ddf632013-04-29 15:08:31 -070019 /* The lock is used to keep the scanned/reclaimed above in sync. */
Michal Hocko22f20202013-07-31 13:53:48 -070020 struct spinlock sr_lock;
Anton Vorontsov70ddf632013-04-29 15:08:31 -070021
22 /* The list of vmpressure_event structs. */
23 struct list_head events;
24 /* Have to grab the lock on events traversal or modifications. */
25 struct mutex events_lock;
26
27 struct work_struct work;
28};
29
30struct mem_cgroup;
31
32#ifdef CONFIG_MEMCG
Johannes Weiner8e8ae642016-01-14 15:21:32 -080033extern void vmpressure(gfp_t gfp, struct mem_cgroup *memcg, bool tree,
Anton Vorontsov70ddf632013-04-29 15:08:31 -070034 unsigned long scanned, unsigned long reclaimed);
35extern void vmpressure_prio(gfp_t gfp, struct mem_cgroup *memcg, int prio);
36
37extern void vmpressure_init(struct vmpressure *vmpr);
Michal Hocko33cb8762013-07-31 13:53:51 -070038extern void vmpressure_cleanup(struct vmpressure *vmpr);
Anton Vorontsov70ddf632013-04-29 15:08:31 -070039extern struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg);
40extern struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr);
Tejun Heo59b6f872013-11-22 18:20:43 -050041extern int vmpressure_register_event(struct mem_cgroup *memcg,
Anton Vorontsov70ddf632013-04-29 15:08:31 -070042 struct eventfd_ctx *eventfd,
43 const char *args);
Tejun Heo59b6f872013-11-22 18:20:43 -050044extern void vmpressure_unregister_event(struct mem_cgroup *memcg,
Anton Vorontsov70ddf632013-04-29 15:08:31 -070045 struct eventfd_ctx *eventfd);
46#else
Johannes Weiner8e8ae642016-01-14 15:21:32 -080047static inline void vmpressure(gfp_t gfp, struct mem_cgroup *memcg, bool tree,
Anton Vorontsov70ddf632013-04-29 15:08:31 -070048 unsigned long scanned, unsigned long reclaimed) {}
49static inline void vmpressure_prio(gfp_t gfp, struct mem_cgroup *memcg,
50 int prio) {}
51#endif /* CONFIG_MEMCG */
52#endif /* __LINUX_VMPRESSURE_H */