diff options
author | Jan Blunck <jblunck@suse.de> | 2008-05-01 13:35:10 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-01 17:04:01 +0200 |
commit | 868eb7a8539d3e8c494209be2b1f4084a274dfef (patch) | |
tree | 98fa82b87e638fc7898fd5a73db3e87b5d542d66 /fs/autofs4/expire.c | |
parent | autofs4: fix incorrect return from root.c:try_to_fill_dentry() (diff) | |
download | linux-868eb7a8539d3e8c494209be2b1f4084a274dfef.tar.xz linux-868eb7a8539d3e8c494209be2b1f4084a274dfef.zip |
autofs: path_{get,put}() cleanups
Here are some more places where path_{get,put}() can be used instead of
dput()/mntput() pair. Besides that it fixes a bug in autofs4_mount_busy()
where mntput() was called before dput().
Signed-off-by: Jan Blunck <jblunck@suse.de>
Cc: Ian Kent <raven@themaw.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/autofs4/expire.c')
-rw-r--r-- | fs/autofs4/expire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/autofs4/expire.c b/fs/autofs4/expire.c index cfa12db8f41b..894fee54d4d8 100644 --- a/fs/autofs4/expire.c +++ b/fs/autofs4/expire.c @@ -73,8 +73,8 @@ static int autofs4_mount_busy(struct vfsmount *mnt, struct dentry *dentry) status = 0; done: DPRINTK("returning = %d", status); - mntput(mnt); dput(dentry); + mntput(mnt); return status; } |