]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - include/linux/oom.h
Merge tag 'pinctrl-v4.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[mirror_ubuntu-zesty-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
70e24bdf
DR
15/*
16 * Types of limitations to the nodes from which allocations may occur
17 */
18enum oom_constraint {
19 CONSTRAINT_NONE,
20 CONSTRAINT_CPUSET,
21 CONSTRAINT_MEMORY_POLICY,
309ed882 22 CONSTRAINT_MEMCG,
70e24bdf
DR
23};
24
9cbb78bb
DR
25enum oom_scan_t {
26 OOM_SCAN_OK, /* scan thread and find its badness */
27 OOM_SCAN_CONTINUE, /* do not consider thread for oom kill */
28 OOM_SCAN_ABORT, /* abort the iteration and return */
29 OOM_SCAN_SELECT, /* always select this thread first */
30};
31
e1e12d2f
DR
32/* Thread is the potential origin of an oom condition; kill first on oom */
33#define OOM_FLAG_ORIGIN ((__force oom_flags_t)0x1)
34
35static inline void set_current_oom_origin(void)
36{
37 current->signal->oom_flags |= OOM_FLAG_ORIGIN;
38}
39
40static inline void clear_current_oom_origin(void)
41{
42 current->signal->oom_flags &= ~OOM_FLAG_ORIGIN;
43}
44
45static inline bool oom_task_origin(const struct task_struct *p)
46{
47 return !!(p->signal->oom_flags & OOM_FLAG_ORIGIN);
48}
72788c38 49
49550b60
MH
50extern void mark_tsk_oom_victim(struct task_struct *tsk);
51
52extern void unmark_oom_victim(void);
53
a7f638f9
DR
54extern unsigned long oom_badness(struct task_struct *p,
55 struct mem_cgroup *memcg, const nodemask_t *nodemask,
56 unsigned long totalpages);
5695be14
MH
57
58extern int oom_kills_count(void);
59extern void note_oom_kill(void);
9cbb78bb
DR
60extern void oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
61 unsigned int points, unsigned long totalpages,
62 struct mem_cgroup *memcg, nodemask_t *nodemask,
63 const char *message);
64
e972a070
DR
65extern bool oom_zonelist_trylock(struct zonelist *zonelist, gfp_t gfp_flags);
66extern void oom_zonelist_unlock(struct zonelist *zonelist, gfp_t gfp_flags);
098d7f12 67
876aafbf 68extern void check_panic_on_oom(enum oom_constraint constraint, gfp_t gfp_mask,
2415b9f5
BV
69 int order, const nodemask_t *nodemask,
70 struct mem_cgroup *memcg);
876aafbf 71
9cbb78bb
DR
72extern enum oom_scan_t oom_scan_process_thread(struct task_struct *task,
73 unsigned long totalpages, const nodemask_t *nodemask,
74 bool force_kill);
9cbb78bb 75
c32b3cbe 76extern bool out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask,
08ab9b10 77 int order, nodemask_t *mask, bool force_kill);
5a3135c2
DR
78extern int register_oom_notifier(struct notifier_block *nb);
79extern int unregister_oom_notifier(struct notifier_block *nb);
80
1a8670a2 81extern bool oom_killer_disabled;
c32b3cbe
MH
82extern bool oom_killer_disable(void);
83extern void oom_killer_enable(void);
8e4228e1 84
158e0a2d
KH
85extern struct task_struct *find_lock_task_mm(struct task_struct *p);
86
d003f371
ON
87static inline bool task_will_free_mem(struct task_struct *task)
88{
89 /*
90 * A coredumping process may sleep for an extended period in exit_mm(),
91 * so the oom killer cannot assume that the process will promptly exit
92 * and release memory.
93 */
94 return (task->flags & PF_EXITING) &&
95 !(task->signal->flags & SIGNAL_GROUP_COREDUMP);
96}
97
8e4228e1
DR
98/* sysctls */
99extern int sysctl_oom_dump_tasks;
100extern int sysctl_oom_kill_allocating_task;
101extern int sysctl_panic_on_oom;
5a3135c2 102#endif /* _INCLUDE_LINUX_OOM_H */