blob: 7b3de73212199cfb6e46092600c9af3dc7749865 [file] [log] [blame]
Johannes Weinereb414682018-10-26 15:06:27 -07001#ifndef _LINUX_PSI_H
2#define _LINUX_PSI_H
3
Johannes Weinere0c27442018-11-30 14:09:58 -08004#include <linux/jump_label.h>
Johannes Weinereb414682018-10-26 15:06:27 -07005#include <linux/psi_types.h>
6#include <linux/sched.h>
Suren Baghdasaryan0e946822019-05-14 15:41:15 -07007#include <linux/poll.h>
Johannes Weinereb414682018-10-26 15:06:27 -07008
Johannes Weiner2ce71352018-10-26 15:06:31 -07009struct seq_file;
10struct css_set;
11
Johannes Weinereb414682018-10-26 15:06:27 -070012#ifdef CONFIG_PSI
13
Johannes Weinere0c27442018-11-30 14:09:58 -080014extern struct static_key_false psi_disabled;
Dan Schatzbergdf5ba5b2019-05-14 15:41:18 -070015extern struct psi_group psi_system;
Johannes Weinereb414682018-10-26 15:06:27 -070016
17void psi_init(void);
18
19void psi_task_change(struct task_struct *task, int clear, int set);
20
21void psi_memstall_tick(struct task_struct *task, int cpu);
22void psi_memstall_enter(unsigned long *flags);
23void psi_memstall_leave(unsigned long *flags);
24
Johannes Weiner2ce71352018-10-26 15:06:31 -070025int psi_show(struct seq_file *s, struct psi_group *group, enum psi_res res);
26
27#ifdef CONFIG_CGROUPS
28int psi_cgroup_alloc(struct cgroup *cgrp);
29void psi_cgroup_free(struct cgroup *cgrp);
30void cgroup_move_task(struct task_struct *p, struct css_set *to);
Suren Baghdasaryan0e946822019-05-14 15:41:15 -070031
32struct psi_trigger *psi_trigger_create(struct psi_group *group,
33 char *buf, size_t nbytes, enum psi_res res);
34void psi_trigger_replace(void **trigger_ptr, struct psi_trigger *t);
35
36__poll_t psi_trigger_poll(void **trigger_ptr, struct file *file,
37 poll_table *wait);
Johannes Weiner2ce71352018-10-26 15:06:31 -070038#endif
39
Johannes Weinereb414682018-10-26 15:06:27 -070040#else /* CONFIG_PSI */
41
42static inline void psi_init(void) {}
43
44static inline void psi_memstall_enter(unsigned long *flags) {}
45static inline void psi_memstall_leave(unsigned long *flags) {}
46
Johannes Weiner2ce71352018-10-26 15:06:31 -070047#ifdef CONFIG_CGROUPS
48static inline int psi_cgroup_alloc(struct cgroup *cgrp)
49{
50 return 0;
51}
52static inline void psi_cgroup_free(struct cgroup *cgrp)
53{
54}
55static inline void cgroup_move_task(struct task_struct *p, struct css_set *to)
56{
57 rcu_assign_pointer(p->cgroups, to);
58}
59#endif
60
Johannes Weinereb414682018-10-26 15:06:27 -070061#endif /* CONFIG_PSI */
62
63#endif /* _LINUX_PSI_H */