1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 3 #ifndef BTRFS_VERITY_H 4 #define BTRFS_VERITY_H 5 6 struct inode; 7 struct btrfs_inode; 8 9 #ifdef CONFIG_FS_VERITY 10 11 #include <linux/fsverity.h> 12 13 extern const struct fsverity_operations btrfs_ 14 15 int btrfs_drop_verity_items(struct btrfs_inode 16 int btrfs_get_verity_descriptor(struct inode * 17 18 #else 19 20 #include <linux/errno.h> 21 22 static inline int btrfs_drop_verity_items(stru 23 { 24 return 0; 25 } 26 27 static inline int btrfs_get_verity_descriptor( 28 29 { 30 return -EPERM; 31 } 32 33 #endif 34 35 #endif 36
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.