aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2012-07-02 14:34:11 +0900
committerJames Morris <james.l.morris@oracle.com>2012-07-02 23:56:04 +1000
commit659b5e76521c10331495cbd9acb7217e38ff9750 (patch)
treeed772e27f45fe8984c47166143b48ee3fb0d3bb2 /security
parentsamples: seccomp: add .gitignore for untracked executables (diff)
downloadlinux-dev-659b5e76521c10331495cbd9acb7217e38ff9750.tar.xz
linux-dev-659b5e76521c10331495cbd9acb7217e38ff9750.zip
security: Fix nommu build.
The security + nommu configuration presently blows up with an undefined reference to BDI_CAP_EXEC_MAP: security/security.c: In function 'mmap_prot': security/security.c:687:36: error: dereferencing pointer to incomplete type security/security.c:688:16: error: 'BDI_CAP_EXEC_MAP' undeclared (first use in this function) security/security.c:688:16: note: each undeclared identifier is reported only once for each function it appears in include backing-dev.h directly to fix it up. Signed-off-by: Paul Mundt <lethal@linux-sh.org> Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'security')
-rw-r--r--security/security.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/security/security.c b/security/security.c
index 3efc9b12aef4..860aeb349cb3 100644
--- a/security/security.c
+++ b/security/security.c
@@ -23,6 +23,7 @@
#include <linux/mman.h>
#include <linux/mount.h>
#include <linux/personality.h>
+#include <linux/backing-dev.h>
#include <net/flow.h>
#define MAX_LSM_EVM_XATTR 2