NVMe: Only release requested regions
[linux-2.6-block.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
26 /* Used to determine cpuset and node locality requirement */
27 const gfp_t gfp_mask;
28
29 /*
30 * order == -1 means the oom kill is required by sysrq, otherwise only
31 * for display purposes.
32 */
33 const int order;
6e0fc46d
DR
34};
35
70e24bdf
DR
36/*
37 * Types of limitations to the nodes from which allocations may occur
38 */
39enum oom_constraint {
40 CONSTRAINT_NONE,
41 CONSTRAINT_CPUSET,
42 CONSTRAINT_MEMORY_POLICY,
309ed882 43 CONSTRAINT_MEMCG,
70e24bdf
DR
44};
45
9cbb78bb
DR
46enum oom_scan_t {
47 OOM_SCAN_OK, /* scan thread and find its badness */
48 OOM_SCAN_CONTINUE, /* do not consider thread for oom kill */
49 OOM_SCAN_ABORT, /* abort the iteration and return */
50 OOM_SCAN_SELECT, /* always select this thread first */
51};
52
dc56401f
JW
53extern struct mutex oom_lock;
54
e1e12d2f
DR
55static inline void set_current_oom_origin(void)
56{
c96fc2d8 57 current->signal->oom_flag_origin = true;
e1e12d2f
DR
58}
59
60static inline void clear_current_oom_origin(void)
61{
c96fc2d8 62 current->signal->oom_flag_origin = false;
e1e12d2f
DR
63}
64
65static inline bool oom_task_origin(const struct task_struct *p)
66{
c96fc2d8 67 return p->signal->oom_flag_origin;
e1e12d2f 68}
72788c38 69
16e95196 70extern void mark_oom_victim(struct task_struct *tsk);
49550b60 71
3ef22dff
MH
72#ifdef CONFIG_MMU
73extern void try_oom_reaper(struct task_struct *tsk);
74#else
75static inline void try_oom_reaper(struct task_struct *tsk)
76{
77}
78#endif
79
a7f638f9
DR
80extern unsigned long oom_badness(struct task_struct *p,
81 struct mem_cgroup *memcg, const nodemask_t *nodemask,
82 unsigned long totalpages);
5695be14 83
6e0fc46d 84extern void oom_kill_process(struct oom_control *oc, struct task_struct *p,
9cbb78bb 85 unsigned int points, unsigned long totalpages,
6e0fc46d 86 struct mem_cgroup *memcg, const char *message);
9cbb78bb 87
6e0fc46d
DR
88extern void check_panic_on_oom(struct oom_control *oc,
89 enum oom_constraint constraint,
2415b9f5 90 struct mem_cgroup *memcg);
876aafbf 91
6e0fc46d
DR
92extern enum oom_scan_t oom_scan_process_thread(struct oom_control *oc,
93 struct task_struct *task, unsigned long totalpages);
9cbb78bb 94
6e0fc46d 95extern bool out_of_memory(struct oom_control *oc);
16e95196 96
36324a99 97extern void exit_oom_victim(struct task_struct *tsk);
16e95196 98
5a3135c2
DR
99extern int register_oom_notifier(struct notifier_block *nb);
100extern int unregister_oom_notifier(struct notifier_block *nb);
101
1a8670a2 102extern bool oom_killer_disabled;
c32b3cbe
MH
103extern bool oom_killer_disable(void);
104extern void oom_killer_enable(void);
8e4228e1 105
158e0a2d
KH
106extern struct task_struct *find_lock_task_mm(struct task_struct *p);
107
d003f371
ON
108static inline bool task_will_free_mem(struct task_struct *task)
109{
98748bd7
MH
110 struct signal_struct *sig = task->signal;
111
d003f371
ON
112 /*
113 * A coredumping process may sleep for an extended period in exit_mm(),
114 * so the oom killer cannot assume that the process will promptly exit
115 * and release memory.
116 */
98748bd7
MH
117 if (sig->flags & SIGNAL_GROUP_COREDUMP)
118 return false;
119
120 if (!(task->flags & PF_EXITING))
121 return false;
122
123 /* Make sure that the whole thread group is going down */
124 if (!thread_group_empty(task) && !(sig->flags & SIGNAL_GROUP_EXIT))
125 return false;
126
127 return true;
d003f371
ON
128}
129
8e4228e1
DR
130/* sysctls */
131extern int sysctl_oom_dump_tasks;
132extern int sysctl_oom_kill_allocating_task;
133extern int sysctl_panic_on_oom;
5a3135c2 134#endif /* _INCLUDE_LINUX_OOM_H */