1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __INCLUDE_LINUX_OOM_H 2 #ifndef __INCLUDE_LINUX_OOM_H 3 #define __INCLUDE_LINUX_OOM_H 3 #define __INCLUDE_LINUX_OOM_H 4 4 5 5 6 #include <linux/sched/signal.h> 6 #include <linux/sched/signal.h> 7 #include <linux/types.h> 7 #include <linux/types.h> 8 #include <linux/nodemask.h> 8 #include <linux/nodemask.h> 9 #include <uapi/linux/oom.h> 9 #include <uapi/linux/oom.h> 10 #include <linux/sched/coredump.h> /* MMF_* */ 10 #include <linux/sched/coredump.h> /* MMF_* */ 11 #include <linux/mm.h> /* VM_FAULT* */ 11 #include <linux/mm.h> /* VM_FAULT* */ 12 12 13 struct zonelist; 13 struct zonelist; 14 struct notifier_block; 14 struct notifier_block; 15 struct mem_cgroup; 15 struct mem_cgroup; 16 struct task_struct; 16 struct task_struct; 17 17 18 enum oom_constraint { 18 enum oom_constraint { 19 CONSTRAINT_NONE, 19 CONSTRAINT_NONE, 20 CONSTRAINT_CPUSET, 20 CONSTRAINT_CPUSET, 21 CONSTRAINT_MEMORY_POLICY, 21 CONSTRAINT_MEMORY_POLICY, 22 CONSTRAINT_MEMCG, 22 CONSTRAINT_MEMCG, 23 }; 23 }; 24 24 25 /* 25 /* 26 * Details of the page allocation that trigger 26 * Details of the page allocation that triggered the oom killer that are used to 27 * determine what should be killed. 27 * determine what should be killed. 28 */ 28 */ 29 struct oom_control { 29 struct oom_control { 30 /* Used to determine cpuset */ 30 /* Used to determine cpuset */ 31 struct zonelist *zonelist; 31 struct zonelist *zonelist; 32 32 33 /* Used to determine mempolicy */ 33 /* Used to determine mempolicy */ 34 nodemask_t *nodemask; 34 nodemask_t *nodemask; 35 35 36 /* Memory cgroup in which oom is invok 36 /* Memory cgroup in which oom is invoked, or NULL for global oom */ 37 struct mem_cgroup *memcg; 37 struct mem_cgroup *memcg; 38 38 39 /* Used to determine cpuset and node l 39 /* Used to determine cpuset and node locality requirement */ 40 const gfp_t gfp_mask; 40 const gfp_t gfp_mask; 41 41 42 /* 42 /* 43 * order == -1 means the oom kill is r 43 * order == -1 means the oom kill is required by sysrq, otherwise only 44 * for display purposes. 44 * for display purposes. 45 */ 45 */ 46 const int order; 46 const int order; 47 47 48 /* Used by oom implementation, do not 48 /* Used by oom implementation, do not set */ 49 unsigned long totalpages; 49 unsigned long totalpages; 50 struct task_struct *chosen; 50 struct task_struct *chosen; 51 long chosen_points; !! 51 unsigned long chosen_points; 52 52 53 /* Used to print the constraint info. 53 /* Used to print the constraint info. */ 54 enum oom_constraint constraint; 54 enum oom_constraint constraint; 55 }; 55 }; 56 56 57 extern struct mutex oom_lock; 57 extern struct mutex oom_lock; 58 extern struct mutex oom_adj_mutex; << 59 58 60 static inline void set_current_oom_origin(void 59 static inline void set_current_oom_origin(void) 61 { 60 { 62 current->signal->oom_flag_origin = tru 61 current->signal->oom_flag_origin = true; 63 } 62 } 64 63 65 static inline void clear_current_oom_origin(vo 64 static inline void clear_current_oom_origin(void) 66 { 65 { 67 current->signal->oom_flag_origin = fal 66 current->signal->oom_flag_origin = false; 68 } 67 } 69 68 70 static inline bool oom_task_origin(const struc 69 static inline bool oom_task_origin(const struct task_struct *p) 71 { 70 { 72 return p->signal->oom_flag_origin; 71 return p->signal->oom_flag_origin; 73 } 72 } 74 73 75 static inline bool tsk_is_oom_victim(struct ta 74 static inline bool tsk_is_oom_victim(struct task_struct * tsk) 76 { 75 { 77 return tsk->signal->oom_mm; 76 return tsk->signal->oom_mm; 78 } 77 } 79 78 80 /* 79 /* >> 80 * Use this helper if tsk->mm != mm and the victim mm needs a special >> 81 * handling. This is guaranteed to stay true after once set. >> 82 */ >> 83 static inline bool mm_is_oom_victim(struct mm_struct *mm) >> 84 { >> 85 return test_bit(MMF_OOM_VICTIM, &mm->flags); >> 86 } >> 87 >> 88 /* 81 * Checks whether a page fault on the given mm 89 * Checks whether a page fault on the given mm is still reliable. 82 * This is no longer true if the oom reaper st 90 * This is no longer true if the oom reaper started to reap the 83 * address space which is reflected by MMF_UNS 91 * address space which is reflected by MMF_UNSTABLE flag set in 84 * the mm. At that moment any !shared mapping 92 * the mm. At that moment any !shared mapping would lose the content 85 * and could cause a memory corruption (zero p 93 * and could cause a memory corruption (zero pages instead of the 86 * original content). 94 * original content). 87 * 95 * 88 * User should call this before establishing a 96 * User should call this before establishing a page table entry for 89 * a !shared mapping and under the proper page 97 * a !shared mapping and under the proper page table lock. 90 * 98 * 91 * Return 0 when the PF is safe VM_FAULT_SIGBU 99 * Return 0 when the PF is safe VM_FAULT_SIGBUS otherwise. 92 */ 100 */ 93 static inline vm_fault_t check_stable_address_ 101 static inline vm_fault_t check_stable_address_space(struct mm_struct *mm) 94 { 102 { 95 if (unlikely(test_bit(MMF_UNSTABLE, &m 103 if (unlikely(test_bit(MMF_UNSTABLE, &mm->flags))) 96 return VM_FAULT_SIGBUS; 104 return VM_FAULT_SIGBUS; 97 return 0; 105 return 0; 98 } 106 } 99 107 100 long oom_badness(struct task_struct *p, !! 108 bool __oom_reap_task_mm(struct mm_struct *mm); >> 109 >> 110 extern unsigned long oom_badness(struct task_struct *p, 101 unsigned long totalpages); 111 unsigned long totalpages); 102 112 103 extern bool out_of_memory(struct oom_control * 113 extern bool out_of_memory(struct oom_control *oc); 104 114 105 extern void exit_oom_victim(void); 115 extern void exit_oom_victim(void); 106 116 107 extern int register_oom_notifier(struct notifi 117 extern int register_oom_notifier(struct notifier_block *nb); 108 extern int unregister_oom_notifier(struct noti 118 extern int unregister_oom_notifier(struct notifier_block *nb); 109 119 110 extern bool oom_killer_disable(signed long tim 120 extern bool oom_killer_disable(signed long timeout); 111 extern void oom_killer_enable(void); 121 extern void oom_killer_enable(void); 112 122 113 extern struct task_struct *find_lock_task_mm(s 123 extern struct task_struct *find_lock_task_mm(struct task_struct *p); 114 124 >> 125 /* sysctls */ >> 126 extern int sysctl_oom_dump_tasks; >> 127 extern int sysctl_oom_kill_allocating_task; >> 128 extern int sysctl_panic_on_oom; 115 #endif /* _INCLUDE_LINUX_OOM_H */ 129 #endif /* _INCLUDE_LINUX_OOM_H */ 116 130
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.