Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 1841
b: refs/heads/master
c: 5f92b3b
h: refs/heads/master
i:
  1839: 4655176
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Jun 6, 2005
1 parent 9d00504 commit eb1874a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 90ebe5654febe3555a2516d51d3d251226d35fdb
refs/heads/master: 5f92b3bcec0fa2e2d775b589850097f9dc6b2de2
11 changes: 5 additions & 6 deletions trunk/fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ 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 err = -ELOOP;
mntget(path->mnt);
if (current->link_count >= MAX_NESTED_LINKS)
goto loop;
if (current->total_link_count >= 40)
Expand All @@ -541,9 +542,13 @@ static inline int do_follow_link(struct path *path, struct nameidata *nd)
err = __do_follow_link(path->dentry, nd);
current->link_count--;
nd->depth--;
dput(path->dentry);
mntput(path->mnt);
return err;
loop:
path_release(nd);
dput(path->dentry);
mntput(path->mnt);
return err;
}

Expand Down Expand Up @@ -783,10 +788,7 @@ static fastcall int __link_path_walk(const char * name, struct nameidata *nd)
goto out_dput;

if (inode->i_op->follow_link) {
mntget(next.mnt);
err = do_follow_link(&next, nd);
dput(next.dentry);
mntput(next.mnt);
if (err)
goto return_err;
err = -ENOENT;
Expand Down Expand Up @@ -837,10 +839,7 @@ static fastcall int __link_path_walk(const char * name, struct nameidata *nd)
inode = next.dentry->d_inode;
if ((lookup_flags & LOOKUP_FOLLOW)
&& inode && inode->i_op && inode->i_op->follow_link) {
mntget(next.mnt);
err = do_follow_link(&next, nd);
dput(next.dentry);
mntput(next.mnt);
if (err)
goto return_err;
inode = nd->dentry->d_inode;
Expand Down

0 comments on commit eb1874a

Please sign in to comment.