OSDN Git Service

vfs: rename: move d_move() up
authorMiklos Szeredi <mszeredi@suse.cz>
Tue, 1 Apr 2014 15:08:42 +0000 (17:08 +0200)
committerMiklos Szeredi <mszeredi@suse.cz>
Tue, 1 Apr 2014 15:08:42 +0000 (17:08 +0200)
commitde22a4c3720a96f1c2ebf12b0857b6db6a991f2c
tree416887bb4a8755957f88d0cf9de563e45a78a1f4
parent44b1d53043c482225196e8a9cd9f35163a1b3336
vfs: rename: move d_move() up

Move the d_move() in vfs_rename_dir() up, similarly to how it's done in
vfs_rename_other().  The next patch will consolidate these two functions
and this is the only structural difference between them.

I'm not sure if doing the d_move() after the dput is even valid.  But there
may be a logical explanation for that.  But moving the d_move() before the
dput() (and the mutex_unlock()) should definitely not hurt.

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Reviewed-by: J. Bruce Fields <bfields@redhat.com>
fs/namei.c