(7/19)
The first argument of __do_follow_link() switched to struct path *
(__do_follow_link(path->dentry, ...) -> __do_follow_link(path, ...)).
All callers have the same calls of mntget() right before and dput()/mntput()
right after __do_follow_link(); these calls have been moved inside.
Obviously equivalent transformations.
Signed-off-by: Al Viro <[email protected]>
----
diff -urN RC12-rc4-6/fs/namei.c RC12-rc4-7/fs/namei.c
--- RC12-rc4-6/fs/namei.c 2005-05-19 16:39:34.668595507 -0400
+++ RC12-rc4-7/fs/namei.c 2005-05-19 16:39:35.831363809 -0400
@@ -498,12 +498,15 @@
struct dentry *dentry;
};
-static inline int __do_follow_link(struct dentry *dentry, struct nameidata *nd)
+static inline int __do_follow_link(struct path *path, struct nameidata *nd)
{
int error;
+ struct dentry *dentry = path->dentry;
touch_atime(nd->mnt, dentry);
nd_set_link(nd, NULL);
+
+ mntget(path->mnt);
error = dentry->d_inode->i_op->follow_link(dentry, nd);
if (!error) {
char *s = nd_get_link(nd);
@@ -512,6 +515,8 @@
if (dentry->d_inode->i_op->put_link)
dentry->d_inode->i_op->put_link(dentry, nd);
}
+ dput(dentry);
+ mntput(path->mnt);
return error;
}
@@ -538,10 +543,7 @@
current->link_count++;
current->total_link_count++;
nd->depth++;
- mntget(path->mnt);
- err = __do_follow_link(path->dentry, nd);
- dput(path->dentry);
- mntput(path->mnt);
+ err = __do_follow_link(path, nd);
current->link_count--;
nd->depth--;
return err;
@@ -1523,10 +1525,7 @@
error = security_inode_follow_link(path.dentry, nd);
if (error)
goto exit_dput;
- mntget(path.mnt);
- error = __do_follow_link(path.dentry, nd);
- dput(path.dentry);
- mntput(path.mnt);
+ error = __do_follow_link(&path, nd);
path.mnt = nd->mnt;
if (error)
return error;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]