Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8532159f authored by Eric Van Hensbergen's avatar Eric Van Hensbergen Committed by Linus Torvalds
Browse files

[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: default avatarEric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a0a0c28c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -202,7 +202,6 @@ int v9fs_dir_release(struct inode *inode, struct file *filp)
		filp->private_data = NULL;
	}

	d_drop(filp->f_dentry);
	return 0;
}