Skip to content

Commit

Permalink
sysv: remove unnecessary dentry_unhash from rmdir, dir rename
Browse files Browse the repository at this point in the history
sysv does not have problems with references to unlinked directories.

CC: Christoph Hellwig <[email protected]>
Signed-off-by: Sage Weil <[email protected]>
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
liewegas authored and Al Viro committed May 28, 2011
1 parent 76f0b8d commit 873ae4d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions fs/sysv/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,6 @@ static int sysv_rmdir(struct inode * dir, struct dentry * dentry)
struct inode *inode = dentry->d_inode;
int err = -ENOTEMPTY;

dentry_unhash(dentry);

if (sysv_empty_dir(inode)) {
err = sysv_unlink(dir, dentry);
if (!err) {
Expand All @@ -224,9 +222,6 @@ static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry,
struct sysv_dir_entry * old_de;
int err = -ENOENT;

if (new_inode && S_ISDIR(new_inode->i_mode))
dentry_unhash(new_dentry);

old_de = sysv_find_entry(old_dentry, &old_page);
if (!old_de)
goto out;
Expand Down

0 comments on commit 873ae4d

Please sign in to comment.