diff options
author | Tyler Hicks <tyhicks@linux.vnet.ibm.com> | 2011-04-12 11:23:09 -0500 |
---|---|---|
committer | Tyler Hicks <tyhicks@linux.vnet.ibm.com> | 2011-04-25 18:32:36 -0500 |
commit | dd55c89852481a0708c3fd4b48f3081f4280d9d3 (patch) | |
tree | 36e516d3802f5854a9e25610bdfd2382f497ef0d /fs/ecryptfs | |
parent | 35ffa948b2f7bdf79e488cd496232935d095087a (diff) | |
download | linux-3.10-dd55c89852481a0708c3fd4b48f3081f4280d9d3.tar.gz linux-3.10-dd55c89852481a0708c3fd4b48f3081f4280d9d3.tar.bz2 linux-3.10-dd55c89852481a0708c3fd4b48f3081f4280d9d3.zip |
eCryptfs: dput dentries returned from dget_parent
Call dput on the dentries previously returned by dget_parent() in
ecryptfs_rename(). This is needed for supported eCryptfs mounts on top
of the NFSv3 client.
Signed-off-by: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
Diffstat (limited to 'fs/ecryptfs')
-rw-r--r-- | fs/ecryptfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index 9c3c2f5bc6a..72d35764959 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c @@ -608,8 +608,8 @@ ecryptfs_rename(struct inode *old_dir, struct dentry *old_dentry, fsstack_copy_attr_all(old_dir, lower_old_dir_dentry->d_inode); out_lock: unlock_rename(lower_old_dir_dentry, lower_new_dir_dentry); - dput(lower_new_dentry->d_parent); - dput(lower_old_dentry->d_parent); + dput(lower_new_dir_dentry); + dput(lower_old_dir_dentry); dput(lower_new_dentry); dput(lower_old_dentry); return rc; |