Alexey Dobriyan | 8ac773b | 2006-10-19 23:28:32 -0700 | [diff] [blame] | 1 | #ifndef __INCLUDE_LINUX_OOM_H |
| 2 | #define __INCLUDE_LINUX_OOM_H |
| 3 | |
David Rientjes | 5a3135c2 | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 4 | |
David Rientjes | a63d83f | 2010-08-09 17:19:46 -0700 | [diff] [blame] | 5 | #include <linux/sched.h> |
David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 6 | #include <linux/types.h> |
KAMEZAWA Hiroyuki | 4365a56 | 2009-12-15 16:45:33 -0800 | [diff] [blame] | 7 | #include <linux/nodemask.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 8 | #include <uapi/linux/oom.h> |
David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 9 | |
| 10 | struct zonelist; |
| 11 | struct notifier_block; |
Andrew Morton | 74bcbf4 | 2010-08-09 17:19:43 -0700 | [diff] [blame] | 12 | struct mem_cgroup; |
| 13 | struct task_struct; |
David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 14 | |
David Rientjes | 70e24bd | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 15 | /* |
| 16 | * Types of limitations to the nodes from which allocations may occur |
| 17 | */ |
| 18 | enum oom_constraint { |
| 19 | CONSTRAINT_NONE, |
| 20 | CONSTRAINT_CPUSET, |
| 21 | CONSTRAINT_MEMORY_POLICY, |
David Rientjes | 309ed88 | 2010-08-09 17:18:54 -0700 | [diff] [blame] | 22 | CONSTRAINT_MEMCG, |
David Rientjes | 70e24bd | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 23 | }; |
| 24 | |
David Rientjes | 9cbb78b | 2012-07-31 16:43:44 -0700 | [diff] [blame] | 25 | enum 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 Rientjes | e1e12d2 | 2012-12-11 16:02:56 -0800 | [diff] [blame] | 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 | |
| 35 | static inline void set_current_oom_origin(void) |
| 36 | { |
| 37 | current->signal->oom_flags |= OOM_FLAG_ORIGIN; |
| 38 | } |
| 39 | |
| 40 | static inline void clear_current_oom_origin(void) |
| 41 | { |
| 42 | current->signal->oom_flags &= ~OOM_FLAG_ORIGIN; |
| 43 | } |
| 44 | |
| 45 | static inline bool oom_task_origin(const struct task_struct *p) |
| 46 | { |
| 47 | return !!(p->signal->oom_flags & OOM_FLAG_ORIGIN); |
| 48 | } |
David Rientjes | 72788c3 | 2011-05-24 17:11:40 -0700 | [diff] [blame] | 49 | |
David Rientjes | a7f638f | 2012-05-29 15:06:47 -0700 | [diff] [blame] | 50 | extern unsigned long oom_badness(struct task_struct *p, |
| 51 | struct mem_cgroup *memcg, const nodemask_t *nodemask, |
| 52 | unsigned long totalpages); |
David Rientjes | 9cbb78b | 2012-07-31 16:43:44 -0700 | [diff] [blame] | 53 | extern void oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order, |
| 54 | unsigned int points, unsigned long totalpages, |
| 55 | struct mem_cgroup *memcg, nodemask_t *nodemask, |
| 56 | const char *message); |
| 57 | |
Minchan Kim | ff321fe | 2010-08-09 17:18:57 -0700 | [diff] [blame] | 58 | extern int try_set_zonelist_oom(struct zonelist *zonelist, gfp_t gfp_flags); |
Mel Gorman | dd1a239 | 2008-04-28 02:12:17 -0700 | [diff] [blame] | 59 | extern void clear_zonelist_oom(struct zonelist *zonelist, gfp_t gfp_flags); |
David Rientjes | 098d7f1 | 2007-10-16 23:25:55 -0700 | [diff] [blame] | 60 | |
David Rientjes | 876aafb | 2012-07-31 16:43:48 -0700 | [diff] [blame] | 61 | extern void check_panic_on_oom(enum oom_constraint constraint, gfp_t gfp_mask, |
| 62 | int order, const nodemask_t *nodemask); |
| 63 | |
David Rientjes | 9cbb78b | 2012-07-31 16:43:44 -0700 | [diff] [blame] | 64 | extern enum oom_scan_t oom_scan_process_thread(struct task_struct *task, |
| 65 | unsigned long totalpages, const nodemask_t *nodemask, |
| 66 | bool force_kill); |
David Rientjes | 9cbb78b | 2012-07-31 16:43:44 -0700 | [diff] [blame] | 67 | |
KAMEZAWA Hiroyuki | 4365a56 | 2009-12-15 16:45:33 -0800 | [diff] [blame] | 68 | extern void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, |
David Rientjes | 08ab9b1 | 2012-03-21 16:34:04 -0700 | [diff] [blame] | 69 | int order, nodemask_t *mask, bool force_kill); |
David Rientjes | 5a3135c2 | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 70 | extern int register_oom_notifier(struct notifier_block *nb); |
| 71 | extern int unregister_oom_notifier(struct notifier_block *nb); |
| 72 | |
Alexey Dobriyan | 1a8670a | 2009-09-21 17:03:09 -0700 | [diff] [blame] | 73 | extern bool oom_killer_disabled; |
| 74 | |
| 75 | static inline void oom_killer_disable(void) |
| 76 | { |
| 77 | oom_killer_disabled = true; |
| 78 | } |
| 79 | |
| 80 | static inline void oom_killer_enable(void) |
| 81 | { |
| 82 | oom_killer_disabled = false; |
| 83 | } |
David Rientjes | 8e4228e | 2010-08-09 17:18:56 -0700 | [diff] [blame] | 84 | |
KAMEZAWA Hiroyuki | 158e0a2 | 2010-08-10 18:03:00 -0700 | [diff] [blame] | 85 | extern struct task_struct *find_lock_task_mm(struct task_struct *p); |
| 86 | |
David Rientjes | 8e4228e | 2010-08-09 17:18:56 -0700 | [diff] [blame] | 87 | /* sysctls */ |
| 88 | extern int sysctl_oom_dump_tasks; |
| 89 | extern int sysctl_oom_kill_allocating_task; |
| 90 | extern int sysctl_panic_on_oom; |
David Rientjes | 5a3135c2 | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 91 | #endif /* _INCLUDE_LINUX_OOM_H */ |