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:
40ebc0a
)
ext3: remove unnecessary dentry_unhash on rmdir/rename_dir
author
Sage Weil
<
[email protected]
>
Tue, 24 May 2011 20:06:17 +0000
(13:06 -0700)
committer
Al Viro
<
[email protected]
>
Thu, 26 May 2011 11:26:55 +0000
(07:26 -0400)
ext3 has no problems with lingering references to unlinked directory
inodes.
CC: Jan Kara <
[email protected]
>
CC: Andrew Morton <
[email protected]
>
CC: Andreas Dilger <
[email protected]
>
CC:
[email protected]
Signed-off-by: Sage Weil <
[email protected]
>
Signed-off-by: Al Viro <
[email protected]
>
fs/ext3/namei.c
patch
|
blob
|
history
diff --git
a/fs/ext3/namei.c
b/fs/ext3/namei.c
index f89b1d4c2fb524582bc836f99fff0b555d306cb0..32f3b869585927400a035259c0fee27e312b39c8 100644
(file)
--- a/
fs/ext3/namei.c
+++ b/
fs/ext3/namei.c
@@
-2074,8
+2074,6
@@
static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
struct ext3_dir_entry_2 * de;
handle_t *handle;
- dentry_unhash(dentry);
-
/* Initialize quotas before so that eventual writes go in
* separate transaction */
dquot_initialize(dir);
@@
-2298,9
+2296,6
@@
static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
struct ext3_dir_entry_2 * old_de, * new_de;
int retval, flush_file = 0;
- 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);