projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44a8e63
)
logfs: remove unnecessary dentry_unhash from rmdir, dir rename
author
Sage Weil
<
[email protected]
>
Fri, 27 May 2011 20:41:58 +0000
(13:41 -0700)
committer
Al Viro
<
[email protected]
>
Sat, 28 May 2011 05:02:51 +0000
(
01:02
-0400)
logfs does not have problems with references to unlinked directories.
CC: Joern Engel <
[email protected]
>
CC:
[email protected]
Signed-off-by: Sage Weil <
[email protected]
>
Signed-off-by: Al Viro <
[email protected]
>
fs/logfs/dir.c
patch
|
blob
|
history
diff --git
a/fs/logfs/dir.c
b/fs/logfs/dir.c
index f34c9cde9e94d0187462e22ca10cfcb52e2d1cd8..9ed89d1663f839c86b84e133617a47f4d855ee25 100644
(file)
--- a/
fs/logfs/dir.c
+++ b/
fs/logfs/dir.c
@@
-273,8
+273,6
@@
static int logfs_rmdir(struct inode *dir, struct dentry *dentry)
{
struct inode *inode = dentry->d_inode;
- dentry_unhash(dentry);
-
if (!logfs_empty_dir(inode))
return -ENOTEMPTY;
@@
-624,9
+622,6
@@
static int logfs_rename_cross(struct inode *old_dir, struct dentry *old_dentry,
loff_t pos;
int err;
- if (new_dentry->d_inode && S_ISDIR(new_dentry->d_inode->i_mode))
- dentry_unhash(new_dentry);
-
/* 1. locate source dd */
err = logfs_get_dd(old_dir, old_dentry, &dd, &pos);
if (err)