diff options
author | Latchesar Ionkov <lucho@ionkov.net> | 2007-10-23 18:48:33 (GMT) |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2007-10-23 18:48:33 (GMT) |
commit | 22150c4f0f02619c256f35db2f1ec912549b4ca5 (patch) | |
tree | 3afeade940b21ac5ba7534fe430086de15067d35 | |
parent | 0a976297e1f57a6d156d3f8ed7f10c64beb031a4 (diff) | |
download | linux-fsl-qoriq-22150c4f0f02619c256f35db2f1ec912549b4ca5.tar.xz |
9p: v9fs_vfs_rename incorrect clunk order
In v9fs_vfs_rename function labels don't match the fids that are clunked.
The correct clunk order is clunking newdirfid first and then olddirfid next.
Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
-rw-r--r-- | fs/9p/vfs_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index 175b4d9..23581bc 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c @@ -687,10 +687,10 @@ v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry, retval = p9_client_wstat(oldfid, &wstat); clunk_newdir: - p9_client_clunk(olddirfid); + p9_client_clunk(newdirfid); clunk_olddir: - p9_client_clunk(newdirfid); + p9_client_clunk(olddirfid); done: return retval; |