cgroup: make cftype->[un]register_event() deal with cgroup_subsys_state instead of...
[deliverable/linux.git] / include / linux / vmpressure.h
CommitLineData
70ddf637
AV
1#ifndef __LINUX_VMPRESSURE_H
2#define __LINUX_VMPRESSURE_H
3
4#include <linux/mutex.h>
5#include <linux/list.h>
6#include <linux/workqueue.h>
7#include <linux/gfp.h>
8#include <linux/types.h>
9#include <linux/cgroup.h>
10
11struct vmpressure {
12 unsigned long scanned;
13 unsigned long reclaimed;
14 /* The lock is used to keep the scanned/reclaimed above in sync. */
15 struct mutex sr_lock;
16
17 /* The list of vmpressure_event structs. */
18 struct list_head events;
19 /* Have to grab the lock on events traversal or modifications. */
20 struct mutex events_lock;
21
22 struct work_struct work;
23};
24
25struct mem_cgroup;
26
27#ifdef CONFIG_MEMCG
28extern void vmpressure(gfp_t gfp, struct mem_cgroup *memcg,
29 unsigned long scanned, unsigned long reclaimed);
30extern void vmpressure_prio(gfp_t gfp, struct mem_cgroup *memcg, int prio);
31
32extern void vmpressure_init(struct vmpressure *vmpr);
33extern struct vmpressure *memcg_to_vmpressure(struct mem_cgroup *memcg);
34extern struct cgroup_subsys_state *vmpressure_to_css(struct vmpressure *vmpr);
35extern struct vmpressure *css_to_vmpressure(struct cgroup_subsys_state *css);
81eeaf04
TH
36extern int vmpressure_register_event(struct cgroup_subsys_state *css,
37 struct cftype *cft,
70ddf637
AV
38 struct eventfd_ctx *eventfd,
39 const char *args);
81eeaf04
TH
40extern void vmpressure_unregister_event(struct cgroup_subsys_state *css,
41 struct cftype *cft,
70ddf637
AV
42 struct eventfd_ctx *eventfd);
43#else
44static inline void vmpressure(gfp_t gfp, struct mem_cgroup *memcg,
45 unsigned long scanned, unsigned long reclaimed) {}
46static inline void vmpressure_prio(gfp_t gfp, struct mem_cgroup *memcg,
47 int prio) {}
48#endif /* CONFIG_MEMCG */
49#endif /* __LINUX_VMPRESSURE_H */
This page took 0.103911 seconds and 5 git commands to generate.