Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 252717
b: refs/heads/master
c: e391178
h: refs/heads/master
i:
  252715: 69b2484
v: v3
  • Loading branch information
Sage Weil authored and Al Viro committed May 28, 2011
1 parent 11278c6 commit 3b3beb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4e82d61b6ac4966b3b61c2d97ddf04928f037be1
refs/heads/master: e3911785b8ae6897b3dae2af4fa296aa5a0f2c56
8 changes: 2 additions & 6 deletions trunk/fs/hfsplus/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,6 @@ static int hfsplus_rmdir(struct inode *dir, struct dentry *dentry)
struct inode *inode = dentry->d_inode;
int res;

dentry_unhash(dentry);

if (inode->i_size != 2)
return -ENOTEMPTY;

Expand Down Expand Up @@ -469,12 +467,10 @@ static int hfsplus_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);
if (S_ISDIR(new_dentry->d_inode->i_mode))
res = hfsplus_rmdir(new_dir, new_dentry);
} else {
else
res = hfsplus_unlink(new_dir, new_dentry);
}
if (res)
return res;
}
Expand Down

0 comments on commit 3b3beb6

Please sign in to comment.