mm, oom: organize oom context into struct
[firefly-linux-kernel-4.4.55.git] / include / linux / oom.h
1 #ifndef __INCLUDE_LINUX_OOM_H
2 #define __INCLUDE_LINUX_OOM_H
3
4
5 #include <linux/sched.h>
6 #include <linux/types.h>
7 #include <linux/nodemask.h>
8 #include <uapi/linux/oom.h>
9
10 struct zonelist;
11 struct notifier_block;
12 struct mem_cgroup;
13 struct task_struct;
14
15 struct oom_control {
16         struct zonelist *zonelist;
17         nodemask_t      *nodemask;
18         gfp_t           gfp_mask;
19         int             order;
20         bool            force_kill;
21 };
22
23 /*
24  * Types of limitations to the nodes from which allocations may occur
25  */
26 enum oom_constraint {
27         CONSTRAINT_NONE,
28         CONSTRAINT_CPUSET,
29         CONSTRAINT_MEMORY_POLICY,
30         CONSTRAINT_MEMCG,
31 };
32
33 enum oom_scan_t {
34         OOM_SCAN_OK,            /* scan thread and find its badness */
35         OOM_SCAN_CONTINUE,      /* do not consider thread for oom kill */
36         OOM_SCAN_ABORT,         /* abort the iteration and return */
37         OOM_SCAN_SELECT,        /* always select this thread first */
38 };
39
40 /* Thread is the potential origin of an oom condition; kill first on oom */
41 #define OOM_FLAG_ORIGIN         ((__force oom_flags_t)0x1)
42
43 extern struct mutex oom_lock;
44
45 static inline void set_current_oom_origin(void)
46 {
47         current->signal->oom_flags |= OOM_FLAG_ORIGIN;
48 }
49
50 static inline void clear_current_oom_origin(void)
51 {
52         current->signal->oom_flags &= ~OOM_FLAG_ORIGIN;
53 }
54
55 static inline bool oom_task_origin(const struct task_struct *p)
56 {
57         return !!(p->signal->oom_flags & OOM_FLAG_ORIGIN);
58 }
59
60 extern void mark_oom_victim(struct task_struct *tsk);
61
62 extern unsigned long oom_badness(struct task_struct *p,
63                 struct mem_cgroup *memcg, const nodemask_t *nodemask,
64                 unsigned long totalpages);
65
66 extern int oom_kills_count(void);
67 extern void note_oom_kill(void);
68 extern void oom_kill_process(struct oom_control *oc, struct task_struct *p,
69                              unsigned int points, unsigned long totalpages,
70                              struct mem_cgroup *memcg, const char *message);
71
72 extern void check_panic_on_oom(struct oom_control *oc,
73                                enum oom_constraint constraint,
74                                struct mem_cgroup *memcg);
75
76 extern enum oom_scan_t oom_scan_process_thread(struct oom_control *oc,
77                 struct task_struct *task, unsigned long totalpages);
78
79 extern bool out_of_memory(struct oom_control *oc);
80
81 extern void exit_oom_victim(void);
82
83 extern int register_oom_notifier(struct notifier_block *nb);
84 extern int unregister_oom_notifier(struct notifier_block *nb);
85
86 extern bool oom_killer_disabled;
87 extern bool oom_killer_disable(void);
88 extern void oom_killer_enable(void);
89
90 extern struct task_struct *find_lock_task_mm(struct task_struct *p);
91
92 static inline bool task_will_free_mem(struct task_struct *task)
93 {
94         /*
95          * A coredumping process may sleep for an extended period in exit_mm(),
96          * so the oom killer cannot assume that the process will promptly exit
97          * and release memory.
98          */
99         return (task->flags & PF_EXITING) &&
100                 !(task->signal->flags & SIGNAL_GROUP_COREDUMP);
101 }
102
103 /* sysctls */
104 extern int sysctl_oom_dump_tasks;
105 extern int sysctl_oom_kill_allocating_task;
106 extern int sysctl_panic_on_oom;
107 #endif /* _INCLUDE_LINUX_OOM_H */