diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2017-11-06 15:28:04 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-12-14 09:28:23 +0100 |
commit | 509e9b805c52d799c9fc44ca0a32fa79fc03befc (patch) | |
tree | 880e4c6d8399f9f880e791416978614738bf47c1 | |
parent | a780a728475d4d9d2189ae6cfe719a175a5c9231 (diff) | |
download | linux-stable-509e9b805c52d799c9fc44ca0a32fa79fc03befc.tar.gz linux-stable-509e9b805c52d799c9fc44ca0a32fa79fc03befc.tar.bz2 linux-stable-509e9b805c52d799c9fc44ca0a32fa79fc03befc.zip |
NFS: Fix a typo in nfs_rename()
[ Upstream commit d803224c84be067754db7fa58a93f36f61566493 ]
On successful rename, the "old_dentry" is retained and is attached to
the "new_dir", so we need to call nfs_set_verifier() accordingly.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | fs/nfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 65566d5fcf39..1e5321d1ed22 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -2098,7 +2098,7 @@ out: if (new_inode != NULL) nfs_drop_nlink(new_inode); d_move(old_dentry, new_dentry); - nfs_set_verifier(new_dentry, + nfs_set_verifier(old_dentry, nfs_save_change_attribute(new_dir)); } else if (error == -ENOENT) nfs_dentry_handle_enoent(old_dentry); |