1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Linux Security Module interface to other subsystems. 4 * AppArmor presents single pointer to an aa_label structure. 5 */ 6 #ifndef __LINUX_LSM_APPARMOR_H 7 #define __LINUX_LSM_APPARMOR_H 8 9 struct aa_label; 10 11 struct lsm_prop_apparmor { 12 #ifdef CONFIG_SECURITY_APPARMOR 13 struct aa_label *label; 14 #endif 15 }; 16 17 #endif /* ! __LINUX_LSM_APPARMOR_H */ 18