aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErez Zadok <[email protected]>2009-12-06 18:05:30 -0500
committerTyler Hicks <[email protected]>2010-01-19 22:36:00 -0600
commitc44a66d674688f1e1d0b2f6f56bd9c6a1b061cae (patch)
tree52ff029a1c19b11b75ccc25ed7a5e00619e05800
parent0d132f7364694da8f7cafd49e2fc2721b73e96e4 (diff)
ecryptfs: remove unnecessary d_drop calls in ecryptfs_link
Unnecessary because it would unhash perfectly valid dentries, causing them to have to be re-looked up the next time they're needed, which presumably is right after. Signed-off-by: Aseem Rastogi <[email protected]> Signed-off-by: Shrikar archak <[email protected]> Signed-off-by: Erez Zadok <[email protected]> Cc: Saumitra Bhanage <[email protected]> Cc: Al Viro <[email protected]> Signed-off-by: Tyler Hicks <[email protected]>
-rw-r--r--fs/ecryptfs/inode.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index 764dc777b268..e03415293625 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -463,9 +463,6 @@ out_lock:
unlock_dir(lower_dir_dentry);
dput(lower_new_dentry);
dput(lower_old_dentry);
- d_drop(lower_old_dentry);
- d_drop(new_dentry);
- d_drop(old_dentry);
return rc;
}