Store the offset of the fsverity data pointer from struct inode in struct inode_operations. Both are embedded in the filesystem's private inode. This will allow us to drop the fsverity data pointer from struct inode itself and move it into the filesystem's inode. Signed-off-by: Christian Brauner <brauner@xxxxxxxxxx> --- include/linux/fs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/fs.h b/include/linux/fs.h index ea5d3d3356c9..b933b8d75f50 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2214,6 +2214,7 @@ int wrap_directory_iterator(struct file *, struct dir_context *, struct inode_operations { ptrdiff_t i_fscrypt; + ptrdiff_t i_fsverity; struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int); const char * (*get_link) (struct dentry *, struct inode *, struct delayed_call *); int (*permission) (struct mnt_idmap *, struct inode *, int); -- 2.47.2