On Wed, Jul 23, 2025 at 12:57:52PM +0200, Christian Brauner wrote: > static inline struct fsverity_info *fsverity_get_info(const struct inode *inode) > { > - if (!inode->i_sb->s_vop) > + /* > + * We're called from fsverity_active() which might be called on > + * inodes from filesystems that don't support fsverity at all. > + */ > + if (likely(!inode->i_sb->s_vop)) > return NULL; !IS_VERITY(). Also the proposed comment is misleading, since fsverity_get_digest() and bpf_get_fsverity_digest() similarly can call this on arbitrary inodes. - Eric