diff options
author | David Howells <dhowells@redhat.com> | 2012-03-26 16:38:47 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-03-26 16:38:47 +0100 |
commit | 778aae84ef694325662447eceba1a5f7d3eebdbb (patch) | |
tree | 7bf3f7e682e220ce30afe3572332fb424a3761f2 /security/selinux/include | |
parent | 15e9b9b9ed268fa91e52c44d621f3d0296162d15 (diff) | |
download | op-kernel-dev-778aae84ef694325662447eceba1a5f7d3eebdbb.zip op-kernel-dev-778aae84ef694325662447eceba1a5f7d3eebdbb.tar.gz |
SELinux: selinux/xfrm.h needs net/flow.h
selinux/xfrm.h needs to #include net/flow.h or else suffer:
In file included from security/selinux/ss/services.c:69:0:
security/selinux/include/xfrm.h: In function 'selinux_xfrm_notify_policyload':
security/selinux/include/xfrm.h:53:14: error: 'flow_cache_genid' undeclared (first use in this function)
security/selinux/include/xfrm.h:53:14: note: each undeclared identifier is reported only once for each function it appears in
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'security/selinux/include')
-rw-r--r-- | security/selinux/include/xfrm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/selinux/include/xfrm.h b/security/selinux/include/xfrm.h index b43813c..c220f31 100644 --- a/security/selinux/include/xfrm.h +++ b/security/selinux/include/xfrm.h @@ -7,6 +7,8 @@ #ifndef _SELINUX_XFRM_H_ #define _SELINUX_XFRM_H_ +#include <net/flow.h> + int selinux_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx); int selinux_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, |