diff options
author | Sunil Mushran <sunil.mushran@oracle.com> | 2006-10-11 15:23:02 -0400 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2006-10-20 18:26:35 -0400 |
commit | 711a40fcaa83bfad87736544b69f6fdd6527482d (patch) | |
tree | 8a994dc00559c00f20ebc74d5b10ebe3024741e2 /fs/ocfs2/namei.c | |
parent | 79cd22d3ac921b9209bf813c7e75e6b69e74896c (diff) |
ocfs2: remove spurious d_count check in ocfs2_rename()
This was causing some folks to incorrectly get -EBUSY during rename.
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/namei.c')
-rw-r--r-- | fs/ocfs2/namei.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index 259155f0eb2e..a57b751d4f40 100644 --- a/fs/ocfs2/namei.c +++ b/fs/ocfs2/namei.c | |||
@@ -1085,14 +1085,6 @@ static int ocfs2_rename(struct inode *old_dir, | |||
1085 | BUG(); | 1085 | BUG(); |
1086 | } | 1086 | } |
1087 | 1087 | ||
1088 | if (atomic_read(&old_dentry->d_count) > 2) { | ||
1089 | shrink_dcache_parent(old_dentry); | ||
1090 | if (atomic_read(&old_dentry->d_count) > 2) { | ||
1091 | status = -EBUSY; | ||
1092 | goto bail; | ||
1093 | } | ||
1094 | } | ||
1095 | |||
1096 | /* Assume a directory heirarchy thusly: | 1088 | /* Assume a directory heirarchy thusly: |
1097 | * a/b/c | 1089 | * a/b/c |
1098 | * a/d | 1090 | * a/d |