1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Linux Security Module interface to other subsystems.
4 * Smack presents a pointer into the global Smack label list.
5 */
6#ifndef __LINUX_LSM_SMACK_H
7#define __LINUX_LSM_SMACK_H
8
9struct smack_known;
10
11struct lsm_prop_smack {
12#ifdef CONFIG_SECURITY_SMACK
13 struct smack_known *skp;
14#endif
15};
16
17#endif /* ! __LINUX_LSM_SMACK_H */
18