making the kernel build with up to date compilers again, see https://bbs.archlinux...
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / security / selinux / include / avc_ss.h
blobbb1ec801bdfe1dda2984b27da8ecef52c2715755
1 /*
2 * Access vector cache interface for the security server.
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
5 */
6 #ifndef _SELINUX_AVC_SS_H_
7 #define _SELINUX_AVC_SS_H_
9 #include "flask.h"
11 int avc_ss_reset(u32 seqno);
13 struct av_perm_to_string {
14 u16 tclass;
15 u32 value;
16 const char *name;
19 struct av_inherit {
20 const char **common_pts;
21 u32 common_base;
22 u16 tclass;
25 struct selinux_class_perm {
26 const struct av_perm_to_string *av_perm_to_string;
27 u32 av_pts_len;
28 u32 cts_len;
29 const char **class_to_string;
30 const struct av_inherit *av_inherit;
31 u32 av_inherit_len;
34 #endif /* _SELINUX_AVC_SS_H_ */