diff options
author | Sage Weil <sage@newdream.net> | 2011-05-27 13:41:57 -0700 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-05-28 01:02:51 -0400 |
commit | 44a8e6364e48ab93a1d86385b5fc9efe81395fa9 (patch) | |
tree | 763a035f0e4a7eac8a65398430fa57aa90381c15 /fs/jfs | |
parent | cf0f0536fa65ca1353476c49feed34891f3f7134 (diff) | |
download | linux-44a8e6364e48ab93a1d86385b5fc9efe81395fa9.tar.gz linux-44a8e6364e48ab93a1d86385b5fc9efe81395fa9.tar.bz2 linux-44a8e6364e48ab93a1d86385b5fc9efe81395fa9.zip |
jfs: remove unnecessary dentry_unhash from rmdir, dir rename
jfs does not have problems with references to unlinked directories.
CC: Dave Kleikamp <shaggy@kernel.org>
CC: jfs-discussion@lists.sourceforge.net
Signed-off-by: Sage Weil <sage@newdream.net>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/jfs')
-rw-r--r-- | fs/jfs/namei.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index 865df16a6cf3..eaaf2b511e89 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c @@ -360,8 +360,6 @@ static int jfs_rmdir(struct inode *dip, struct dentry *dentry) jfs_info("jfs_rmdir: dip:0x%p name:%s", dip, dentry->d_name.name); - dentry_unhash(dentry); - /* Init inode for quota operations. */ dquot_initialize(dip); dquot_initialize(ip); @@ -1097,9 +1095,6 @@ static int jfs_rename(struct inode *old_dir, struct dentry *old_dentry, jfs_info("jfs_rename: %s %s", old_dentry->d_name.name, new_dentry->d_name.name); - if (new_dentry->d_inode && S_ISDIR(new_dentry->d_inode->i_mode)) - dentry_unhash(new_dentry); - dquot_initialize(old_dir); dquot_initialize(new_dir); |