Linux Audio

Check our new training course

Buildroot integration, development and maintenance

Need a Buildroot system for your embedded project?
Loading...
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/*
 3 * Access vector cache interface for the security server.
 4 *
 5 * Author : Stephen Smalley, <sds@tycho.nsa.gov>
 6 */
 7#ifndef _SELINUX_AVC_SS_H_
 8#define _SELINUX_AVC_SS_H_
 9
10#include "flask.h"
11
12struct selinux_avc;
13int avc_ss_reset(struct selinux_avc *avc, u32 seqno);
14
15/* Class/perm mapping support */
16struct security_class_mapping {
17	const char *name;
18	const char *perms[sizeof(u32) * 8 + 1];
19};
20
21extern struct security_class_mapping secclass_map[];
22
23#endif /* _SELINUX_AVC_SS_H_ */
24