Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linux

Pull fsverity fix from Eric Biggers:
"Fix a regression in overlayfs caused by an fsverity API change"

* tag 'fsverity-for-linus' of git://git.kernel.org/pub/scm/fs/fsverity/linux:
ovl: fix verity lazy-load guard broken by fsverity_active() semantic change

+1 -1
+1 -1
fs/overlayfs/util.c
··· 1354 1354 struct inode *inode = d_inode(datapath->dentry); 1355 1355 struct file *filp; 1356 1356 1357 - if (!fsverity_active(inode) && IS_VERITY(inode)) { 1357 + if (IS_VERITY(inode) && fsverity_get_info(inode) == NULL) { 1358 1358 /* 1359 1359 * If this inode was not yet opened, the verity info hasn't been 1360 1360 * loaded yet, so we need to do that here to force it into memory.