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 branch 'overlayfs-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs

Pull overlayfs fix from Miklos Szeredi:
"This fixes a regression introduced in 4.8"

* 'overlayfs-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs:
ovl: fix d_real() for stacked fs

+3 -3
+3 -3
fs/overlayfs/super.c
··· 328 328 if (!real) 329 329 goto bug; 330 330 331 + /* Handle recursion */ 332 + real = d_real(real, inode, open_flags); 333 + 331 334 if (!inode || inode == d_inode(real)) 332 335 return real; 333 - 334 - /* Handle recursion */ 335 - return d_real(real, inode, open_flags); 336 336 bug: 337 337 WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry, 338 338 inode ? inode->i_sb->s_id : "NULL", inode ? inode->i_ino : 0);