blob: 83469522690a8882f1c8e131d7ad95bad3a2ef95 [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 Rientjes8989e4c2015-09-08 15:00:44 -070015/*
16 * Details of the page allocation that triggered the oom killer that are used to
17 * determine what should be killed.
18 */
David Rientjes6e0fc462015-09-08 15:00:36 -070019struct oom_control {
David Rientjes8989e4c2015-09-08 15:00:44 -070020 /* Used to determine cpuset */
David Rientjes6e0fc462015-09-08 15:00:36 -070021 struct zonelist *zonelist;
David Rientjes8989e4c2015-09-08 15:00:44 -070022
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;
David Rientjes6e0fc462015-09-08 15:00:36 -070034};
35
David Rientjes70e24bd2007-10-16 23:25:53 -070036/*
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,
David Rientjes309ed882010-08-09 17:18:54 -070043 CONSTRAINT_MEMCG,
David Rientjes70e24bd2007-10-16 23:25:53 -070044};
45
David Rientjes9cbb78b2012-07-31 16:43:44 -070046enum 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
Johannes Weinerdc564012015-06-24 16:57:19 -070053extern struct mutex oom_lock;
54
David Rientjese1e12d22012-12-11 16:02:56 -080055static inline void set_current_oom_origin(void)
56{
Tetsuo Handac96fc2d2016-05-23 16:23:57 -070057 current->signal->oom_flag_origin = true;
David Rientjese1e12d22012-12-11 16:02:56 -080058}
59
60static inline void clear_current_oom_origin(void)
61{
Tetsuo Handac96fc2d2016-05-23 16:23:57 -070062 current->signal->oom_flag_origin = false;
David Rientjese1e12d22012-12-11 16:02:56 -080063}
64
65static inline bool oom_task_origin(const struct task_struct *p)
66{
Tetsuo Handac96fc2d2016-05-23 16:23:57 -070067 return p->signal->oom_flag_origin;
David Rientjese1e12d22012-12-11 16:02:56 -080068}
David Rientjes72788c32011-05-24 17:11:40 -070069
Johannes Weiner16e95192015-06-24 16:57:07 -070070extern void mark_oom_victim(struct task_struct *tsk);
Michal Hocko49550b62015-02-11 15:26:12 -080071
Michal Hocko3ef22df2016-05-19 17:13:12 -070072#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
David Rientjesa7f638f2012-05-29 15:06:47 -070080extern unsigned long oom_badness(struct task_struct *p,
81 struct mem_cgroup *memcg, const nodemask_t *nodemask,
82 unsigned long totalpages);
Michal Hocko5695be12014-10-20 18:12:32 +020083
David Rientjes6e0fc462015-09-08 15:00:36 -070084extern void oom_kill_process(struct oom_control *oc, struct task_struct *p,
David Rientjes9cbb78b2012-07-31 16:43:44 -070085 unsigned int points, unsigned long totalpages,
David Rientjes6e0fc462015-09-08 15:00:36 -070086 struct mem_cgroup *memcg, const char *message);
David Rientjes9cbb78b2012-07-31 16:43:44 -070087
David Rientjes6e0fc462015-09-08 15:00:36 -070088extern void check_panic_on_oom(struct oom_control *oc,
89 enum oom_constraint constraint,
Balasubramani Vivekanandan2415b9f2015-04-14 15:48:18 -070090 struct mem_cgroup *memcg);
David Rientjes876aafb2012-07-31 16:43:48 -070091
David Rientjes6e0fc462015-09-08 15:00:36 -070092extern enum oom_scan_t oom_scan_process_thread(struct oom_control *oc,
93 struct task_struct *task, unsigned long totalpages);
David Rientjes9cbb78b2012-07-31 16:43:44 -070094
David Rientjes6e0fc462015-09-08 15:00:36 -070095extern bool out_of_memory(struct oom_control *oc);
Johannes Weiner16e95192015-06-24 16:57:07 -070096
Michal Hocko36324a92016-03-25 14:20:27 -070097extern void exit_oom_victim(struct task_struct *tsk);
Johannes Weiner16e95192015-06-24 16:57:07 -070098
David Rientjes5a3135c22007-10-16 23:25:53 -070099extern int register_oom_notifier(struct notifier_block *nb);
100extern int unregister_oom_notifier(struct notifier_block *nb);
101
Alexey Dobriyan1a8670a2009-09-21 17:03:09 -0700102extern bool oom_killer_disabled;
Michal Hockoc32b3cb2015-02-11 15:26:24 -0800103extern bool oom_killer_disable(void);
104extern void oom_killer_enable(void);
David Rientjes8e4228e2010-08-09 17:18:56 -0700105
KAMEZAWA Hiroyuki158e0a22010-08-10 18:03:00 -0700106extern struct task_struct *find_lock_task_mm(struct task_struct *p);
107
Oleg Nesterovd003f372014-12-12 16:56:24 -0800108static inline bool task_will_free_mem(struct task_struct *task)
109{
Michal Hocko98748bd2016-05-20 16:57:24 -0700110 struct signal_struct *sig = task->signal;
111
Oleg Nesterovd003f372014-12-12 16:56:24 -0800112 /*
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 */
Michal Hocko98748bd2016-05-20 16:57:24 -0700117 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;
Oleg Nesterovd003f372014-12-12 16:56:24 -0800128}
129
David Rientjes8e4228e2010-08-09 17:18:56 -0700130/* sysctls */
131extern int sysctl_oom_dump_tasks;
132extern int sysctl_oom_kill_allocating_task;
133extern int sysctl_panic_on_oom;
David Rientjes5a3135c22007-10-16 23:25:53 -0700134#endif /* _INCLUDE_LINUX_OOM_H */