提交 7f49b471 编写于 作者: A Al Viro

namei: shift interpretation of LOOKUP_FOLLOW inside should_follow_link()

Simplifies the arguments both for it and for walk_component()
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 ba8f4613
...@@ -1737,7 +1737,7 @@ static inline int should_follow_link(struct nameidata *nd, struct path *link, ...@@ -1737,7 +1737,7 @@ static inline int should_follow_link(struct nameidata *nd, struct path *link,
{ {
if (likely(!d_is_symlink(link->dentry))) if (likely(!d_is_symlink(link->dentry)))
return 0; return 0;
if (!follow) if (!follow && !(nd->flags & LOOKUP_FOLLOW))
return 0; return 0;
/* make sure that d_is_symlink above matches inode */ /* make sure that d_is_symlink above matches inode */
if (nd->flags & LOOKUP_RCU) { if (nd->flags & LOOKUP_RCU) {
...@@ -2248,12 +2248,7 @@ static inline int lookup_last(struct nameidata *nd) ...@@ -2248,12 +2248,7 @@ static inline int lookup_last(struct nameidata *nd)
nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY; nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
nd->flags &= ~LOOKUP_PARENT; nd->flags &= ~LOOKUP_PARENT;
return walk_component(nd, return walk_component(nd, nd->depth ? WALK_PUT : 0);
nd->flags & LOOKUP_FOLLOW
? nd->depth
? WALK_PUT | WALK_GET
: WALK_GET
: 0);
} }
/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
...@@ -2623,7 +2618,7 @@ mountpoint_last(struct nameidata *nd) ...@@ -2623,7 +2618,7 @@ mountpoint_last(struct nameidata *nd)
if (nd->depth) if (nd->depth)
put_link(nd); put_link(nd);
path.mnt = nd->path.mnt; path.mnt = nd->path.mnt;
error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW, error = should_follow_link(nd, &path, 0,
d_backing_inode(path.dentry), 0); d_backing_inode(path.dentry), 0);
if (unlikely(error)) if (unlikely(error))
return error; return error;
...@@ -3319,8 +3314,7 @@ static int do_last(struct nameidata *nd, ...@@ -3319,8 +3314,7 @@ static int do_last(struct nameidata *nd,
finish_lookup: finish_lookup:
if (nd->depth) if (nd->depth)
put_link(nd); put_link(nd);
error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW, error = should_follow_link(nd, &path, 0, inode, seq);
inode, seq);
if (unlikely(error)) if (unlikely(error))
return error; return error;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册