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.

[PATCH] v9fs: fix overzealous dropping of dentry which breaks dcache

There is a d_drop in dir_release which caused problems as it invalidates
dcache entries too soon. This was likely a part of the wierd cwd behavior
folks were seeing.

Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Eric Van Hensbergen and committed by
Linus Torvalds
8532159f a0a0c28c

-1
-1
fs/9p/vfs_dir.c
··· 202 202 filp->private_data = NULL; 203 203 } 204 204 205 - d_drop(filp->f_dentry); 206 205 return 0; 207 206 } 208 207