Merge tag 'for-linus' of https://github.com/openrisc/linux
[linux-block.git] / include / linux / oom.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
8ac773b4
AD
2#ifndef __INCLUDE_LINUX_OOM_H
3#define __INCLUDE_LINUX_OOM_H
4
5a3135c2 5
3f07c014 6#include <linux/sched/signal.h>
172acf60 7#include <linux/types.h>
4365a567 8#include <linux/nodemask.h>
607ca46e 9#include <uapi/linux/oom.h>
6b31d595
MH
10#include <linux/sched/coredump.h> /* MMF_* */
11#include <linux/mm.h> /* VM_FAULT* */
172acf60
DR
12
13struct zonelist;
14struct notifier_block;
74bcbf40
AM
15struct mem_cgroup;
16struct task_struct;
172acf60 17
ef8444ea 18enum oom_constraint {
19 CONSTRAINT_NONE,
20 CONSTRAINT_CPUSET,
21 CONSTRAINT_MEMORY_POLICY,
22 CONSTRAINT_MEMCG,
23};
24
8989e4c7
DR
25/*
26 * Details of the page allocation that triggered the oom killer that are used to
27 * determine what should be killed.
28 */
6e0fc46d 29struct oom_control {
8989e4c7 30 /* Used to determine cpuset */
6e0fc46d 31 struct zonelist *zonelist;
8989e4c7
DR
32
33 /* Used to determine mempolicy */
34 nodemask_t *nodemask;
35
2a966b77
VD
36 /* Memory cgroup in which oom is invoked, or NULL for global oom */
37 struct mem_cgroup *memcg;
38
8989e4c7
DR
39 /* Used to determine cpuset and node locality requirement */
40 const gfp_t gfp_mask;
41
42 /*
43 * order == -1 means the oom kill is required by sysrq, otherwise only
44 * for display purposes.
45 */
46 const int order;
6e0fc46d 47
7c5f64f8
VD
48 /* Used by oom implementation, do not set */
49 unsigned long totalpages;
50 struct task_struct *chosen;
9066e5cf 51 long chosen_points;
ef8444ea 52
53 /* Used to print the constraint info. */
54 enum oom_constraint constraint;
9cbb78bb
DR
55};
56
dc56401f 57extern struct mutex oom_lock;
67197a4f 58extern struct mutex oom_adj_mutex;
dc56401f 59
e1e12d2f
DR
60static inline void set_current_oom_origin(void)
61{
c96fc2d8 62 current->signal->oom_flag_origin = true;
e1e12d2f
DR
63}
64
65static inline void clear_current_oom_origin(void)
66{
c96fc2d8 67 current->signal->oom_flag_origin = false;
e1e12d2f
DR
68}
69
70static inline bool oom_task_origin(const struct task_struct *p)
71{
c96fc2d8 72 return p->signal->oom_flag_origin;
e1e12d2f 73}
72788c38 74
862e3073
MH
75static inline bool tsk_is_oom_victim(struct task_struct * tsk)
76{
77 return tsk->signal->oom_mm;
78}
79
6b31d595
MH
80/*
81 * Checks whether a page fault on the given mm is still reliable.
82 * This is no longer true if the oom reaper started to reap the
83 * address space which is reflected by MMF_UNSTABLE flag set in
84 * the mm. At that moment any !shared mapping would lose the content
85 * and could cause a memory corruption (zero pages instead of the
86 * original content).
87 *
88 * User should call this before establishing a page table entry for
89 * a !shared mapping and under the proper page table lock.
90 *
91 * Return 0 when the PF is safe VM_FAULT_SIGBUS otherwise.
92 */
2b740303 93static inline vm_fault_t check_stable_address_space(struct mm_struct *mm)
6b31d595
MH
94{
95 if (unlikely(test_bit(MMF_UNSTABLE, &mm->flags)))
96 return VM_FAULT_SIGBUS;
97 return 0;
98}
99
9066e5cf 100long oom_badness(struct task_struct *p,
a7f638f9 101 unsigned long totalpages);
5695be14 102
6e0fc46d 103extern bool out_of_memory(struct oom_control *oc);
16e95196 104
38531201 105extern void exit_oom_victim(void);
16e95196 106
5a3135c2
DR
107extern int register_oom_notifier(struct notifier_block *nb);
108extern int unregister_oom_notifier(struct notifier_block *nb);
109
7d2e7a22 110extern bool oom_killer_disable(signed long timeout);
c32b3cbe 111extern void oom_killer_enable(void);
8e4228e1 112
158e0a2d
KH
113extern struct task_struct *find_lock_task_mm(struct task_struct *p);
114
5a3135c2 115#endif /* _INCLUDE_LINUX_OOM_H */