Merge tag 'omap-fixes-audio-clock-and-modem-signed' of git://git.kernel.org/pub/scm...
[linux-2.6-block.git] / include / linux / dm-verity-loadpin.h
CommitLineData
b6c1c574
MK
1/* SPDX-License-Identifier: GPL-2.0 */
2
3#ifndef __LINUX_DM_VERITY_LOADPIN_H
4#define __LINUX_DM_VERITY_LOADPIN_H
5
6#include <linux/list.h>
7
8struct block_device;
9
10extern struct list_head dm_verity_loadpin_trusted_root_digests;
11
12struct dm_verity_loadpin_trusted_root_digest {
13 struct list_head node;
14 unsigned int len;
5f536ac6 15 u8 data[] __counted_by(len);
b6c1c574
MK
16};
17
231af470 18#if IS_ENABLED(CONFIG_SECURITY_LOADPIN_VERITY)
b6c1c574
MK
19bool dm_verity_loadpin_is_bdev_trusted(struct block_device *bdev);
20#else
21static inline bool dm_verity_loadpin_is_bdev_trusted(struct block_device *bdev)
22{
23 return false;
24}
25#endif
26
27#endif /* __LINUX_DM_VERITY_LOADPIN_H */