1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Linux Security Module interface to other subsystems. 4 * SELinux presents a single u32 value which is known as a secid. 5 */ 6 #ifndef __LINUX_LSM_SELINUX_H 7 #define __LINUX_LSM_SELINUX_H 8 #include <linux/types.h> 9 10 struct lsm_prop_selinux { 11 #ifdef CONFIG_SECURITY_SELINUX 12 u32 secid; 13 #endif 14 }; 15 16 #endif /* ! __LINUX_LSM_SELINUX_H */ 17