]> Pileus Git - ~andy/linux/blobdiff - fs/hfs/dir.c
irq: support domains with non-zero hwirq base
[~andy/linux] / fs / hfs / dir.c
index 1cb70cdba2c1dbf61cb5bbe47f6bba47d5a70d6b..b4d70b13be92548c6ac2cd72ae5e34f3ab53ec21 100644 (file)
@@ -253,9 +253,6 @@ static int hfs_remove(struct inode *dir, struct dentry *dentry)
        struct inode *inode = dentry->d_inode;
        int res;
 
-       if (S_ISDIR(inode->i_mode))
-               dentry_unhash(dentry);
-
        if (S_ISDIR(inode->i_mode) && inode->i_size != 2)
                return -ENOTEMPTY;
        res = hfs_cat_delete(inode->i_ino, dir, &dentry->d_name);
@@ -286,9 +283,6 @@ static int hfs_rename(struct inode *old_dir, struct dentry *old_dentry,
 
        /* Unlink destination if it already exists */
        if (new_dentry->d_inode) {
-               if (S_ISDIR(new_dentry->d_inode->i_mode))
-                       dentry_unhash(new_dentry);
-
                res = hfs_remove(new_dir, new_dentry);
                if (res)
                        return res;