Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.16 16 lines 371 B view raw
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 10struct lsm_prop_selinux { 11#ifdef CONFIG_SECURITY_SELINUX 12 u32 secid; 13#endif 14}; 15 16#endif /* ! __LINUX_LSM_SELINUX_H */