| 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 |  | 
 | 4 | /* /proc/<pid>/oom_adj set to -17 protects from the oom-killer */ | 
 | 5 | #define OOM_DISABLE (-17) | 
 | 6 | /* inclusive */ | 
 | 7 | #define OOM_ADJUST_MIN (-16) | 
 | 8 | #define OOM_ADJUST_MAX 15 | 
 | 9 |  | 
| David Rientjes | 5a3135c | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 10 | #ifdef __KERNEL__ | 
 | 11 |  | 
| David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 12 | #include <linux/types.h> | 
| KAMEZAWA Hiroyuki | 4365a56 | 2009-12-15 16:45:33 -0800 | [diff] [blame] | 13 | #include <linux/nodemask.h> | 
| David Rientjes | 172acf6 | 2007-10-16 23:25:59 -0700 | [diff] [blame] | 14 |  | 
 | 15 | struct zonelist; | 
 | 16 | struct notifier_block; | 
 | 17 |  | 
| David Rientjes | 70e24bd | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 18 | /* | 
 | 19 |  * Types of limitations to the nodes from which allocations may occur | 
 | 20 |  */ | 
 | 21 | enum oom_constraint { | 
 | 22 | 	CONSTRAINT_NONE, | 
 | 23 | 	CONSTRAINT_CPUSET, | 
 | 24 | 	CONSTRAINT_MEMORY_POLICY, | 
 | 25 | }; | 
 | 26 |  | 
| Mel Gorman | dd1a239 | 2008-04-28 02:12:17 -0700 | [diff] [blame] | 27 | extern int try_set_zone_oom(struct zonelist *zonelist, gfp_t gfp_flags); | 
 | 28 | extern void clear_zonelist_oom(struct zonelist *zonelist, gfp_t gfp_flags); | 
| David Rientjes | 098d7f1 | 2007-10-16 23:25:55 -0700 | [diff] [blame] | 29 |  | 
| KAMEZAWA Hiroyuki | 4365a56 | 2009-12-15 16:45:33 -0800 | [diff] [blame] | 30 | extern void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, | 
 | 31 | 		int order, nodemask_t *mask); | 
| David Rientjes | 5a3135c | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 32 | extern int register_oom_notifier(struct notifier_block *nb); | 
 | 33 | extern int unregister_oom_notifier(struct notifier_block *nb); | 
 | 34 |  | 
| Alexey Dobriyan | 1a8670a | 2009-09-21 17:03:09 -0700 | [diff] [blame] | 35 | extern bool oom_killer_disabled; | 
 | 36 |  | 
 | 37 | static inline void oom_killer_disable(void) | 
 | 38 | { | 
 | 39 | 	oom_killer_disabled = true; | 
 | 40 | } | 
 | 41 |  | 
 | 42 | static inline void oom_killer_enable(void) | 
 | 43 | { | 
 | 44 | 	oom_killer_disabled = false; | 
 | 45 | } | 
| David Rientjes | 5a3135c | 2007-10-16 23:25:53 -0700 | [diff] [blame] | 46 | #endif /* __KERNEL__*/ | 
 | 47 | #endif /* _INCLUDE_LINUX_OOM_H */ |