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>

authored by Latchesar Ionkov and committed by Eric Van Hensbergen 22150c4f 0a976297

+2 -2
+2 -2
fs/9p/vfs_inode.c
··· 687 retval = p9_client_wstat(oldfid, &wstat); 688 689 clunk_newdir: 690 - p9_client_clunk(olddirfid); 691 692 clunk_olddir: 693 - p9_client_clunk(newdirfid); 694 695 done: 696 return retval;
··· 687 retval = p9_client_wstat(oldfid, &wstat); 688 689 clunk_newdir: 690 + p9_client_clunk(newdirfid); 691 692 clunk_olddir: 693 + p9_client_clunk(olddirfid); 694 695 done: 696 return retval;