Searched refs:i_verity_info (Results 1 - 4 of 4) sorted by relevance

/linux-master/include/linux/
H A Dfsverity.h131 * I.e., another task may publish ->i_verity_info concurrently,
135 return smp_load_acquire(&inode->i_verity_info);
159 * Filesystems must call this on inode eviction to free ->i_verity_info.
163 if (inode->i_verity_info)
270 * This checks whether ->i_verity_info has been set.
275 * FS_IOC_ENABLE_VERITY completing. (S_VERITY is set before ->i_verity_info.)
290 * set up the inode's ->i_verity_info if not already done.
H A Dfs.h738 struct fsverity_info *i_verity_info; member in struct:inode
/linux-master/fs/verity/
H A Dopen.c254 * Multiple tasks may race to set ->i_verity_info, so use
256 * fsverity_get_info(). I.e., here we publish ->i_verity_info with a
259 if (cmpxchg_release(&inode->i_verity_info, NULL, vi) != NULL) {
263 * Afterwards, the caller may access ->i_verity_info directly,
360 /* Ensure the inode has an ->i_verity_info */
405 fsverity_free_info(inode->i_verity_info);
406 inode->i_verity_info = NULL;
H A Dverify.c250 struct fsverity_info *vi = inode->i_verity_info;

Completed in 194 milliseconds