diff options
author | James Morris <jmorris@sdv.(none)> | 2007-12-26 15:12:37 +1100 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-01-25 11:29:49 +1100 |
commit | 42d7896ebc5f7268b1fe6bbd20f2282e20ae7895 (patch) | |
tree | 98247e79ea997801420bcb594c66f351a14bce75 /include | |
parent | 88c3f7a8f2c86be264d326cf6f49a3e8c30d13a6 (diff) |
Security: remove security.h include from mm.h
Remove security.h include from mm.h, as it is only needed for a single
extern declaration, and pulls in all kinds of crud.
Fine-by-me: David Chinner <dgc@sgi.com>
Acked-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 1b7b95c67ac..1897ca223ec 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -12,7 +12,6 @@ #include <linux/prio_tree.h> #include <linux/debug_locks.h> #include <linux/mm_types.h> -#include <linux/security.h> struct mempolicy; struct anon_vma; @@ -34,6 +33,8 @@ extern int sysctl_legacy_va_layout; #define sysctl_legacy_va_layout 0 #endif +extern unsigned long mmap_min_addr; + #include <asm/page.h> #include <asm/pgtable.h> #include <asm/processor.h> |