xref: /linux/security/ipe/ipe.h (revision 2261306f4a3cea362fc40285e750a801dc0cfbe3)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved.
4  */
5 
6 #ifndef _IPE_H
7 #define _IPE_H
8 
9 #ifdef pr_fmt
10 #undef pr_fmt
11 #endif
12 #define pr_fmt(fmt) "ipe: " fmt
13 
14 #include <linux/lsm_hooks.h>
15 struct ipe_superblock *ipe_sb(const struct super_block *sb);
16 
17 extern bool ipe_enabled;
18 
19 #endif /* _IPE_H */
20