Use path_put() in a few places instead of {mnt,d}put()

Previous thread: Introduce path_get() by Linux Kernel Mailing List on Thursday, February 14, 2008 - 10:59 pm. (1 message)

Next thread: Make set_fs_{root,pwd} take a struct path by Linux Kernel Mailing List on Thursday, February 14, 2008 - 10:59 pm. (1 message)
From: Linux Kernel Mailing List
Date: Thursday, February 14, 2008 - 10:59 pm

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=09da59...
Commit:     09da5916baf6d3fb9ac16c125c801ae6ea151f97
Parent:     1d957f9bf87da74f420424d16ece005202bbebd3
Author:     Jan Blunck <jblunck@suse.de>
AuthorDate: Thu Feb 14 19:34:37 2008 -0800
Committer:  Linus Torvalds <torvalds@woody.linux-foundation.org>
CommitDate: Thu Feb 14 21:13:33 2008 -0800

    Use path_put() in a few places instead of {mnt,d}put()
    
    Use path_put() in a few places instead of {mnt,d}put()
    
    Signed-off-by: Jan Blunck <jblunck@suse.de>
    Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
    Acked-by: Christoph Hellwig <hch@lst.de>
    Cc: Al Viro <viro@zeniv.linux.org.uk>
    Acked-by: David Howells <dhowells@redhat.com>
    Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---
 fs/afs/mntpt.c |    3 +--
 fs/namei.c     |   15 +++++----------
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/fs/afs/mntpt.c b/fs/afs/mntpt.c
index e13cea2..a3510b8 100644
--- a/fs/afs/mntpt.c
+++ b/fs/afs/mntpt.c
@@ -235,8 +235,7 @@ static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd)
 	err = do_add_mount(newmnt, nd, MNT_SHRINKABLE, &afs_vfsmounts);
 	switch (err) {
 	case 0:
-		dput(nd->path.dentry);
-		mntput(nd->path.mnt);
+		path_put(&nd->path);
 		nd->path.mnt = newmnt;
 		nd->path.dentry = dget(newmnt->mnt_root);
 		schedule_delayed_work(&afs_mntpt_expiry_timer,
diff --git a/fs/namei.c b/fs/namei.c
index b0df7ea..0249935 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -625,8 +625,7 @@ static __always_inline int __do_follow_link(struct path *path, struct nameidata
 		if (dentry->d_inode->i_op->put_link)
 			dentry->d_inode->i_op->put_link(dentry, nd, cookie);
 	}
-	dput(dentry);
-	mntput(path->mnt);
+	path_put(path);
 
 	return error;
 }
@@ -1033,8 +1032,7 @@ static int link_path_walk(const char ...
Previous thread: Introduce path_get() by Linux Kernel Mailing List on Thursday, February 14, 2008 - 10:59 pm. (1 message)

Next thread: Make set_fs_{root,pwd} take a struct path by Linux Kernel Mailing List on Thursday, February 14, 2008 - 10:59 pm. (1 message)