mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-16 05:50:19 +00:00
Remove the automount through follow_link() kludge code from pathwalk
Remove the automount through follow_link() kludge code from pathwalk in favour of using d_automount(). Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Ian Kent <raven@themaw.net> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
01c64feac4
commit
db3729153e
17
fs/namei.c
17
fs/namei.c
@ -1341,17 +1341,6 @@ fail:
|
|||||||
return PTR_ERR(dentry);
|
return PTR_ERR(dentry);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* This is a temporary kludge to deal with "automount" symlinks; proper
|
|
||||||
* solution is to trigger them on follow_mount(), so that do_lookup()
|
|
||||||
* would DTRT. To be killed before 2.6.34-final.
|
|
||||||
*/
|
|
||||||
static inline int follow_on_final(struct inode *inode, unsigned lookup_flags)
|
|
||||||
{
|
|
||||||
return inode && unlikely(inode->i_op->follow_link) &&
|
|
||||||
((lookup_flags & LOOKUP_FOLLOW) || S_ISDIR(inode->i_mode));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Name resolution.
|
* Name resolution.
|
||||||
* This is the basic name resolution function, turning a pathname into
|
* This is the basic name resolution function, turning a pathname into
|
||||||
@ -1490,7 +1479,8 @@ last_component:
|
|||||||
err = do_lookup(nd, &this, &next, &inode);
|
err = do_lookup(nd, &this, &next, &inode);
|
||||||
if (err)
|
if (err)
|
||||||
break;
|
break;
|
||||||
if (follow_on_final(inode, lookup_flags)) {
|
if (inode && unlikely(inode->i_op->follow_link) &&
|
||||||
|
(lookup_flags & LOOKUP_FOLLOW)) {
|
||||||
if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
|
if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
|
||||||
return -ECHILD;
|
return -ECHILD;
|
||||||
BUG_ON(inode != next.dentry->d_inode);
|
BUG_ON(inode != next.dentry->d_inode);
|
||||||
@ -2543,8 +2533,7 @@ reval:
|
|||||||
struct inode *linki = link.dentry->d_inode;
|
struct inode *linki = link.dentry->d_inode;
|
||||||
void *cookie;
|
void *cookie;
|
||||||
error = -ELOOP;
|
error = -ELOOP;
|
||||||
/* S_ISDIR part is a temporary automount kludge */
|
if (!(nd.flags & LOOKUP_FOLLOW))
|
||||||
if (!(nd.flags & LOOKUP_FOLLOW) && !S_ISDIR(linki->i_mode))
|
|
||||||
goto exit_dput;
|
goto exit_dput;
|
||||||
if (count++ == 32)
|
if (count++ == 32)
|
||||||
goto exit_dput;
|
goto exit_dput;
|
||||||
|
Loading…
Reference in New Issue
Block a user