]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/oom.h
Merge tag 'rxrpc-fixes-20160809' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-artful-kernel.git] / include / linux / oom.h
CommitLineData
8ac773b4
AD
1#ifndef __INCLUDE_LINUX_OOM_H
2#define __INCLUDE_LINUX_OOM_H
3
5a3135c2 4
a63d83f4 5#include <linux/sched.h>
172acf60 6#include <linux/types.h>
4365a567 7#include <linux/nodemask.h>
607ca46e 8#include <uapi/linux/oom.h>
172acf60
DR
9
10struct zonelist;
11struct notifier_block;
74bcbf40
AM
12struct mem_cgroup;
13struct task_struct;
172acf60 14
8989e4c7
DR
15/*
16 * Details of the page allocation that triggered the oom killer that are used to
17 * determine what should be killed.
18 */
6e0fc46d 19struct oom_control {
8989e4c7 20 /* Used to determine cpuset */
6e0fc46d 21 struct zonelist *zonelist;
8989e4c7
DR
22
23 /* Used to determine mempolicy */
24 nodemask_t *nodemask;
25
2a966b77
VD
26 /* Memory cgroup in which oom is invoked, or NULL for global oom */
27 struct mem_cgroup *memcg;
28
8989e4c7
DR
29 /* Used to determine cpuset and node locality requirement */
30 const gfp_t gfp_mask;
31
32 /*
33 * order == -1 means the oom kill is required by sysrq, otherwise only
34 * for display purposes.
35 */
36 const int order;
6e0fc46d
DR
37};
38
70e24bdf
DR
39/*
40 * Types of limitations to the nodes from which allocations may occur
41 */
42enum oom_constraint {
43 CONSTRAINT_NONE,
44 CONSTRAINT_CPUSET,
45 CONSTRAINT_MEMORY_POLICY,
309ed882 46 CONSTRAINT_MEMCG,
70e24bdf
DR
47};
48
9cbb78bb
DR
49enum oom_scan_t {
50 OOM_SCAN_OK, /* scan thread and find its badness */
51 OOM_SCAN_CONTINUE, /* do not consider thread for oom kill */
52 OOM_SCAN_ABORT, /* abort the iteration and return */
53 OOM_SCAN_SELECT, /* always select this thread first */
54};
55
dc56401f
JW
56extern struct mutex oom_lock;
57
e1e12d2f
DR
58static inline void set_current_oom_origin(void)
59{
c96fc2d8 60 current->signal->oom_flag_origin = true;
e1e12d2f
DR
61}
62
63static inline void clear_current_oom_origin(void)
64{
c96fc2d8 65 current->signal->oom_flag_origin = false;
e1e12d2f
DR
66}
67
68static inline bool oom_task_origin(const struct task_struct *p)
69{
c96fc2d8 70 return p->signal->oom_flag_origin;
e1e12d2f 71}
72788c38 72
16e95196 73extern void mark_oom_victim(struct task_struct *tsk);
49550b60 74
3ef22dff 75#ifdef CONFIG_MMU
1af8bb43 76extern void wake_oom_reaper(struct task_struct *tsk);
3ef22dff 77#else
1af8bb43 78static inline void wake_oom_reaper(struct task_struct *tsk)
3ef22dff
MH
79{
80}
81#endif
82
a7f638f9
DR
83extern unsigned long oom_badness(struct task_struct *p,
84 struct mem_cgroup *memcg, const nodemask_t *nodemask,
85 unsigned long totalpages);
5695be14 86
6e0fc46d 87extern void oom_kill_process(struct oom_control *oc, struct task_struct *p,
9cbb78bb 88 unsigned int points, unsigned long totalpages,
2a966b77 89 const char *message);
9cbb78bb 90
6e0fc46d 91extern void check_panic_on_oom(struct oom_control *oc,
2a966b77 92 enum oom_constraint constraint);
876aafbf 93
6e0fc46d 94extern enum oom_scan_t oom_scan_process_thread(struct oom_control *oc,
fbe84a09 95 struct task_struct *task);
9cbb78bb 96
6e0fc46d 97extern bool out_of_memory(struct oom_control *oc);
16e95196 98
36324a99 99extern void exit_oom_victim(struct task_struct *tsk);
16e95196 100
5a3135c2
DR
101extern int register_oom_notifier(struct notifier_block *nb);
102extern int unregister_oom_notifier(struct notifier_block *nb);
103
1a8670a2 104extern bool oom_killer_disabled;
c32b3cbe
MH
105extern bool oom_killer_disable(void);
106extern void oom_killer_enable(void);
8e4228e1 107
158e0a2d
KH
108extern struct task_struct *find_lock_task_mm(struct task_struct *p);
109
1af8bb43 110bool task_will_free_mem(struct task_struct *task);
d003f371 111
8e4228e1
DR
112/* sysctls */
113extern int sysctl_oom_dump_tasks;
114extern int sysctl_oom_kill_allocating_task;
115extern int sysctl_panic_on_oom;
5a3135c2 116#endif /* _INCLUDE_LINUX_OOM_H */