blob: 853698c721f7d1547df181a4fbfc904a67758f72 [file] [log] [blame]
Alexey Dobriyan8ac773b2006-10-19 23:28:32 -07001#ifndef __INCLUDE_LINUX_OOM_H
2#define __INCLUDE_LINUX_OOM_H
3
David Rientjes5a3135c22007-10-16 23:25:53 -07004
David Rientjesa63d83f2010-08-09 17:19:46 -07005#include <linux/sched.h>
David Rientjes172acf62007-10-16 23:25:59 -07006#include <linux/types.h>
KAMEZAWA Hiroyuki4365a562009-12-15 16:45:33 -08007#include <linux/nodemask.h>
David Howells607ca462012-10-13 10:46:48 +01008#include <uapi/linux/oom.h>
David Rientjes172acf62007-10-16 23:25:59 -07009
10struct zonelist;
11struct notifier_block;
Andrew Morton74bcbf42010-08-09 17:19:43 -070012struct mem_cgroup;
13struct task_struct;
David Rientjes172acf62007-10-16 23:25:59 -070014
David Rientjes70e24bd2007-10-16 23:25:53 -070015/*
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,
David Rientjes309ed882010-08-09 17:18:54 -070022 CONSTRAINT_MEMCG,
David Rientjes70e24bd2007-10-16 23:25:53 -070023};
24
David Rientjes9cbb78b2012-07-31 16:43:44 -070025enum 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
David Rientjese1e12d22012-12-11 16:02:56 -080032/* 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}
David Rientjes72788c32011-05-24 17:11:40 -070049
David Rientjesa7f638f2012-05-29 15:06:47 -070050extern unsigned long oom_badness(struct task_struct *p,
51 struct mem_cgroup *memcg, const nodemask_t *nodemask,
52 unsigned long totalpages);
Michal Hocko5695be12014-10-20 18:12:32 +020053
54extern int oom_kills_count(void);
55extern void note_oom_kill(void);
David Rientjes9cbb78b2012-07-31 16:43:44 -070056extern void oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
57 unsigned int points, unsigned long totalpages,
58 struct mem_cgroup *memcg, nodemask_t *nodemask,
59 const char *message);
60
David Rientjese972a072014-08-06 16:07:52 -070061extern bool oom_zonelist_trylock(struct zonelist *zonelist, gfp_t gfp_flags);
62extern void oom_zonelist_unlock(struct zonelist *zonelist, gfp_t gfp_flags);
David Rientjes098d7f12007-10-16 23:25:55 -070063
David Rientjes876aafb2012-07-31 16:43:48 -070064extern void check_panic_on_oom(enum oom_constraint constraint, gfp_t gfp_mask,
65 int order, const nodemask_t *nodemask);
66
David Rientjes9cbb78b2012-07-31 16:43:44 -070067extern enum oom_scan_t oom_scan_process_thread(struct task_struct *task,
68 unsigned long totalpages, const nodemask_t *nodemask,
69 bool force_kill);
David Rientjes9cbb78b2012-07-31 16:43:44 -070070
KAMEZAWA Hiroyuki4365a562009-12-15 16:45:33 -080071extern void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask,
David Rientjes08ab9b12012-03-21 16:34:04 -070072 int order, nodemask_t *mask, bool force_kill);
David Rientjes5a3135c22007-10-16 23:25:53 -070073extern int register_oom_notifier(struct notifier_block *nb);
74extern int unregister_oom_notifier(struct notifier_block *nb);
75
Alexey Dobriyan1a8670a2009-09-21 17:03:09 -070076extern bool oom_killer_disabled;
77
78static inline void oom_killer_disable(void)
79{
80 oom_killer_disabled = true;
81}
82
83static inline void oom_killer_enable(void)
84{
85 oom_killer_disabled = false;
86}
David Rientjes8e4228e2010-08-09 17:18:56 -070087
Qiang Huangb9921ec2013-11-12 15:07:22 -080088static inline bool oom_gfp_allowed(gfp_t gfp_mask)
89{
90 return (gfp_mask & __GFP_FS) && !(gfp_mask & __GFP_NORETRY);
91}
92
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -070093extern struct task_struct *find_lock_task_mm(struct task_struct *p);
94
Oleg Nesterovd003f372014-12-12 16:56:24 -080095static inline bool task_will_free_mem(struct task_struct *task)
96{
97 /*
98 * A coredumping process may sleep for an extended period in exit_mm(),
99 * so the oom killer cannot assume that the process will promptly exit
100 * and release memory.
101 */
102 return (task->flags & PF_EXITING) &&
103 !(task->signal->flags & SIGNAL_GROUP_COREDUMP);
104}
105
David Rientjes8e4228e2010-08-09 17:18:56 -0700106/* sysctls */
107extern int sysctl_oom_dump_tasks;
108extern int sysctl_oom_kill_allocating_task;
109extern int sysctl_panic_on_oom;
David Rientjes5a3135c22007-10-16 23:25:53 -0700110#endif /* _INCLUDE_LINUX_OOM_H */