]> bbs.cooldavid.org Git - net-next-2.6.git/blame - security/selinux/include/avc_ss.h
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[net-next-2.6.git] / security / selinux / include / avc_ss.h
CommitLineData
1da177e4
LT
1/*
2 * Access vector cache interface for the security server.
3 *
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
5 */
6#ifndef _SELINUX_AVC_SS_H_
7#define _SELINUX_AVC_SS_H_
8
9#include "flask.h"
10
11int avc_ss_reset(u32 seqno);
12
c6d3aaa4
SS
13/* Class/perm mapping support */
14struct security_class_mapping {
5c458998 15 const char *name;
c6d3aaa4 16 const char *perms[sizeof(u32) * 8 + 1];
5c458998
CS
17};
18
c6d3aaa4 19extern struct security_class_mapping secclass_map[];
5c458998 20
1da177e4
LT
21#endif /* _SELINUX_AVC_SS_H_ */
22