diff options
| author | David Rientjes <rientjes@google.com> | 2007-10-17 02:25:59 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:46 -0400 |
| commit | 172acf60f39046987d3ff7b955f2bcc45de7ddd3 (patch) | |
| tree | 49c3d7aa17f2f595aa89057ffdb57db075c37654 /include/linux | |
| parent | 3ff566963ce804809af9e32331b287eedeeff501 (diff) | |
oom: prevent including sched.h in header file
It's not necessary to include all of linux/sched.h in linux/oom.h. Instead,
simply include prototypes for the relevant structs and include linux/types.h
for gfp_t.
Cc: Andrea Arcangeli <andrea@suse.de>
Cc: Christoph Lameter <clameter@sgi.com>
Acked-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/oom.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/linux/oom.h b/include/linux/oom.h index e9081200cd..3852436b65 100644 --- a/include/linux/oom.h +++ b/include/linux/oom.h | |||
| @@ -1,8 +1,6 @@ | |||
| 1 | #ifndef __INCLUDE_LINUX_OOM_H | 1 | #ifndef __INCLUDE_LINUX_OOM_H |
| 2 | #define __INCLUDE_LINUX_OOM_H | 2 | #define __INCLUDE_LINUX_OOM_H |
| 3 | 3 | ||
| 4 | #include <linux/sched.h> | ||
| 5 | |||
| 6 | /* /proc/<pid>/oom_adj set to -17 protects from the oom-killer */ | 4 | /* /proc/<pid>/oom_adj set to -17 protects from the oom-killer */ |
| 7 | #define OOM_DISABLE (-17) | 5 | #define OOM_DISABLE (-17) |
| 8 | /* inclusive */ | 6 | /* inclusive */ |
| @@ -11,6 +9,11 @@ | |||
| 11 | 9 | ||
| 12 | #ifdef __KERNEL__ | 10 | #ifdef __KERNEL__ |
| 13 | 11 | ||
| 12 | #include <linux/types.h> | ||
| 13 | |||
| 14 | struct zonelist; | ||
| 15 | struct notifier_block; | ||
| 16 | |||
| 14 | /* | 17 | /* |
| 15 | * Types of limitations to the nodes from which allocations may occur | 18 | * Types of limitations to the nodes from which allocations may occur |
| 16 | */ | 19 | */ |
