/* SPDX-License-Identifier: GPL-2.0 */1/*2* Copyright (C) 2020-2024 Microsoft Corporation. All rights reserved.3*/45#ifndef _IPE_H6#define _IPE_H78#ifdef pr_fmt9#undef pr_fmt10#endif11#define pr_fmt(fmt) "ipe: " fmt1213#include <linux/lsm_hooks.h>14struct ipe_superblock *ipe_sb(const struct super_block *sb);1516extern bool ipe_enabled;1718#ifdef CONFIG_IPE_PROP_DM_VERITY19struct ipe_bdev *ipe_bdev(struct block_device *b);20#endif /* CONFIG_IPE_PROP_DM_VERITY */21#ifdef CONFIG_IPE_PROP_FS_VERITY_BUILTIN_SIG22struct ipe_inode *ipe_inode(const struct inode *inode);23#endif /* CONFIG_IPE_PROP_FS_VERITY_BUILTIN_SIG */2425#endif /* _IPE_H */262728