1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Linux Security Module interface to other subsystems. 4 * BPF may present a single u32 value. 5 */ 6 #ifndef __LINUX_LSM_BPF_H 7 #define __LINUX_LSM_BPF_H 8 #include <linux/types.h> 9 10 struct lsm_prop_bpf { 11 #ifdef CONFIG_BPF_LSM 12 u32 secid; 13 #endif 14 }; 15 16 #endif /* ! __LINUX_LSM_BPF_H */ 17