]> git.ipfire.org Git - people/arne_f/kernel.git/blame - include/linux/oom.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[people/arne_f/kernel.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
8989e4c7
DR
18/*
19 * Details of the page allocation that triggered the oom killer that are used to
20 * determine what should be killed.
21 */
6e0fc46d 22struct oom_control {
8989e4c7 23 /* Used to determine cpuset */
6e0fc46d 24 struct zonelist *zonelist;
8989e4c7
DR
25
26 /* Used to determine mempolicy */
27 nodemask_t *nodemask;
28
2a966b77
VD
29 /* Memory cgroup in which oom is invoked, or NULL for global oom */
30 struct mem_cgroup *memcg;
31
8989e4c7
DR
32 /* Used to determine cpuset and node locality requirement */
33 const gfp_t gfp_mask;
34
35 /*
36 * order == -1 means the oom kill is required by sysrq, otherwise only
37 * for display purposes.
38 */
39 const int order;
6e0fc46d 40
7c5f64f8
VD
41 /* Used by oom implementation, do not set */
42 unsigned long totalpages;
43 struct task_struct *chosen;
44 unsigned long chosen_points;
9cbb78bb
DR
45};
46
dc56401f
JW
47extern struct mutex oom_lock;
48
e1e12d2f
DR
49static inline void set_current_oom_origin(void)
50{
c96fc2d8 51 current->signal->oom_flag_origin = true;
e1e12d2f
DR
52}
53
54static inline void clear_current_oom_origin(void)
55{
c96fc2d8 56 current->signal->oom_flag_origin = false;
e1e12d2f
DR
57}
58
59static inline bool oom_task_origin(const struct task_struct *p)
60{
c96fc2d8 61 return p->signal->oom_flag_origin;
e1e12d2f 62}
72788c38 63
862e3073
MH
64static inline bool tsk_is_oom_victim(struct task_struct * tsk)
65{
66 return tsk->signal->oom_mm;
67}
68
6b31d595
MH
69/*
70 * Checks whether a page fault on the given mm is still reliable.
71 * This is no longer true if the oom reaper started to reap the
72 * address space which is reflected by MMF_UNSTABLE flag set in
73 * the mm. At that moment any !shared mapping would lose the content
74 * and could cause a memory corruption (zero pages instead of the
75 * original content).
76 *
77 * User should call this before establishing a page table entry for
78 * a !shared mapping and under the proper page table lock.
79 *
80 * Return 0 when the PF is safe VM_FAULT_SIGBUS otherwise.
81 */
82static inline int check_stable_address_space(struct mm_struct *mm)
83{
84 if (unlikely(test_bit(MMF_UNSTABLE, &mm->flags)))
85 return VM_FAULT_SIGBUS;
86 return 0;
87}
88
a7f638f9
DR
89extern unsigned long oom_badness(struct task_struct *p,
90 struct mem_cgroup *memcg, const nodemask_t *nodemask,
91 unsigned long totalpages);
5695be14 92
6e0fc46d 93extern bool out_of_memory(struct oom_control *oc);
16e95196 94
38531201 95extern void exit_oom_victim(void);
16e95196 96
5a3135c2
DR
97extern int register_oom_notifier(struct notifier_block *nb);
98extern int unregister_oom_notifier(struct notifier_block *nb);
99
7d2e7a22 100extern bool oom_killer_disable(signed long timeout);
c32b3cbe 101extern void oom_killer_enable(void);
8e4228e1 102
158e0a2d
KH
103extern struct task_struct *find_lock_task_mm(struct task_struct *p);
104
8e4228e1
DR
105/* sysctls */
106extern int sysctl_oom_dump_tasks;
107extern int sysctl_oom_kill_allocating_task;
108extern int sysctl_panic_on_oom;
5a3135c2 109#endif /* _INCLUDE_LINUX_OOM_H */