[PATCH 1/1] UBUNTU: SAUCE: NFS: Fix the notifications when renaming onto an existing file
Andy Whitcroft
apw at canonical.com
Wed Mar 25 18:31:30 UTC 2009
From: Trond Myklebust <Trond.Myklebust at netapp.com>
Bug: #224642
NFS appears to be returning an unnecessary "delete" notification when
we're doing an atomic rename. See
http://bugzilla.gnome.org/show_bug.cgi?id=575684
The fix is to get rid of the redundant call to d_delete().
Signed-off-by: Trond Myklebust <Trond.Myklebust at netapp.com>
Signed-off-by: Andy Whitcroft <apw at canonical.com>
---
fs/nfs/dir.c | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c
index 3e64b98..f78577e 100644
--- a/fs/nfs/dir.c
+++ b/fs/nfs/dir.c
@@ -1621,8 +1621,7 @@ static int nfs_rename(struct inode *old_dir, struct dentry *old_dentry,
} else if (atomic_read(&new_dentry->d_count) > 1)
/* dentry still busy? */
goto out;
- } else
- nfs_drop_nlink(new_inode);
+ }
go_ahead:
/*
@@ -1635,10 +1634,8 @@ go_ahead:
}
nfs_inode_return_delegation(old_inode);
- if (new_inode != NULL) {
+ if (new_inode != NULL)
nfs_inode_return_delegation(new_inode);
- d_delete(new_dentry);
- }
error = NFS_PROTO(old_dir)->rename(old_dir, &old_dentry->d_name,
new_dir, &new_dentry->d_name);
@@ -1647,6 +1644,8 @@ out:
if (rehash)
d_rehash(rehash);
if (!error) {
+ if (new_inode != NULL)
+ nfs_drop_nlink(new_inode);
d_move(old_dentry, new_dentry);
nfs_set_verifier(new_dentry,
nfs_save_change_attribute(new_dir));
--
1.6.1.2.419.g0d87e
More information about the kernel-team
mailing list